27.04.2012, 13:06
Use return.
pawn Код:
public OnGameModeInit()
{
if(condition)
{
return SendRconCommand("exit");
}
// More code
return 1;
}

