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);
}
}
}