Jump to content
  • 0

Question

Posted

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 = ?

2 answers to this question

Recommended Posts

  • 0
Posted

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

  • Upvote 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...