renewal Posted May 10, 2017 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 6 Reputation: 0 Joined: 08/16/12 Last Seen: November 17, 2017 Share Posted May 10, 2017 help me! // 06 nk (skill damage properties): // 0x01 - No damage skill // 0x02 - Has splash area // 0x04 - Damage should be split among targets // 0x08 - Skill ignores caster's % damage cards (misc type always ignores) // 0x10 - Skill ignores elemental adjustments // 0x20 - Skill ignores target's defense (misc type always ignores) // 0x40 - Skill ignores target's flee (magic type always ignores) // 0x80 - Skill ignores target's def cards How do I convert these digits into hexadecimal? 0x10 + 0x40 + 0x80 = In hexedecimal = ? Quote Link to comment Share on other sites More sharing options...
0 Secrets Posted May 10, 2017 Group: Developer Topic Count: 36 Topics Per Day: 0.01 Content Count: 588 Reputation: 437 Joined: 01/26/16 Last Seen: Wednesday at 03:00 PM Share Posted May 10, 2017 A digit of hexadecimal can hold a value up to 15 (0xF) so you just add them up like this 0x10 + 0x40 = 0x50 0x50 + 0x80 = 0x(13)0 = 0xD0 1 Quote Link to comment Share on other sites More sharing options...
0 Technoken Posted May 10, 2017 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 505 Reputation: 127 Joined: 04/04/16 Last Seen: April 13 Share Posted May 10, 2017 If you're still having problem with adding them manually. You can ask it on google. Spoiler 1 Quote Link to comment Share on other sites More sharing options...
Question
renewal
help me!
// 06 nk (skill damage properties):
// 0x01 - No damage skill
// 0x02 - Has splash area
// 0x04 - Damage should be split among targets
// 0x08 - Skill ignores caster's % damage cards (misc type always ignores)
// 0x10 - Skill ignores elemental adjustments
// 0x20 - Skill ignores target's defense (misc type always ignores)
// 0x40 - Skill ignores target's flee (magic type always ignores)
// 0x80 - Skill ignores target's def cards
How do I convert these digits into hexadecimal?
0x10 + 0x40 + 0x80 = In hexedecimal = ?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.