Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Episode 7 6class with ingame function

Experienced Elementalist
Joined
Feb 2, 2007
Messages
214
Reaction score
6
Do anybody here has the full updated list of RV details? Like here on this link Random Option
I just need to know the updated equivalent values. Thank you

Code:
//ITEM_RANDOM_OPTION TYPE 
// EMR_OPT_NULL             = 0,    //None
// EMR_OPT_DAMAGE             = 1     //Damage (1,-327.00%~+327.00%),
// EMR_OPT_DEFENSE             = 2,     //Defense (2,-327.00%~+327.00%),
// 
// EMR_OPT_HITRATE             = 3,     //Hit Rate (3,-327.00%~+327.00%), 
// EMR_OPT_AVOIDRATE        = 4,     //Aviod Rate (4,-327.00%~+327.00%),

Nvm i found it accidentally For those who needs it
 
Last edited:
Initiate Mage
Joined
May 2, 2020
Messages
11
Reaction score
0

Where to edit the name?







Unable to resurrectItems I use. IN_133_043 , IN_184_105

Thank you :D
 
Initiate Mage
Joined
May 24, 2020
Messages
71
Reaction score
4

Where to edit the name?







Unable to resurrectItems I use. IN_133_043 , IN_184_105

Thank you :D

Check my previous post.
Make sure that the Rosaries are in the right position of your equipment.
1. decrypt these two ( item.isf & ItemStrTable.txt )
2. Open Item.exe
3. Edit the type of the rosary. Some of the rosary are equipped in earring or belt. That's where you need to change.
4. Save it, encrypt it and put it back to glogic.rcc

Note: Make sure your server glogic file is always updated with the latest glogic from your local computer. After updating your server files, you MUST restart your server in order to make it work.

Please like if it helps. Thanks!
 
Skilled Illusionist
Joined
Jul 13, 2016
Messages
331
Reaction score
11
LOL how can you learn they already give the main point where u can change the color of that feature! come on explore ...
 
Junior Spellweaver
Joined
Oct 6, 2014
Messages
100
Reaction score
1
Do anybody here has the full updated list of RV details? Like here on this link Random Option
I just need to know the updated equivalent values. Thank you

Code:
//ITEM_RANDOM_OPTION TYPE 
// EMR_OPT_NULL             = 0,    //None
// EMR_OPT_DAMAGE             = 1     //Damage (1,-327.00%~+327.00%),
// EMR_OPT_DEFENSE             = 2,     //Defense (2,-327.00%~+327.00%),
// 
// EMR_OPT_HITRATE             = 3,     //Hit Rate (3,-327.00%~+327.00%), 
// EMR_OPT_AVOIDRATE        = 4,     //Aviod Rate (4,-327.00%~+327.00%),

Nvm i found it accidentally For those who needs it
Hi,may i know how to check what is the max RV of items in a Server? where should i check?





how to edit the size of inventory



solved. nevermind :D

Hi. can u share how you solved?
 
Initiate Mage
Joined
Jul 16, 2020
Messages
4
Reaction score
0
does anyone have a Decryption tools for the RCC content file for this ? in this client
 
Initiate Mage
Joined
Dec 30, 2018
Messages
30
Reaction score
3
Sir what cpp or .h need to replace my ep9 interface. i want to change my inventory with item slot like fantasy and stats using C. please help me tia
 
Skilled Illusionist
Joined
Jul 13, 2016
Messages
331
Reaction score
11
Credits: Shutelo

Find This On InventoryWindow.cpp

CInnerInterface::GetInstance().SHOW_ITEM_INFO ( sInvenItem.sItemCustom, FALSE, FALSE, FALSE, sInvenItem.wPosX, sInvenItem.wPosY );


Paste With This :
CInnerInterface::GetInstance().SHOW_ITEM_INFO ( sInvenItem.sItemCustom, bMarketOpen, FALSE, FALSE, sInvenItem.wPosX, sInvenItem.wPosY );


Find This :
CInnerInterface::GetInstance().SHOW_BOXINFO( sInvenItem.sItemCustom, bMarketOpen, FALSE, FALSE, sInvenItem.wPosX, sInvenItem.wPosY );

Paste With This :
// CInnerInterface::GetInstance().SHOW_BOXINFO( sInvenItem.sItemCustom, bMarketOpen, FALSE, FALSE, sInvenItem.wPosX, sInvenItem.wPosY );
 
Initiate Mage
Joined
Dec 30, 2018
Messages
30
Reaction score
3
Sir what cpp or .h need to replace my ep9 interface. i want to change my inventory with item slot like fantasy and stats using C. please help me tia
 
Back
Top