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!

How to make item (Account Bind / Character Bind / Sell able / drop able)

Trying to be developer ^^
Loyal Member
Joined
Jul 21, 2010
Messages
1,072
Reaction score
360

Hello,
as title says it will be short tutorial how to change type of item even if its easy still some users have problem with it.

Sweetscape template item enc:


Files to edit:
--- Clientside:
--------- /data/Item.enc
--- Serverside:
--------- /etc/cabal/data/Item.scp

Let me first explain u all types of item propert:
Code:
    NORMAL = 0
    NO_DROP = 1 
    NO_TRADE = 2
    BIND_ACT = 3
    NO_SELL = 4
    NO_DROPSELL = 5
    NO_SELLTRADE = 6
    BIND_ACT_NO_SELL = 7
    NO_STOR = 8
    NO_DROPSTOR = 9
    NO_STORTRADE = 10
    BIND_CHAR = 11
    NO_SELLSTOR = 12
    NO_DROPSELLSTOR = 13
    NO_SELLSTORTRADE = 14
    BIND_CHAR_NO_SELL = 15
If u are homo sapiens sapiens u should understand what each option exactly do.
Example of "BIND_CHAR = 11"

Example of "BIND_ACT = 3"


Client side:
Ok we will start with item.enc, unpack it and open with 010 sweetscape editor and use template.
Now find ur item ID and then option: "enum property property" - this is the place which hold the item specification.
Choose option what u want to have we take for .ex Normal = 0

Save & Pack it back to .enc

Server side:
Open file "/etc/cabal/data/item.scp", find itemID which u edit and edit "Property" option its 7th option from right column. Make it same what u set in client, in our case its 0.
Save & Edit

Well done, now ur item is "Normal" mean u can trade it, drop, sell etc.
Restart server & client
Hope that help some new players :blushing:
If helped just hit "Thanks" Button
 
Last edited:
Newbie Spellweaver
Joined
May 26, 2015
Messages
85
Reaction score
4
it's very useful but not work on wings o_O I tested and not working
 
Newbie Spellweaver
Joined
May 26, 2015
Messages
85
Reaction score
4
I use Normal = 0 and after finish restart server then agentshop and world won't start anymore
 
Initiate Mage
Joined
Aug 26, 2015
Messages
3
Reaction score
0
Hi Dens, will like to know if what you shared above can be use in what server? Official or private? Thanks a lot.
 
Inactive
Joined
Jan 20, 2009
Messages
1,014
Reaction score
1,830
I get an issue using the "ItemENCTemplateEP8".

Code:
*ERROR Line 235: Template passed end of file at variable 'unkba2'.

Is this normal, if not how does one go about fixing it o.o
 
Newbie Spellweaver
Joined
Jun 30, 2016
Messages
8
Reaction score
0
appreciated your respond Dens666.

Is there any way or configuration to unbind 3 slot items?
 
Newbie Spellweaver
Joined
Mar 24, 2022
Messages
5
Reaction score
0
How i do unpack DATA.ENC ?? what software, to decode data.enc in random words
Dens666 - How to make item (Account Bind / Character Bind / Sell able / drop able) - RaGEZONE Forums
Dens666 - How to make item (Account Bind / Character Bind / Sell able / drop able) - RaGEZONE Forums
 
Last edited:
Joined
Oct 14, 2008
Messages
1,277
Reaction score
249
How i do unpack DATA.ENC ?? what software, to decode data.enc in random words
Dens666 - How to make item (Account Bind / Character Bind / Sell able / drop able) - RaGEZONE Forums
Dens666 - How to make item (Account Bind / Character Bind / Sell able / drop able) - RaGEZONE Forums
Use this tool to Compress/Decompress.
To see Data.enc you need to use 010 Editor with Data.dec Template just search forum for the Template and guide how to use it.
 

Attachments

You must be registered for see attachments list
Back
Top