Starter Items [help] :D

Experienced Elementalist
Joined
May 17, 2011
Messages
282
Reaction score
9
So when the user create their character ,i want to change the starter items and put some item on their inventory . , but it doesnt update. When i create character and log in into the game no change made.

Code:
job JOB_VAGRANT
{
sex SEX_FEMALE
{
II_ARM_F_VAG_HELMET04
II_ARM_F_VAG_SUIT04
II_ARM_F_VAG_GAUNTLET04
II_ARM_F_VAG_BOOTS04
II_WEA_SWO_WOODEN
}
sex SEX_MALE
{
II_ARM_M_VAG_HELMET04
II_ARM_M_VAG_SUIT04
II_ARM_M_VAG_GAUNTLET04
II_ARM_M_VAG_BOOTS04
II_WEA_SWO_WOODEN
}
// type item num // 20°³°¡ ¸Æ½º
item ITYPE_ITEM II_WEA_SWO_PARMIL 1
item ITYPE_ITEM II_ARM_S_CLO_CLOAK_DEVIL 1
item ITYPE_ITEM II_CHP_RED 2000
item ITYPE_ITEM II_GEN_FOO_PIL_RED 99
item ITYPE_ITEM II_GEN_FOO_INS_STARCANDY 198
item ITYPE_ITEM II_RID_RID_STI_BIKE7 1


Thanks.
 
it should be in your database. BASE_VALUE_TBL. you have to create a new character in game. 1 male and 1 female. add the items you want to have as your starter thing. now copy the inventory of those character and copy them into your BASE_VALUE_TBL. m_dwSex = 0 for males and 1 for female. you can also change the starting penya in BASE_VALUE_TBL. oh it should be in your CHARACTER_01_DBF.
 
you mean first create a character in game. 1 male on 1 female for example in one account.. then for example i will create red chip so that red chip is in, in my inventory so in the database those red chip is recorded on character INVENTORY_TBL ----> m_Inventory.
and
about this: "add the items you want to have as your starter thing. now copy the inventory of those character"

can you clarify sir.
 
Last edited:
so yeah. create a character in game. 1 male and 1 female. up to you if you want them to be in one account. then add the items you want to have when creating a new character. now, go to your database. and look for the inventory of those characters. copy the m_Inventory, m_apIndex, m_adwEquipment, and m_dwObjIndex to your BASE_VALUE_TBL. just make sure you copy those columns to the right sex. you don't want all the new female characters to wear male equipments.
 
Back