osiRose

Welcome in the osiRose emulator Project.

Moderators: osRose dev team, ospRose dev team, osiRose dev team, Moderators

Re: osiRose

Postby rl2171 on Thu Sep 29, 2016 3:00 pm

PurpleYouko wrote:well of course you don't have any STBs in your client 3DDATA folder.
You have to EXTRACT them from the VFS using a VFS extractor from our tools section.

Same goes for QSD and AIP

Do you actually read instructions?
Every setup tutorial that was ever written includes a section on extracting the files from VFS

Why don't we have a :facepalm: emoji?



Amazing, it doesn't take a rocket scientist to setup osRose!

If I can set it up and have it working, anyone can :)
Image
rl2171
Admin
Admin
 
Posts: 1706
Joined: Mon Aug 06, 2007 5:17 pm
Location: Sacramento, CA USA - GMT-8

Re: osiRose

Postby Luke on Thu Sep 29, 2016 5:57 pm

Only bad is it that in list_config.sql isnt field 'maxlevel'. In my rose client i can not change maximum level. This osiRose-rev82.zip and osiRose-rev87.zip is old..
Luke
Rackie
Rackie
 
Posts: 222
Joined: Wed Aug 17, 2016 5:56 pm

Re: osiRose

Postby Circa on Thu Sep 29, 2016 7:18 pm

I'm amazed at how bad you are at following simple instructions from guides. You need to stop mixing client and server files. irose files won't work with evo, and stop using higher version clients than what your server version can handle.
Circa
Clown
Clown
 
Posts: 404
Joined: Sun Aug 23, 2009 5:52 am
Location: CA

Re: osiRose

Postby Luke on Fri Sep 30, 2016 11:16 am

The problem is i have only 250lv maximum in my client. Dear Circa :shock: i cant change value in 'maxlevel' because i dont have this field. That's all. :o
Luke
Rackie
Rackie
 
Posts: 222
Joined: Wed Aug 17, 2016 5:56 pm

Re: osiRose

Postby Luke on Fri Sep 30, 2016 11:41 am

I have AruaROSE client and i dont know how to move Darren [Junon Polis] he is in waterfall help.
Luke
Rackie
Rackie
 
Posts: 222
Joined: Wed Aug 17, 2016 5:56 pm

Re: osiRose

Postby rl2171 on Fri Sep 30, 2016 1:08 pm

Luke wrote:I have AruaROSE client and i dont know how to move Darren [Junon Polis] he is in waterfall help.


List_Npcs in the database you can make the change.

That server wasn't setup for AruaRose, none of them ever were. Best to get the older iRose client.
Image
rl2171
Admin
Admin
 
Posts: 1706
Joined: Mon Aug 06, 2007 5:17 pm
Location: Sacramento, CA USA - GMT-8

Re: osiRose

Postby PurpleYouko on Fri Sep 30, 2016 3:16 pm

Luke wrote:The problem is i have only 250lv maximum in my client. Dear Circa :shock: i cant change value in 'maxlevel' because i dont have this field. That's all. :o

You don't have this field because the osirose code doesn't use this field. There isn't a single mention of it throughout the entire codebase.
Just adding it to the database isn't going to do a damn thing if it isn't coded to read it.

What possible reason could you have for wanting to go above level 250 anyway?
Need to lookup information on NARose items, skills, quests?
Now featuring a newly completed skill tree for all classes
Formatting fixed for different resolutions
Image

"A Gazelle is nothing but a giraffe plotted logarithmicaly"
User avatar
PurpleYouko
Rose Guru
Rose Guru
 
Posts: 4733
Joined: Fri Aug 10, 2007 2:05 pm

Re: osiRose

Postby Luke on Fri Sep 30, 2016 6:21 pm

Yes PY, i wanna 220lv maximum level in my AruaROSE client not a 250 lol (no equpi for this lvl)
There is only equip to 220lv maximum.
Luke
Rackie
Rackie
 
Posts: 222
Joined: Wed Aug 17, 2016 5:56 pm

Re: osiRose

Postby PurpleYouko on Fri Sep 30, 2016 6:36 pm

ah ok. You want to lower it.

You would have to adjust it directly in the source code to set a lower max level.

You can find teh code that performs the level up in PlayerFunctions.cpp
  1. // check if player can level up
  2. bool CPlayer::CheckPlayerLevelUP( )
  3. {
  4.     if (CharInfo->Exp >= GetLevelEXP())
  5.     {
  6.         CharInfo->Exp -= GetLevelEXP();
  7.         Stats->Level++;
  8.         Stats->HP = GetMaxHP( );
  9.         Stats->MP = GetMaxMP( );

try just putting a conditional on Stats->Level++

something like this
  1.  
  2. bool CPlayer::CheckPlayerLevelUP( )
  3. {
  4.     if (CharInfo->Exp >= GetLevelEXP())
  5.     {
  6.         CharInfo->Exp -= GetLevelEXP();
  7.         if(Stats->Level >225)
  8.                     Stats->Level++;
  9.         Stats->HP = GetMaxHP( );
  10.         Stats->MP = GetMaxMP( );
Need to lookup information on NARose items, skills, quests?
Now featuring a newly completed skill tree for all classes
Formatting fixed for different resolutions
Image

"A Gazelle is nothing but a giraffe plotted logarithmicaly"
User avatar
PurpleYouko
Rose Guru
Rose Guru
 
Posts: 4733
Joined: Fri Aug 10, 2007 2:05 pm

Re: osiRose

Postby Luke on Sat Aug 19, 2017 3:38 pm

I got this i use osiROSE-rev87
HELP!
Attachments
1.png
Luke
Rackie
Rackie
 
Posts: 222
Joined: Wed Aug 17, 2016 5:56 pm

PreviousNext

Return to Support - OsiRose Emulator

Who is online

Users browsing this forum: No registered users and 4 guests

cron