10.02.2011, 18:17
pawn Code:
if(strcmp(cmd, "/irteste",true) == 0)
{
if(open == true)
{
SendClientMessage(playerid, COLOR_YELLOW, "Nгo tem nenhum teste aberto no momento!");
return 0;
}
SetPlayerPos(playerid, 1416.107000,0.268620,1000.926000);
SetPlayerInterior(playerid,1);
}
return 1;
}
return 0; ou return false; == ele nгo returna isto й, nгo continua.
return 1; ou return true; == ele returna isto й, ele continua.
pawn Code:
if(!strcmp(cmdtext,"/souadmin", true))
{
if(!IsPlayerAdmin(playerid)) return 0; // Caso ele nгo for admin (!) ele returna a 0, isto й, nгo continua o comando.
// Caso ele for Adminstrador no Rcon ele continua o comando.
return 1;
}