PDA

View Full Version : Event_spell_buff_tic_client


Township EQ
04-27-2014, 04:02 PM
sub EVENT_SPELL_EFFECT_CLIENT {
$client->Message(15, "spell on u");
}
sub EVENT_SPELL_BUFF_TIC_CLIENT {
my $healthisnigga = $entity_list->GetClientByID($caster_id);
$healthisnigga->Message(15, "test1");
$client->Message(15, "test2");
}


is "EVENT_SPELL_BUFF_TIC_CLIENT" not working or am i just using it horribly incorrectly? I'm correctly getting the message for "spell on u" just nothing when the actual spell ticks.