22.10.2013, 00:08
Galera como eu faзo para separar um cуdigo eu ja fiz isso uma vez mais eu eskeci como faz..
Eu tenho esse Public
Se eu quiser adicionar um cуd. como eu faзo para colocar ele sem erros.. Se eu nгo me engano na ъltima vez que eu fiz isso teque tirar o ultimo return e fechar } e colocar o cуd. ?
Eu tenho esse Public
pawn Код:
public OnPlayerText(playerid, text[])
{
// Block the player's text if he has been muted
if (APlayerData[playerid][Muted] == true)
{
// Let the player know he's still muted
SendClientMessage(playerid, 0xFFFFFFFF, "{FFFF0000}[ERRO] {FF0000}Vocк ainda estб mudo.");
// Don't allow his text to be sent to the chatbox
return 0;
}
new string[256];
format(string,sizeof(string),"{FFFFFF}(ID: %d) %s",playerid,text);
SendPlayerMessageToAll(playerid,string);
return 0;
}