Hi, i got a strange problem here
PHP Code:
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent( "EventRoundStart", 2, "1=Round_Start" );
register_logevent( "EventRoundEnd", 2, "1=Round_End" );
}
PHP Code:
public EventRoundStart( )
{
do something
}
works fine, but
PHP Code:
public EventRoundEnd( )
{
do something
}
doesen't work, but why?