Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: Shalaren on February 21, 2011, 02:59:17 am

Title: Blizz-abs add on? [RESOLVED]
Post by: Shalaren on February 21, 2011, 02:59:17 am
simply put a cool down on skills. for those who are having a difficult time figuring out what this means.
simply put a time on a skill after its being used, for example if I use a "Fire ball" skill and I config it to have 6 seconds cool down,
you will not be able to use "Fire ball" until these 6 seconds are over. but while these 6 seconds, you are able to use others skills that are skill active. by that i mean that if there is 3 skills in my hot keys, i use the first one, 10 sec cool down, while the first skills is cooling down, i use the second skill and now it will have 10 sec cool down, and the first skill would have less since i used it first. and while the first skill is on its 6 secs and the second is on its 10 sec, im still able to use the third skill. Hope I explained it perfectly xD.
Title: Re: Blizz-abs add on? [Cool down for skills]
Post by: Blizzard on February 21, 2011, 03:21:52 am
http://forum.chaos-project.com/index.php/topic,2312.0.html
Title: Re: Blizz-abs add on? [Cool down for skills]
Post by: Shalaren on February 21, 2011, 04:18:47 am
ekk that does seem to be what im asking for, but it isnt working o-o
I mean i put it below blizz abs and it doesnt do what its meant to.
also the screenshot isnt working, so I dont even know how its suppose to look like.
but one thing for sure, it keeps on letting me use the skill as many times as i want.
S: help anyone?

Edit: let me fix my self, Ive been playing around with it, and it works but not the way it should.
Spoiler: ShowHide

  module Skills
    def self.recharge(id)
      case id
      when 1 then return 160
      end
      return 160
    end
  end

thats what i have in there. it only specifies skill ID number 1. but all other skills have the same cool down for some reason.
and then, how do I add more skills?. it only specifies one and when i try adding more it gives me alot of errors.
Title: Re: Blizz-abs add on? [Cool down for skills]
Post by: Blizzard on February 21, 2011, 08:36:23 am
If you think that it's a bug, you should post it in the topic of the script.
Title: Re: Blizz-abs add on? [Cool down for skills]
Post by: BeAddicted on February 21, 2011, 09:04:53 am
You have setted return to 160 frames the value you set there is for all skills you have to set it to 0 or another cd which should be for all skills then it should work.
Title: Re: Blizz-abs add on? [Cool down for skills]
Post by: Shalaren on February 21, 2011, 09:41:27 am
yep it works now, thank you Blizzard :P