CrosisReborn Member 77 Feb 2, 2007 #1 Hello everone, I was wondering to make custom stats in the game do you have to make a new script are can you modify the Game_actor moudle?
Hello everone, I was wondering to make custom stats in the game do you have to make a new script are can you modify the Game_actor moudle?
CompletelyAnon Member 10 Feb 2, 2007 #2 I think that modifying Game_Actors will work, but I'm not sure Upvote 0 Downvote
Mac Member 335 Feb 2, 2007 #3 You could add something like this above main..this will create a new stat but it will only be there for viewing purposes:- Code: class Actor_NewStat Actor_NewStat = { 1 => 22, 2 =>24, 3 => 27, 4 => 21, 5 => 31, 6 => 34, 7 => 46, 8 => 56} def newstat return Actor_NewStat[@actor_id] end end If you tell us more about what you want the stat to do then..we can help more. To draw the stat use something like this:- Code: draw_actor_newstat(actor, 140, -1) And place it in Window_Base with the rest. Upvote 0 Downvote
You could add something like this above main..this will create a new stat but it will only be there for viewing purposes:- Code: class Actor_NewStat Actor_NewStat = { 1 => 22, 2 =>24, 3 => 27, 4 => 21, 5 => 31, 6 => 34, 7 => 46, 8 => 56} def newstat return Actor_NewStat[@actor_id] end end If you tell us more about what you want the stat to do then..we can help more. To draw the stat use something like this:- Code: draw_actor_newstat(actor, 140, -1) And place it in Window_Base with the rest.