SA-MP Forums Archive
[AJUDA] mensagem ao atender - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] mensagem ao atender (/showthread.php?tid=289317)



[AJUDA] mensagem ao atender - Raphael_Lima - 11.10.2011

pawn Код:
}
                        SetPlayerVirtualWorld(playerid, world);
                        SendClientMessage(playerid, 0x33FF00FF, "Vocк foi teleportado pelo Admin !");
                        GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
                        GetPlayerName(plo, plname, MAX_PLAYER_NAME);
                        if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
                        {}
                        else { format(string, sizeof(string), "O Admin %s foi atender o relatуrio de %s.",playername,plname); }
                        ProxDetector(30.0, playerid, string, COLOR_AZULBB,COLOR_AZULBB,COLOR_AZULBB,COLOR_AZULBB,COLOR_AZULBB);
                    }
                    else

bom eu fiz esse comando de a mensagem parecer quando admin anteder a o relatуrio mais o problema й que so aparecer para mim nao para os outros admins se alguem pode ajudar agredeзo


Re: [AJUDA] mensagem ao atender - Ricop522 - 11.10.2011

aparecer para todos ?
pawn Код:
if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
{ }
else {
    format(string, sizeof(string), "O Admin %s foi atender o relatуrio de %s.",playername,plname);
}
for(new a = 0, b = GetMaxPlayers(); a < b; ++a) if(PlayerInfo[i][pAdmin]>0) SendClientMessage(i, -1, string);
ProxDetector(30.0, playerid, string, COLOR_AZULBB,COLOR_AZULBB,COLOR_AZULBB,COLOR_AZULBB,COLOR_AZULBB);



Re: [AJUDA] mensagem ao atender - Raphael_Lima - 11.10.2011

aparecer so para os admins


Re: [AJUDA] mensagem ao atender - Raphael_Lima - 11.10.2011

error 017: undefined symbol "i"
error 017: undefined symbol "i"


Re: [AJUDA] mensagem ao atender - ViniBorn - 11.10.2011

Troca essa linha

pawn Код:
for(new a = 0, b = GetMaxPlayers(); a < b; ++a) if(PlayerInfo[i][pAdmin]>0) SendClientMessage(i, -1, string);
Por essa

pawn Код:
for(new a = 0, b = GetMaxPlayers(); a < b; ++a) if(PlayerInfo[a][pAdmin]>0) SendClientMessage(a, -1, string);



Re: [AJUDA] mensagem ao atender - Raphael_Lima - 11.10.2011

Deu certo obrigado ai galera