It works fine, and your code seems fine.
Please paste the whole code you tested.
PHP Code:
public plugin_init()
{
register_event("HLTV", "Event_HLTV_New_Round", "a", "1=0", "2=0")
register_logevent("LogEvent_Round_Start", 2, "1=Round_Start")
register_logevent("Logevent_Round_End", 2, "1=Round_End")
}
public Event_HLTV_New_Round()
{
server_print("Freezetime started")
}
public LogEvent_Round_Start()
{
server_print("Round started")
}
public Logevent_Round_End()
{
server_print("Round ended")
}
__________________