RanXerox 
Master
 
Posts: 550
Likes Given: 1
Likes Received: 12 in 9 posts
Joined: Dec 2010
Reputation: 19
![]()
|
RE: How to change the Player SkillClass
I think you need a couple things... in the sphere.ini, you need to enable the COMBAT_STACKARMOR and FEATURE_AOS_DAMAGE
You need to set ARMOR=0 (or just comment it out) on all armor and clothes items... instead of using ARMOR, you use TAG.RESPhysical
In a global player and npc event, you use @equip and @unequip triggers to affect MODAR, something like this:
Code:
IF (<TAG0.RESPHYSICAL>)
SRC.TAG.RESPHYSICAL=<EVAL <SRC.TAG0.RESPHYSICAL> - <TAG0.RESPHYSICAL>>
SRC.MODAR -= <TAG0.RESPHYSICAL>
IF (<SRC.TAG0.RESPHYSICAL>==0)
SRC.TAG.RESPHYSICAL=
SRC.MODAR=
ENDIF
ENDIF
|
|
12-18-2012 03:53 AM |
|
|