27.09.2011, 20:46
Olб, sou novato e nгo sei codar ainda muito bem o Pawn. Preciso de uma pequena ajuda, sгo coisas simples; porйm nгo estou conseguindo idenficar o erro, estou usando o gamemode do DJ_Bruninho como base para apredizado.
Me ajudem ai;
Me ajudem ai;
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new PlayerB;
new string[128];
new cmd[128];
new tmp[128];
if(strcmp(cmd, "/convidar", true) == 0)
{
if(!strlen(tmp)) return SendClientMessage(playerB, BRANCO2, "Uso correto: /convidar [id]");
PlayerB = strval(tmp);
if(!IsPlayerConnected(PlayerB)) return SendClientMessage(playerid, BRANCO2, "Este jogador nгo estб conectado");
if(BrunoInfo[playerid][PM] >= 6)
{
BrunoInfo[playerid][PM] = 1;
SendClientMessage(playerid, BRANCO2, "Vocк entrou para a Polнcia Militar");
SetPlayerColor(playerid, COR_PM);
return 1;
}
return 1;
}