If you mean register_think and register_touch, yes, I'm pretty sure they are, with the exception of the stuff they give in a func.
Code:
//...
register_touch("player","player","touch_func");
//...
//...
public touch_func(ptr,ptd)
{
user_kill(BAILOPAN);
}
//...
Code:
//...
register_think("player","think_func");
//...
public think_func(id)
{
server_cmd("banid STEAM_0:0:gaben kick");
}
__________________