Advertisement
Guest User

zidane_tribal_theivery

a guest
Feb 18th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. If anyone is curious, I figured out how to do Zidane Tribal's "Thievery" where damage = (steals*agi) /2
  2.  
  3. Put this in notetag of basic steal skills - note, that I'm using 200+ actor's id
  4.  
  5. <Custom Execution>
  6. var vID = $gameParty.members().indexOf(user);
  7. var vID = 200+vID
  8. var value = $gameVariables.value(vID)
  9. value+=1
  10. $gameVariables.setValue(vID, value);
  11. </Custom Execution>
  12.  
  13. PUT THIS in the damage calculation of the theivery skill
  14. (a.agi* $gameVariables.value(200+$gameParty.members().indexOf(a)))/2
  15.  
  16. If you steal 1000 times with an agi of 76, you will do 38,000 damage (Make sure to use the <Bypass Damage Cap> tag if you want)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement