Ok so would I put this in plugin_init
Code:
register_logevent("new_round",2,"0=World triggered","1=Round_Start")
Then the new_round would be public new_round, then my code?
E.g.
Code:
public plugin_init() {
register_logevent("new_round",2,"0=World triggered","1=Round_Start")
return PLUGIN_CONTINUE
}
public new_round(id) {
blah goes here?
return PLUGIN_CONTINUE
}