- Joined
- Apr 2, 2004
- Messages
- 50
- Reaction score
- 0
This info should be usefull for server admins who accept donations for full option items. Currently there is no support for either the Jewel of Harmony option or the Lvl 380 Chaos machine options.
====================
! ! ! READ ME ! ! !
====================
Before i continue this dev/guide server admins should take note this method directly changes your database, if you make a mistake and your database screws up i cannot be held responsible.
====================
! ! ! READ ME ! ! !
====================
The following info is the result of about 2 hours after downloading a 1.0.16 server files so if i wrong on anything please correct me, i havent played around with server files since version 0.97b/d
1. Understanding the warehouse SQL
This query overwrites everything in your warehouse and places the item in the top left hand corner, all item in there will disapear so make sure your warehouse is empty first.
If you run this in SQL Query manager inside the vault of the account 'DissObey' should be an exc Solay Scepter+13+lvl 380 Option
You must replace '0EEFFF00002F6B7F0028000000000000' with the code for the item you want and replace 'DissObey' with the Acount name.
2. Understanding the item hex string
As you can see the item code is 32 characters long, each pair of characters is responsible for altering the item.
0E EF FF 00 00 2F 6B 7F 00 28 00 00 00 00 00 00
0E = Item Hex number
EF = Item level/luck/skill/option
FF = Durability (FF is max 255)
00 = Unknown at present
00 = Unknown at present
2F = Unknown at present [Maybe serial]
6B = Unknown
7F = Exc options/options/luck/skill/level
00 = Unknown
28 = Level 380 option
00 = Jewel of Harmony Options The first character is for the option the second is for the strength of the option. You can only have ONE Jewel of Harmony option on any item
00 = Unknown
00 = Unknown
00 = Unknown
00 = Unknown
00 = Unknown
If someone knows any of these unknown values would you mind posting what they do, i know some of them must be for acient types but i dont know which
Check these screenshots to see what you can do.
Lastly but not least the Credits
Thanks to:
Webzen for making MU
CzF for the Latest MuEditor
Me for working this out
laciano for his 1.0.16 server files
Maybe if someone could add this to MuEdit it would be very helpfull =D
====================
! ! ! READ ME ! ! !
====================
Before i continue this dev/guide server admins should take note this method directly changes your database, if you make a mistake and your database screws up i cannot be held responsible.
====================
! ! ! READ ME ! ! !
====================
The following info is the result of about 2 hours after downloading a 1.0.16 server files so if i wrong on anything please correct me, i havent played around with server files since version 0.97b/d
1. Understanding the warehouse SQL
This query overwrites everything in your warehouse and places the item in the top left hand corner, all item in there will disapear so make sure your warehouse is empty first.
Code:
UPDATE warehouse SET Items = 0x0EEFFF00002F6B7F0028000000000000 WHERE AccountID = 'DissObey'
If you run this in SQL Query manager inside the vault of the account 'DissObey' should be an exc Solay Scepter+13+lvl 380 Option
You must replace '0EEFFF00002F6B7F0028000000000000' with the code for the item you want and replace 'DissObey' with the Acount name.
2. Understanding the item hex string
As you can see the item code is 32 characters long, each pair of characters is responsible for altering the item.
0E EF FF 00 00 2F 6B 7F 00 28 00 00 00 00 00 00
0E = Item Hex number
EF = Item level/luck/skill/option
FF = Durability (FF is max 255)
00 = Unknown at present
00 = Unknown at present
2F = Unknown at present [Maybe serial]
6B = Unknown
7F = Exc options/options/luck/skill/level
00 = Unknown
28 = Level 380 option
00 = Jewel of Harmony Options The first character is for the option the second is for the strength of the option. You can only have ONE Jewel of Harmony option on any item
00 = Unknown
00 = Unknown
00 = Unknown
00 = Unknown
00 = Unknown
If someone knows any of these unknown values would you mind posting what they do, i know some of them must be for acient types but i dont know which
Check these screenshots to see what you can do.
Lastly but not least the Credits
Thanks to:
Webzen for making MU
CzF for the Latest MuEditor
Me for working this out
laciano for his 1.0.16 server files
Maybe if someone could add this to MuEdit it would be very helpfull =D