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!

Finally how to add Avatar in Item Mall VSRO Files

Status
Not open for further replies.
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
Hello Brothers
Yesterday i was ask all how i can add Avatar to Item mall
and Finally i get Way personal with Care of Allah
So i say i must make guide because all ask about it and no one answer

Program Required :
1- Pk2ExtractorSE.exe
2- Pk2Editor.exe

Steps :
1- Open PK2ExtractorSE.exe and open media From it
then Extract " refpackageitem.txt "
Code:
/server_dep/silkroad/textdata
then open it i mean " refpackageitem.txt " and change all Saletag to 0 ( ZERO )

2- open SQL then open table dbo._refpackageitem
Code:
SRO_VT_SHARD/TABLES/dbo._RefPackageItem
and change all Saletag to 0 For All

3- now open Pk2Editor.exe and open media then import file refpackageitem.txt Edited

now try your server you will found all Avatar in Item Mall
i hope help some others
 
Newbie Spellweaver
Joined
Dec 11, 2006
Messages
98
Reaction score
10
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

took you long enough to figure it out..
 
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

so you mean you already knew it all along and you are not sharing it.?

@threadstarter
Tnx..
np bro
when i get this i share it after test it direct
 
Junior Spellweaver
Joined
Sep 12, 2011
Messages
135
Reaction score
15
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

Do you guys think this will work by adding weapons to item mall?
E.g.
ITEM_CH_SWORD_12_C_RARE SaleTag 1 > 0.

Do you think this will be added to item mall ^^?
 
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

Do you guys think this will work by adding weapons to item mall?
E.g.
ITEM_CH_SWORD_12_C_RARE SaleTag 1 > 0.

Do you think this will be added to item mall ^^?

to add items in Item mall you must add it in 4 Tables in SRO_VT_SHARD
Code:
refpackageitem
refpricepolicyofitem
refshopgoods
refscrapofpackageitem
and in media Side in txt with same name of table
Code:
/server_dep/silkroad/textdata
 
Junior Spellweaver
Joined
Oct 25, 2007
Messages
120
Reaction score
16
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

where saletag?

in front of your eyes.. look thoroughly..
it is the number right next to item codename
PHP:
ITEM_MALL_AVATAR_W_FOX_HAT        32    //change '32' to '0' 
ITEM_MALL_AVATAR_W_FOX        32  //change '32' to '0'

do it for all avatar codenames..
 
Junior Spellweaver
Joined
Sep 12, 2011
Messages
135
Reaction score
15
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

to add items in Item mall you must add it in 4 Tables in SRO_VT_SHARD
Code:
refpackageitem
refpricepolicyofitem
refshopgoods
refscrapofpackageitem
and in media Side in txt with same name of table
Code:
/server_dep/silkroad/textdata
For god sake , that tables are to add the item to npc and i already done that , i am asking if it's possible to add an normal weapon/shield/acc etc to item mall.:thumbup:
 
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

For god sake , that tables are to add the item to npc and i already done that , i am asking if it's possible to add an normal weapon/shield/acc etc to item mall.:thumbup:

refshopgoods = where item will sell
refpricepolicyofitem = Price of item and payment Method
Code:
1 = Gold
2 = P Silk
4 = Gift Silk
16= N silk
 
Junior Spellweaver
Joined
Sep 21, 2011
Messages
194
Reaction score
35
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

in front of your eyes.. look thoroughly..
it is the number right next to item codename
PHP:
ITEM_MALL_AVATAR_W_FOX_HAT        32    //change '32' to '0' 
ITEM_MALL_AVATAR_W_FOX        32  //change '32' to '0'

do it for all avatar codenames..

oh dude i found thanks again.
 
Initiate Mage
Joined
Oct 15, 2011
Messages
4
Reaction score
0
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

cPk2Writer::Open: This object has not been initialized yet.
 
Junior Spellweaver
Joined
Oct 15, 2011
Messages
100
Reaction score
17
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

this query is not working
arabcart - Finally how to add Avatar in Item Mall VSRO Files - RaGEZONE Forums


need correct query i trying
UPDATE [dbo].[_RefPackageItem]
SET SaleTag = 0
WHERE CodeName128 like '%PACKAGE_ITEM_MALL_AVATAR%'
but still error
 
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

this query is not working
arabcart - Finally how to add Avatar in Item Mall VSRO Files - RaGEZONE Forums


need correct query i trying
but still error


try
Code:
USE [SRO_VT_SHARD]
GO
UPDATE [dbo].[_RefPackageItem]
SET SaleTag = 0
WHERE CodeName128 like '%PACKAGE_ITEM_MALL_AVATAR%'
 
Junior Spellweaver
Joined
Oct 15, 2011
Messages
100
Reaction score
17
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

i try it already it's not working .....
 
Junior Spellweaver
Joined
Oct 2, 2011
Messages
113
Reaction score
23
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

for me its works i can see avatars in mall but i cannot buy it ..

maybe i should add it at _RefShopGoods.dbo?
 
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

for me its works i can see avatars in mall but i cannot buy it ..

maybe i should add it at _RefShopGoods.dbo?

r u restart your server
 
Junior Spellweaver
Joined
Oct 2, 2011
Messages
113
Reaction score
23
Re: [Guide] Finally how to add Avatar in Item Mall VSRO Files

sure i did ...

when i add the avatar on refshogoods.txt its apper but not sell able
 
Status
Not open for further replies.
Back
Top