Help with rawcode
Moderator: Cheaters
-
- Old Wrinkly Member
- Posts: 202
- Joined: September 15th, 2010, 5:09 am
- Title: Legenda
Help with rawcode
function Trig_Katon_Conditions takes nothing returns boolean
return GetSpellAbilityId()==0x41303036
endfunction
how rawcode can become like that?
how do I decode it?
return GetSpellAbilityId()==0x41303036
endfunction
how rawcode can become like that?
how do I decode it?
-
- Super Moderator
- Posts: 3197
- Joined: February 24th, 2009, 1:31 pm
- Location: JEW LAND
- Been thanked: 1 time
-
- Old Wrinkly Member
- Posts: 226
- Joined: April 19th, 2010, 1:48 pm
- Location: In The World
-
- Old Wrinkly Member
- Posts: 202
- Joined: September 15th, 2010, 5:09 am
- Title: Legenda
-
- Super Moderator
- Posts: 3197
- Joined: February 24th, 2009, 1:31 pm
- Location: JEW LAND
- Been thanked: 1 time
Re: Help with rawcode
0x... means its hexdecimal.
$A = 0xA = 10
If you want to understand how to convert hex-decimal to decimal, you can find a the mathematical equation with google.
How to convert the ID (number you posted) to a raw-code is also a pain.
Step 1 (and a funny one): Convert the ID to Hex-Decimal characters, You already have that. The ID is 41303036
Step 2: split every 2 digits, so that will be - 41 30 30 36
Step 3: The results from step 2 are what I think is called a Hex String. To see what every character is, open any hex-editor (I use XVI32) and check each number. In our case - 41 is A; 30 is 0; and 36 is 6;.
A006
$A = 0xA = 10
If you want to understand how to convert hex-decimal to decimal, you can find a the mathematical equation with google.
How to convert the ID (number you posted) to a raw-code is also a pain.
Step 1 (and a funny one): Convert the ID to Hex-Decimal characters, You already have that. The ID is 41303036
Step 2: split every 2 digits, so that will be - 41 30 30 36
Step 3: The results from step 2 are what I think is called a Hex String. To see what every character is, open any hex-editor (I use XVI32) and check each number. In our case - 41 is A; 30 is 0; and 36 is 6;.
A006
-
- Old Wrinkly Member
- Posts: 202
- Joined: September 15th, 2010, 5:09 am
- Title: Legenda
Re: Help with rawcode
There is no thx button?haxorico wrote:0x... means its hexdecimal.
$A = 0xA = 10
If you want to understand how to convert hex-decimal to decimal, you can find a the mathematical equation with google.
How to convert the ID (number you posted) to a raw-code is also a pain.
Step 1 (and a funny one): Convert the ID to Hex-Decimal characters, You already have that. The ID is 41303036
Step 2: split every 2 digits, so that will be - 41 30 30 36
Step 3: The results from step 2 are what I think is called a Hex String. To see what every character is, open any hex-editor (I use XVI32) and check each number. In our case - 41 is A; 30 is 0; and 36 is 6;.
A006
Really thx