Hey Folks!
I have a question abt attack pet.
I added ROC attack pet from some relase, it work 100% , when i spawned him he have 120 LVL instant( like my char 120LVL), he attack mobs etc, no bugs etc etc etc .
What should i do to make the same to my other Attack pets i mean 120 LVL instant to them ? I have 12 attack pets, but when i spawned them , they have only 1st lvl ... . I want lvl 120 for them INSTANT.
Thank You for help !
Okay I know how to do that. Later when ill be back ill write here "how to" , maybe some1 need it too.
EDIT: YO YO !
So... its rly easy to change starting LVL of attack pet you just have to do 2 things first:
1. Database(my called SRO_VT_SHARD)
(ps. ->Go to media.pk2 -> find textdata folder, find file textdata_object.txt find CodeName128 of your Attack pet for example:
PHP Code:
1 SN_ITEM_PET2_SCROLL_ASS_BIRD_A ?? ????? 0 0 0 0 0 Half Moon Jaguar Summon Scroll Half Moon Jaguar Summon Scroll 0 0 0 0 0 0
So as you can see the CodeName128 for that pet is : ITEM_PET2_SCROLL_ASS_BIRD_A
Then go to database , make new query in SRO_VT_SHARD and write this:
PHP Code:
SELECT * FROM dbo._RefObjCommon where CodeName128 ='ITEM_PET2_SCROLL_ASS_BIRD_A'
Or find it manually in dbo._RefObjCommon. After you execute that query you will find a row in results, find "link" it is in last column (of your result) like this:
PHP Code:
1 41604 ITEM_PET2_SCROLL_ASS_BIRD_A ???? ?? ?? ?? ??? xxx SN_ITEM_PET2_SCROLL_ASS_BIRD_A SN_ITEM_PET2_SCROLL_ASS_BIRD_A_TT_DESC 1 0 3 2 1 1 180000 3 0 1 1 1 223 0 1 0 0 1 0 0 0 0 0 0 0 1 1 -1 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 100 0 0 0 xxx item\etc\drop_mall_scroll.bsr Media\icon\pet2\item_pet2_scroll_ass_bird_a.ddj xxx xxx 21200
Link of that pet is 21200 so now go to table dbo._RefObjItem (also in SRO_VT_SHARD), find a row wich is in FIRST column and it have your link of pet like in example 21200 just like this:
PHP Code:
21200 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 COS_P_Bird_120 0 ITEM_PET2_EQUIP_ASS_CLAW_DEF 0 ITEM_PET2_EQUIP_ASS_CHARM_DEF 0 ITEM_PET2_EQUIP_ASS_SADDLE_DEF 0 ITEM_PET2_EQUIP_ASS_SCALE_DEF 0 ITEM_PET2_EQUIP_ASS_AMULET_DEF -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx 0 0 0
Find Colum named Desc1_128 as you can see there is value: COS_P_Bird_120 <- 120 means LVL of summoned Attack pet that one you chosed. So -->>> COS_P_Bird_XXX put the lvl in "XXX" place, exacly you want to be instant LVL when you summon a "NEW" Pet, i setuped lvl 120.
2. Now its time for Media.pk2
Go to media.pk2 find textdata folder and find in ItemData txt FILES where can be placed between ItemData5000 ... ItemData45000, it usually depends of ID in RefObjCommon like in my Example is 41604 so it says me ill start searchin for it between ItemData40000 and ItemData45000. Ok when i find correct file, its time to find my PET just CTRL+F and paste this ITEM_PET2_SCROLL_ASS_BIRD_A(like in example ofc) when you find it you will should to see this:
PHP Code:
1 41604 ITEM_PET2_SCROLL_ASS_BIRD_A 루비노 피닉스 소환 스크롤 xxx SN_ITEM_PET2_SCROLL_ASS_BIRD_A SN_ITEM_PET2_SCROLL_ASS_BIRD_A_TT_DESC 1 0 3 2 1 1 180000 3 0 1 1 1 223 0 1 0 0 1 0 0 0 0 0 0 0 1 1 -1 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 100 0 0 0 xxx item\etc\drop_mall_scroll.bsr pet2\item\item_pet2_scroll_ass_bird_a.ddj xxx xxx 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 COS_P_Bird_120 0 ITEM_PET2_EQUIP_ASS_CLAW_DEF 0 ITEM_PET2_EQUIP_ASS_CHARM_DEF 0 ITEM_PET2_EQUIP_ASS_SADDLE_DEF 0 ITEM_PET2_EQUIP_ASS_SCALE_DEF 0 ITEM_PET2_EQUIP_ASS_AMULET_DEF -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx -1 xxx 0 0 0
As you can see there is exacly the same Value "COS_P_Bird_120" do that analogy to your chosed pet.
I tested it at 12 pets and its working for me. It was tested at totly
NEW PETS i mean buyed from ItemMall shop with first 1LVL, so i dont know how that will work for allready summoned pets with for example 46 lvl i didnt test cuz i dont need it.
Have fun !