retsaoremo Posted November 14, 2014 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 35 Reputation: 0 Joined: 11/22/13 Last Seen: July 29, 2022 Share Posted November 14, 2014 (edited) // 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 I think that is only sum, but not. How to make this skill: 2261,9:11:13,6,2,-1,0x42,3:2:1,3,1,no,0,0,0,weapon,0,0x0, NC_ARMSCANNON,Arm Cannon ignore DEF too? Explain to me please. Edited November 14, 2014 by retsaoremo Quote Link to comment Share on other sites More sharing options...
Playtester Posted November 14, 2014 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: 22 hours ago Share Posted November 14, 2014 You need to sum it up in a hexidezimal way. It's easier like that because each digit is NOT influenced by other digits. It goes like this: 0-9 A - 10 B - 11 C - 12 D - 13 E - 14 F - 15 0x80 + 0x10 = 0x90 If you have: 0x80 + 0x08 + 0x02 you can split that into: First digit: 0x80 (8) Second digit: 0x08 (8) + 0x02 (2) = 0x0A (10) Then combine it together: 0x8A 0x just means "the following number is in a hexadecimal system" rather than the decimal system most humans use. 1 Quote Link to comment Share on other sites More sharing options...
Playtester Posted November 14, 2014 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: 22 hours ago Share Posted November 14, 2014 Just add 0x20 to the nk field: 0x42 -> 0x62 Quote Link to comment Share on other sites More sharing options...
retsaoremo Posted November 14, 2014 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 35 Reputation: 0 Joined: 11/22/13 Last Seen: July 29, 2022 Author Share Posted November 14, 2014 Just add 0x20 to the nk field: 0x42 -> 0x62 Ok. So it's only sum the values? Example: // 0x80 - Skill ignores target's def cards // 0x10 - Skill ignores elemental adjustments Sum: 0x90 Now: // 0x80 - Skill ignores target's def cards // 0x08 - Skill ignores caster's % damage cards (misc type always ignores) // 0x02 - Has splash area Now sum: 0x90 (It's right?) The same value, but not same effect. How do you explain this, please? Quote Link to comment Share on other sites More sharing options...
retsaoremo Posted November 14, 2014 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 35 Reputation: 0 Joined: 11/22/13 Last Seen: July 29, 2022 Author Share Posted November 14, 2014 You need to sum it up in a hexidezimal way. It's easier like that because each digit is NOT influenced by other digits. It goes like this: 0-9 A - 10 B - 11 C - 12 D - 13 E - 14 F - 15 0x80 + 0x10 = 0x90 If you have: 0x80 + 0x08 + 0x02 you can split that into: First digit: 0x80 (8) Second digit: 0x08 (8) + 0x02 (2) = 0x0A (10) Then combine it together: 0x8A 0x just means "the following number is in a hexadecimal system" rather than the decimal system most humans use. Thanks. Please, explain me this example? // 0x40 - Skill ignores target's flee (magic type always ignores) // 0x80 - Skill ignores target's def cards This case is 8+4 = 12 = 0xC ? Quote Link to comment Share on other sites More sharing options...
Playtester Posted November 14, 2014 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: 22 hours ago Share Posted November 14, 2014 0xC0 to be exact. Yes. Quote Link to comment Share on other sites More sharing options...
retsaoremo Posted November 14, 2014 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 35 Reputation: 0 Joined: 11/22/13 Last Seen: July 29, 2022 Author Share Posted November 14, 2014 Thanks man! =) Quote Link to comment Share on other sites More sharing options...
Question
retsaoremo
I think that is only sum, but not.
How to make this skill:
ignore DEF too? Explain to me please.
Edited by retsaoremoLink to comment
Share on other sites
6 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.