Item ASPD Check

prism

New member
Messages
69
Points
0
I was wondering how I can have an item check the player's ASPD. I want to make it so that if the player's ASPD is less than 195 the item will apply a bonus.

 
I was wondering how I can have an item check the player's ASPD. I want to make it so that if the player's ASPD is less than 195 the item will apply a bonus.
Code:
if(readparam(bAspd) < 195) {
  bonus bStr, x;
}
 
Back
Top