-
1 Attachment(s)
[TIPS]How to decode ITEM Binary
Woot Woot after many hours of works with my honey (grumly ^^) we have (maybe) found the "logic"(:poster_do) of the hexa.
Well, for explain my self i'll illustrating by an example, different point and gay color :)
I: The Remaining Time
Taking an item: Osmium Blade (ItemID : 68 ItemOpt: 0)
For the example i have took new characters called "test" with in inventory only an Osmium Blade +0 Clean no slot.
First get the ID of the char by this command in GAMEDB:
Code:
SELECT CharacterIdx FROM cabal_character_table WHERE Name = 'test'
Server send: 20
Now we get the inventory of this Char
Code:
exec dbo.cabal_tool_GetInventory 20
Server send: CharacterIdx: 20 Data: 0x440047000028000000000000896B4685
We keep the Data Value: 0x440047000028000000000000896B4685
Time to decode it... (gay color enter in the party ^^)
0x440047000028000000000000896B4685
- 0x 0x are alltime in the start of line, that normal, that because this is a "Binary" table ^^
- 4400: This is the ITEM ID, you nees to read it in the Asian way <= so it's not 4400 but 0044 and if you convert 0044 in decimal you got 68 (Item of the Blade Osmium)
- 896B4685: This is the REMAINING TAG so if you want to convert your item to unlimited item just replace this number by "00000000"
So for do that it's easy. The new line code was now: 44004700002800000000000000000000
Code:
exec dbo.cabal_tool_SetInventory 20, 0x44004700002800000000000000000000
II: Put +X on an item or/and put "Binding Item" effect on it
We keep the reference of the last point
44004700002800000000000000000000 <= unlimited Osmium Blade +0 clean 0 slot.
Now let see what is the binary used for describe the +0 +1 +2 etc..
44004700002800000000000000000000
Just replace this number by one of this list:
- 0: +0 with no binding
- 1: +0 with binding
- 2: +1 with no binding
- 3: +1 with binding
- 4: +2 with no binding
- 5: +2 with binding
- 6: +3 with no binding
- 7: +3 with binding
- 8: +4 with no binding
- 9: +4 with binding
- A: +5 with no binding
- B: +5 with binding
- C: +6 with no binding
- D: +6 with binding
- E: +7 with no binding
- F: +7 with binding
For the example we going to make the Blade +5 with no bind
Code:
exec dbo.cabal_tool_SetInventory 20, 0x44A04700002800000000000000000000
III: Put a craft effect to an item
Now you have an Osmium Blade +5 0 slot Clean. That cool but we can do more damage with a Craft effect.
Retake the code of the blade : 44A04700002800000000000000000000
The part of this number who define the craft effect are this one:
44A0470000280000XY00000000000000
For put a craft effect on this blade just replace this by what you want:
for X:
- 9="3%(amp/deathblow rate) +4%(Deathblow dmg) or +4(Destruction) or 1(Luck/Adept) or +100(Destruction attk rate)"
- A="4%(amp/deathblow rate) +7%(Deathblow dmg) or +8(Destruction) or 2(Luck/Adept) or +175(Destruction attk rate)"
- B="5%(amp/deathblow rate) +10%(Deathblow dmg) or +16(Destruction) or 4(Luck/Adept) or +300(Destruction attk rate)"
- C="8%(amp/deathblow rate) +16%(Deathblow dmg) or +24(Destruction) or 5(Luck/Adept) or +400(Destruction attk rate)"
- D="8%"
- E="9%"
- F="10%"
for Y:
- 1="of Desctruction (Attak)"
- 2="of Destruction(Magic)"
- 3="of Destruction (Attack rate)
- 4="of Deathblow (Dmg)"
- 5="of Deathblow (Rate)"
- 6="of Luck (2slot item drop)"
- 7="of Adept (Skill EXP)"
- 8="of Amp (Sword)"
- 9="of Amp (Magic)"
For this example i have decided to put more Sword Amp on my blade :p hummm... 3%
so X need to be "9" and Y need to be "8"
So final code was:
44A04700002800009800000000000000
reinject the code with the same procedure has point I or II ^^
IV: Put slot on item and put upgrade in it
Ok, continue to keep the same code
44A04700002800009800000000000000 so for your little memory, and because you read so fast without remember anythink ^^ i resume what is this line,
this line was an Osmium Blade of Amp (3% Sword Amp) +5 without slot.
What ? This blade have no slot ? ok ok i'll going to fix that :)
for edit the slot and what they have in it, this is this number:
44A04700002800009800000000000000
COLOR="Red"]00[/COLOR]: This number define what upgrade you have in [B]the 1st slot
00: This number define what upgrade you have in [B]the 2nd slot
00: Define how many slot you have on the item (0 1 or 2)
if you want 1 slot change 00 by 10, if you want 2 edit 00 by 20.
The list of the code depends of what kinf of part you edit. The upgrade code are different between Blade, Suit, Helmet, etc... etc.. (We don't have make all list so stay tuned ^^)
For this exemple the item was a Blade:
- 10 = Clean
- 11 = Attack + 2
- 12 = Magic +2
- 13 = Attack Rate +??? (I have Forgot :p)
- 14 = Critical Dmg +10%
- 15 = Critical RAte +5%
- 16 = 2slot item Drop 2.0times
- 17 = Skill EXP +4
- 18 = Sword Amp +7%
- 19 = Magic Amp +7%
/!\ TAKE CARE !!! IF YOU WANT 2SLOT ITEM WITH SAME UPGRADE IN BOTH SLOT DON'T USE 1414XX20 for example but use: 2400XX20/!\
So for the example, i'll going to put 2 slot on my blade, first slot with Critical Rate +5% (15) and the second one with Sword Amp +7% (18)
44A04700002815189820000000000000
Reinject this code with the same method has Point I or II :)
V: Conclusion
440047000028000000000000896B4685
- 4400: Item ID in hexa (/!\ Read it in reverse not 4400 but 0044/!\)
- 0: Define the +X and Binding option
- 47: Define the serial of the item
- 00: Define the upgrade in the first slot of the item
- 00: Define the upgrade in the second slot of the item
- 00: Define the craft bonus on it, first digit define the effect, second define the power
- 00: Define how many slot have the item 00 = 0 slot - 10 = 1 slot - 20 = 2 slot
- 0000: Define where the item was situate in your inventory First and second degit define the line and last 2 digit define the column
- 896B4685: Define the remaining time before expiration of the item, 00000000 for unexpireable item.
VI: "I'M TOTALY NERD I WANT MORE !!!!!:scratch:"
Humm ok honey calm down, you want more? You try to find the BONUS of the How to ?
Allright, this is for you ! :cupidarro
Has you know, editing inventory with binary make us nervous, so now for you (yes you only you behind your screen) i'll give to you, the method for get the ItemOpt for directly get in game the item with all option you want !
For explain myself be attentive :)
I'm keeping my Osmium Blade for most facility
ItemId: 68
ItemOpt: 0
for Clean one no slot.
But you want Osmium Blade of Deathblow (5% Rate) +3 2 slots with Critical Rate +5% in the first one and Critical Dmg +5% in the second
So if you have read the how to on the top you going to understand rapidly :)
You want a Blade +3 and the number who define the +3 effect are in the ItemNumber octect.
So Item Number in decimal was 68 = 44 in hexa, so 4400 (if you refer @ part I)
Now you need to put 3td digit to A for give the +3 on the Blade.
So the new Hexa of the Bladewas 44A0. (Don't forget to read it in reverse not 44A0 but A044) Convert A044 into decimal = 41028 (This is your Item number) Keep it and go to next stage.
Now calc the ItemOpt for the bonus craft and slot
You need to have 1514B520 (cf PART III IV V if you are totaly lost)
/!\ Read it in this way for calc your Opt: 201514B5 convert this hexa in decimal: 538252469 /!\
Resuming: Item Number: 41028 Opt: 538252469 TADAM ! ^^ (cf Thumb Picture)
VII: Thanks
"Merci" @ Grumly, nothing can do without him :)
I hope i'll be clear for us
And excuse my English :s
VIII: Note
This is the same system for Wharehouse.
And the same base for Skill and Quest but for this we need to know all Hexa code for all quest and skill. Very very hard and long work for get all code. But if one day someone get it, the base was the same.
Still under dev: http://www.oldsch00l.net/item_calc.php ugly but be usefull in a couple of day
-
Re: [TIPS]How to decode ITEM Binary(Not Finish)
now whith this go create your new ubber stuff :)
-
Re: [TIPS]How to decode ITEM Binary(Not Finish)
that's very nice ... ill keep this bookmarked for now
-
Re: [TIPS]How to decode ITEM Binary(Not Finish)
-
Re: [TIPS]How to decode ITEM Binary
very nice finding. this will help a lot.
-
Re: [TIPS]How to decode ITEM Binary
nice analize(economized time to me to analize it) now a can edita start items for new characters or add.
-
Re: [TIPS]How to decode ITEM Binary
Clust3r niCE :) I LOVE yoU :D NO GEY :D
-
Re: [TIPS]How to decode ITEM Binary
-
Re: [TIPS]How to decode ITEM Binary
Great job :)
Now we need Deathway to make a super editor like CzFEditor ^^
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
Disconnect1
Great job :)
Now we need Deathway to make a super editor like CzFEditor ^^
Yep, i'm totaly tired so i'll go to sleep :p
But i have start this:
http://www.oldsch00l.net/item_calc.php
Craft option not still impletented but other option look to works.. Use with caution :)
I'll finish it in phiew hours after a little time in my bed :)
-
Re: [TIPS]How to decode ITEM Binary
-
Re: [TIPS]How to decode ITEM Binary(Not Finish)
Quote:
Originally Posted by
john_d
that's very nice ... ill keep this bookmarked for now
@offtopic
nice to see you in this section supaman! ^_~
been a while since i started to run priv servs again..
still hosting MuKidz?
and oh, btw, did you made the web for DukeGr?
as long as i remember, you rock on those stuffs :D
-
Re: [TIPS]How to decode ITEM Binary(Not Finish)
Quote:
Originally Posted by
Aezeroth
@offtopic
nice to see you in this section supaman! ^_~
been a while since i started to run priv servs again..
still hosting MuKidz?
and oh, btw, did you made the web for DukeGr?
as long as i remember, you rock on those stuffs :D
i nevver hosted mukidz.. i just managed it sometimes ... cause my friend Q is busy sometimes.
honestly i cant remember which and wat web i made .... but i see some of my work here and there... remade, edit and redone ^^
lol @ supaman .. good old times
-
Re: [TIPS]How to decode ITEM Binary
Genius! I love you! P.S. God thank you for these peoples!
-
Re: [TIPS]How to decode ITEM Binary
wow nice thnx alot men ^_^
-
Re: [TIPS]How to decode ITEM Binary
how can i do boots with 140 hp craft ?
-
Re: [TIPS]How to decode ITEM Binary
thanks this will be helpfull
-
Re: [TIPS]How to decode ITEM Binary
http://www.oldsch00l.net/item_calc.php
Sorry Clust3r but it dosen't work good...
Gives the wrong item ...
Did you have tested it ?
Keep the good jod dude =P
-
Re: [TIPS]How to decode ITEM Binary
how use decimal format ? :S!
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
Zabuza
Works great since i trying do add craft...
Fix in phiew hours :p
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
chuckpeterson
how can i do boots with 140 hp craft ?
lil noob needs help :scratch:
-
Re: [TIPS]How to decode ITEM Binary
Topaz Orb:( "3 Slots" + "16 Craft DMG" + "20 DMG Slot" + "5 Rate" +7) 0x18E00400000C1524C430240000000000
24 = 2 Slot Option (Crit DMG)
24 = 3 Slot Option (Crit DMG)
30 = 3 Slots
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
darkxl
how use decimal format ? :S!
open windows scientific calc.
enter value then press dec ^^
-
1 Attachment(s)
Re: [TIPS]How to decode ITEM Binary
help me plz ..
cabal_tool_setinventory could not find
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
jaeker1
help me plz ..
cabal_tool_setinventory could not find
Your are in "master" database, so it's normal, go in your Gamedb table and relauch the command :)
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
Disconnect1
Great job :)
Now we need Deathway to make a super editor like CzFEditor ^^
read my mind, i will suggest this some days ago for you xD
-
Re: [TIPS]How to decode ITEM Binary
a question. Where do you know the commands. ..tool..
-
Re: [TIPS]How to decode ITEM Binary
this is a bit incomplete.
there is 1k ++ in cabal.. and 2 hexa digits isn't going to cover them all.. i believe there is a loopback
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
john_d
this is a bit incomplete.
there is 1k ++ in cabal.. and 2 hexa digits isn't going to cover them all.. i believe there is a loopback
If you notice the post was posted : 07-13-2008, 06:56 AM
a bit older post....
since this time this post wasn't update and wont be update :p
-
Re: [TIPS]How to decode ITEM Binary
anyway.. if you guys still wanna know full item decode.. just says so.. ill do :p
-
Re: [TIPS]How to decode ITEM Binary
When the ID of the item in Hexadecimal has more than 2 characters I can not generate the item = /
exemple:
280 = Hemt of mitrhil for DU
in hexa
280 = 118
help me
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
Sk8TeR
When the ID of the item in Hexadecimal has more than 2 characters I can not generate the item = /
exemple:
280 = Hemt of mitrhil for DU
in hexa
280 = 118
help me
it is easy...
118
1. GET the first digit. ( 1 )
2. Add the Level/binding digit ( 1 -9 a-f )
u get 18F (F for +7 binding )
3. add the 1st digit u removed
u get 18f1
ur done...
/bow
-
Re: [TIPS]How to decode ITEM Binary
-
Re: [TIPS]How to decode ITEM Binary
How to add items to item cash inventory?
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
elfrind
How to add items to item cash inventory?
cabalcash database
table mycashitem
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
elfrind
How to add items to item cash inventory?
There's a stored procedure for this; CabalCash.up_AddMyCashItem
When adding cash items to someone's inventory, keep in mind that the client duration IDs differ from the server ones. These are stored in Product.scp. I'm working on syncing the 2, but it's a lot of work rewriting Product.scp from scratch (estimated 1767 lines >_<).
-
Re: [TIPS]How to decode ITEM Binary
hi, what is if i want 3 slots ? 10 = 1 slot 20= 2 slot 30= 3 slot ?
-
Re: [TIPS]How to decode ITEM Binary
I have two questions..
440047[000028]000000000000896B4685
Where is it ??
440047000028000000000000[896B4685]
Expiration time, but anyone know how can i calc it ?
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
hitcurst
I have two questions..
440047[000028]000000000000896B4685
Where is it ??
440047000028000000000000[896B4685]
Expiration time, but anyone know how can i calc it ?
AABCDDDDDDDDEEFFGGHHII
A = item number
B = Level Bind
C = item loop
D = serial
E = craft
F,G = slots options
H = slot count
I = address, equipment slot, inventory page
the rest me don't know.. i didn't even try ^^
-
Re: [TIPS]How to decode ITEM Binary
nice1 c",x) It Works, can u share us the complete list of items w/ id..... TNxS advance Binary GEEK ^_^
-
Re: [TIPS]How to decode ITEM Binary
i need help !
i need binarius code for :
forcium martialsuit(wi) of amp +7 more two slots ( magic skill and health )
forcium orb of amp +7 more two slots ( magic skill and critical damage )
forcium martialgloves(wi) of amp +7 more two slots ( evasion + magic skill )
forcium martialboots(wi) of amp +7 more two slots ( magic skill + health )
forcium mask(wi) of amp +7 more two slots ( double critical damage )
plz i need help =/
more information add fernanda_sod@hotmail.com
tks
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
supernanda
i need help !
i need binarius code for :
forcium martialsuit(wi) of amp +7 more two slots ( magic skill and health )
forcium orb of amp +7 more two slots ( magic skill and critical damage )
forcium martialgloves(wi) of amp +7 more two slots ( evasion + magic skill )
forcium martialboots(wi) of amp +7 more two slots ( magic skill + health )
forcium mask(wi) of amp +7 more two slots ( double critical damage )
plz i need help =/
more information add
fernanda_sod@hotmail.com
tks
And you expect us to do it for you? -_- Please, read this thread, and figure it out by yourself, just like the rest of us have to.
-
Re: [TIPS]How to decode ITEM Binary
i'm not understand this codes =/
plz help me =/
-
Re: [TIPS]How to decode ITEM Binary
III: Put a craft effect to an item
-->could you tell me what is about "of will" ?
IV: Put slot on item and put upgrade in it
-->is it possible to put a slot on braclets or other accessory? if yes how ? =)
-
Re: [TIPS]How to decode ITEM Binary
Im Stuck
im trying to get a mithril +7 binded with deathblow rate and 2 slot one with crit dmg the other empty
i did the code like this:
18F1020000041400C520000000000000
i put the C5 but i dont get the craft option when i log in annd look at the item, anyone knows what i did wrong?:scratch:
it did work on the mithril blade and other blades but cant get it to work the the helmet :S
-
Re: [TIPS]How to decode ITEM Binary
hi i made option list
SLOT OPTIONS
on weapons and helms
11 ATTACK+2
12 MAGIC+2
13 AttRate+50
14 CritDMG+10%
15 CritRate+5%
16 2s Drop x2.5
17 Skill Exp+4
18 Sword Amp+7%
19 Magic Amp+7%
1A nothing
1B Min Damage+1%
1C Add Damage +5
1D Alz Drop +15%
1E 1s Drop x1.2
on armors
11 HP+50
12 2slot Drop x3.5 (w/empty icon)
13 Defense +2
14 Defence Rate +20
15 MP+50
16 HP Regen +2
17 Skill EXP +4
18 Sword AMP +7%
19 Magic AMP +7%
1A nothing
1B MP Regen +2
1C Crit Rate Cap +2%
1D Alz Drop Amount +15%
1E Flee +1%
on boots
11 Defense +2
12 Defense Rate +20
13 HP+50
14 MP+50
15 HP Regen +2
16 2s Drop x2.5
17 Skill EXP +4
18 Sword AMP +7%
19 Magic AMP +7%
1A nothing
1B MP Regen +2
1C HP Steal Cap +10
1D Alz Drop Amount +15%
1E Flee +1%
on gloves
11 Defense +2
12 Attack Rate +50
13 Defense Rate +20
14 Attack +2
15 HP Regen +2
16 2s Drop x2.5
17 Skill EXP +4
18 Sword AMP +7%
19 Magic AMP +7%
1A nothing
1B MP Regen +2
1C Critical Rate Cap +2%
1D HP Steal 2%
1E MP Steal 2%
CRAFT TYPES (exactly value for Y)
on weapons and helms
* 1="of Destruction (Attack)"
* 2="of Destruction (Magic)"
* 3="of Destruction (Attack rate)
* 4="of Deathblow (Dmg)"
* 5="of Deathblow (Rate)"
* 6="of Luck (2slot item drop)"
* 7="of Adept (Skill EXP)"
* 8="of Amp (Sword)"
* 9="of Amp (Magic)"
* A="nothing effect"
* B="of Destruction (Min Damage)"
* C="of Destruction (Add Damage)"
* D="of Luck (Alz)"
* E="of Luck (1slot Item Drop)"
on armors
* 1="of Will (HP)"
* 2="of Guard (Defense)"
* 3="of Guard (Defense Rate)"
* 4="of Will (MP)"
* 5="of Restoration (HP Regen)"
* 6="of Luck (2slot Item Drop)"
* 7="of Adept (Skill EXP)"
* 8="of Amp (Sword)"
* 9="of Amp (Magic)"
* A="nothing effect"
* B="of Restoration (MP)"
* C="of Deathblow (Max Critical Rate)"
* D="of Luck (Alz)"
* E="of Guard (Flee Rate)"
on boots
* 1="of Guard (Defense)"
* 2="of Guard (Defense Rate)"
* 3="of Will (HP)"
* 4="of Will (MP)"
* 5="of Restoration (HP Regen)"
* 6="of Luck (2slot Item Drop)"
* 7="of Adept (Skill EXP)"
* 8="of Amp (Sword)"
* 9="of Amp (Magic)"
* A="nothing effect"
* B="of Restoration (MP)"
* C="of Vampire (HP)"
* D="of Luck (Alz)"
* E="of Guard (Flee)"
on gloves
* 1="of Guard (Defense)"
* 2="of Destruction (Attack Rate)"
* 3="of Guard (Defense Rate)"
* 4="of Destruction (Attack)"
* 5="of Restoration (HP Regen)"
* 6="of Luck (2slot Item Drop)"
* 7="of Adept (Skill EXP)"
* 8="of Amp (Sword)"
* 9="of Amp (Magic)"
* A="nothing effect"
* B="of Restoration (MP)"
* C="of Deathblow (Max Critical Rate)"
* D="of Vampire (HP)"
* E="of Vampire (MP)"
-
Re: [TIPS]How to decode ITEM Binary
For those who dont know how to convert hex to decimal i hope this simple Scientific calcu for Windows95/98/ME/NT/2000/XP/Vista helps, anyway tnx for the guide nice :vegeta:
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
Meridian59
Im Stuck
im trying to get a mithril +7 binded with deathblow rate and 2 slot one with crit dmg the other empty
i did the code like this:
18F1020000041400C520000000000000
i put the C5 but i dont get the craft option when i log in annd look at the item, anyone knows what i did wrong?:scratch:
it did work on the mithril blade and other blades but cant get it to work the the helmet :S
18F1020000041400C520000000000000
Lime is ur craft
blue is ur 1st slot
yellow is ur 2nd slot
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
john_d
anyway.. if you guys still wanna know full item decode.. just says so.. ill do :p
yes please master john_d :)
-
Re: [TIPS]How to decode ITEM Binary
waaaaa... please help.. Im new to this forum, im playing cabal PH which file im going to edit or decode?
thanks in advance
-
Re: [TIPS]How to decode ITEM Binary
how to put char by this command in GAMEDB:
can you explane how clue to put this code....
Code:
SELECT CharacterIdx FROM cabal_character_table WHERE Name = 'test'
and..
Code:
exec dbo.cabal_tool_GetInventory 20
i don't no where i must go to in database...
Thanks...
-
Re: [TIPS]How to decode ITEM Binary
You don't know how to run SQL queries? You are going to have a lot of fun!
When you open MSSQL you should have a blank query window, if not there is a button on the top left toolbar to open a new query window. Type "use gamedb" and press F5 to switch to the game db, then enter the select statement or whatever other queries you want.
-
Re: [TIPS]How to decode ITEM Binary
-
Re: [TIPS]How to decode ITEM Binary
I want to test something with some items, but i'm a complete idiot at these codes...
If anyone has time, i would like the codes for these items:
I need THESE ITEMS, not better, not weaker. And no binding, please ;)
Osmium Blade+6+20% Critical DMG (2slots)
Shadowtitanium Katana of Deathblow+7 Critical Rate 4% +20%DMG (2slots)
Osmium Armorhelm of Deathblow+6 Critical DMG 7% +20%DMG (2slots)
Mystic Gloves (BL)+6+Def (1slot)
Mithril Boots (BL)+4+HP (1slot)
Mystic Suit (BL)+7+HP (1slot)
Thanks in advance, if someone will help ^^
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
danger-bk
I want to test something with some items, but i'm a complete idiot at these codes...
If anyone has time, i would like the codes for these items:
I need THESE ITEMS, not better, not weaker. And no binding, please ;)
Osmium Blade+6+20% Critical DMG (2slots)
Shadowtitanium Katana of Deathblow+7 Critical Rate 4% +20%DMG (2slots)
Osmium Armorhelm of Deathblow+6 Critical DMG 7% +20%DMG (2slots)
Mystic Gloves (BL)+6+Def (1slot)
Mithril Boots (BL)+4+HP (1slot)
Mystic Suit (BL)+7+HP (1slot)
Thanks in advance, if someone will help ^^
Don't be lazy. Read the guide on the first page of this thread, and work it out yourself... Simples *squeek*
-
Re: [TIPS]How to decode ITEM Binary
Nevermind, i think i got it.
Thanks anyway ;)
-
Re: [TIPS]How to decode ITEM Binary
Ok im totally confused oO
i read the Guide about 10times and still don't understand from where u got the digit:
1514B520
from where? xD The only thing that i don't understand in this Guide but i must say it's a very nice Guide :) *Thumps up*
Ok Solve it ohman im to stupid -_-
but a new Question:
How i can fill all 3 Slot's or 4Slot's? trying some methods but i can't fill it >_<
-
How to do 1 slot? ;D I'm tried these options but I'm got 1 clean slot ;D
Code:
10150000
10001500
101500
It's for Blade
So what I did bad? For 2,3,4 slots I do everything good(get slots what ever I want ;D), but 1 slot it is different. Thx!
Quote:
Originally Posted by
dersuchti
Ok im totally confused oO
i read the Guide about 10times and still don't understand from where u got the digit:
1514B520
from where? xD The only thing that i don't understand in this Guide but i must say it's a very nice Guide :) *Thumps up*
Ok Solve it ohman im to stupid -_-
but a new Question:
How i can fill all 3 Slot's or 4Slot's? trying some methods but i can't fill it >_<
15 is your first slot option
14 is your sencond slot option
B is craft percent
5 craft type
20 this defines two slots
if you want sword amp in 4 slots + craft rate, so option will be:
0048C540
now your slots value 40 put to the first position of your option and with calc convert it to dec from hex
400048C5
and you got 1073760453 option :-)
-
Re: [TIPS]How to decode ITEM Binary
Hi everyone :
Here is what I tried and saw on my private server...Maybe it can help :
For Mythril GreatSword
0x64E0020000040000F4400000000000F8
E : Niveau de l’objet (+7)
00 : Slots bonus --> In the RED option, I didn't put 14 for fist slot and 14 for next slot...I put 44 in this option to get 40% Crit DMG :thumbup: It works (I did it)
F4 : Craft Bonus --> For 10% Crit DMG
40 : Number of Slots (4 slots
PS : I didn't need to replace the last hexa with 0000 to have the item permanent, it was before and still is, even if it finished with F8
--> Everything works fine exept !!! The craft that absolutly doesn't work whatever I put !
Hope the info up can help some and hope someone can help me getting my Deathblow GS :thumbup:
-
Re: [TIPS]How to decode ITEM Binary
excuse me... I'm new here.. Can anyone ask me what software are you using for item decoding and is it still working today? thank you
-
Re: [TIPS]How to decode ITEM Binary
you just need to make some
codings in MSSQL QUERIES..
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
TanGzkie
you just need to make some
codings in MSSQL QUERIES..
do i need to disable XTrap?
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
spike00005
do i need to disable XTrap?
Try to look this Thread.
http://forum.ragezone.com/f451/help-cabal-items-743719/
-
Re: [TIPS]How to decode ITEM Binary
Quote:
Originally Posted by
window123
thanks for the help.. :thumbup:
-
Re: [TIPS]How to decode ITEM Binary
read the rules and use thanks BUTTON! :P
good job man! :thumbup1: