Anybody know how to set the maximum sp a character can reach (I want to set it to 100)?
I think it would be something like this but im not sure
if actor.max_sp >= 100
set actor.max_sp = 100
i'm looking at where to set this limit (script wise) so that characters cannot curve past 100 sp.
i hope thats not too confusing,
thanks!
Yes i think that is the right way putting it..
lol, yes but do u know what script to throw it in?
I'm guessing in game_character 1 or 2 or 3..
Why not just set it in the database?
Oh, you wanted the limitation IN GENERAL! Lol, I thought you wanted it for the CSGS specifically. Then just use this code:
class Game_Actor
def maxsp
n = super
return (n > 100 ? 100 : n)
end
def maxsp=(val)
super(val > 100 ? 100 : val)
end
end
Sorry for the misunderstanding, blazin'. (>.<)
aaaaand blizzard comes in clutch yet again. RESOLVED!
thanks, blizz.
btw who is that baaaaaaanging chick in ur avator?
It's a friend of a girl I chat with on ICQ.