PDA

View Full Version : EVery XX seconds cast X



cookies12345
02-15-2016, 12:06 AM
Got a script for this? Needed in an OT to cast a custom spell when it runs out. Thanks in advance

Oscagi
02-15-2016, 12:51 AM
Module.New('CastSpell', function()
Self.Cast('Utani Gran Hur', 100) -- Spell to cast, and mana needed for cast it.
Module:Delay(2000) -- Seconds to cast the spell.
end)

cookies12345
02-15-2016, 12:55 AM
Thank you kindly Oscagi!

Oscagi
02-15-2016, 01:09 AM
np dude, if u need smth more PM.

cookies12345
02-15-2016, 04:36 PM
np dude, if u need smth more PM.

Hey Oscagi, for some reason it just trys spamming the spell. Even when seconds are at 200000

cookies12345
02-18-2016, 02:04 AM
Anyone?

Oscagi
02-18-2016, 07:18 AM
Yes, its true I will check it later anyways. Srry.

cookies12345
02-18-2016, 04:44 PM
No prob. Anyone else got a script like this? Or what i should search for

Merre
02-18-2016, 08:49 PM
Module.New('CastSpell', function(mod)
Self.Cast('Utani Gran Hur', 100) -- Spell to cast, and mana needed for cast it.
mod:Delay(2000) -- Seconds to cast the spell.
end)