View Single Post
Author Message
Floppe
Junior Member
Join Date: Jun 2007
Old 07-20-2007 , 04:46   Help with counting scores
Reply With Quote #1

Why doesn't this work?

Code:
public OnPluginStart()
{
  if(!HookEventEx("team_score", Event_TeamScore))
  {
    decl String:Error[PLATFORM_MAX_PATH + 64];
    FormatEx(Error, sizeof(Error), "FATAL *** ERROR ***");
    SetFailState(Error);
  }
}

public Event_TeamScore(Handle:event, const String:name[], bool:dontBroadcast)
{
  LogMessage("EVENT TeamScore FIRED!");
}
No errors, no fired event
Floppe is offline