Blizzy
me = Scripter.new("Noob")
- 492
- Posts
- 20
- Years
- Age 35
- ~The Netherlands~
- Seen Sep 2, 2007
sorry, i don't know how to do that.Demonic Budha said:thx to all who helped me find the reflection script.
now i have another request,
are you able to edit the reflection script so that the
reflection is rippled when reflected in water?
basiclly like on pokemon FR/LG
Thx in advance
Demonic Budha
sure, that's easy, but i don't know all of the statsdatriot said:Yeah, can I also make a request, could you make some contest style stats like on Pokemon?(eg. cool, beuty, etc.)
here's what i have now...
Code:
class Game_Actor < Game_Battler
alias setup_old setup
attr_accessor :cool
attr_accessor :beauty
attr_accessor :cute
attr_accessor :smart
attr_accessor :tough
def setup(actor_id)
@cool = 0
@beauty = 0
@cute = 0
@smart = 0
@tough = 0
setup_old(actor_id)
end
end
it can be used via: $game_party.actors[0].skill
skill = cool, beauty, cute, smart, tough.
Last edited: