View Single Post
  #2  
Old 07-26-2008, 02:57 PM
spider661
Discordant
 
Join Date: Oct 2005
Location: michigain
Posts: 260
Default

i got it im sure there is a better way and if anyone can figure it out please say so.. but this is what i got.

player.pl
Code:
sub EVENT_ENTERZONE 
{ 
quest::settimer("spell",2);
}
sub EVENT_TIMER 
{ 
if($timer == "spell")
{
if($client->CastingSpellID() == 36)
{
quest::say("Bim has cursed you.. This spell will not work at this time!");
$client->InterruptSpell(36);
}
}
}
Reply With Quote