[Ajuda] 2 Comandos - 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] 2 Comandos (
/showthread.php?tid=515586)
2 Comandos -
FabioGTP - 26.05.2014
como eu faзo 2 comandos o /ir e o /pinfo
o /pinfo, e assim aparece o ip do jogador, a vida e o colete que ele estб no momento..
/ir vcs jб sabem eu vou fazer em zcmd
Re: 2 Comandos -
Alwe - 26.05.2014
pawn Код:
if(strcmp(cmd, "/pinfo", true) == 0)
{
if (PlayerInfo[playerid][pAdmin] >= 4 || PlayerInfo[playerid][pAdmin] >= 5)
{
tmp = strtok(cmdtext,idx);
new playersip[256];
if(!strlen(tmp))
{
SendClientMessage(playerid,Vermelho,"| ERRO | /pinfo [Players ID]");
return 1;
}
giveplayerid = ReturnUser(tmp);
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerIp( giveplayerid,playersip,sizeof(playersip));
format(string, sizeof(string), "Player: %s IP: %s",giveplayer,playersip);
SendClientMessage(playerid,Vermelho,string);
}
return 1;
}
Com ele vocк conseguirб visualizar o IP .
Re: 2 Comandos -
MatheusDalZot - 26.05.2014
comando ir, ta bem basicгo
pawn Код:
if(strcmp(cmd, "/ir", true) == 0)
{
if (PlayerInfo[playerid][pAdmin] >= 1)
{
tmp = strtok(cmdtext,idx);
new playersip[256];
if(!strlen(tmp))
{
SendClientMessage(playerid,Vermelho,"| ERRO | /ir [Player ID/Nome]");
return 1;
}
giveplayerid = ReturnUser(tmp);
GetPlayerPos(giveplayerid, pos[0], pos[1], pos[2]);
SetPlayerPos(playerid, pos[0], pos[1], pos[2]);
SetPlayerInterior(playerid, GetPlayerInterior(giveplayerid));
SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(giveplayerid));
}
return 1;
}
Re: 2 Comandos -
FabioGTP - 26.05.2014
Quote:
Originally Posted by MatheusDalZot
comando ir, ta bem basicгo
pawn Код:
if(strcmp(cmd, "/ir", true) == 0) { if (PlayerInfo[playerid][pAdmin] >= 1) { tmp = strtok(cmdtext,idx); new playersip[256]; if(!strlen(tmp)) { SendClientMessage(playerid,Vermelho,"| ERRO | /ir [Player ID/Nome]"); return 1; } giveplayerid = ReturnUser(tmp); GetPlayerPos(giveplayerid, pos[0], pos[1], pos[2]); SetPlayerPos(playerid, pos[0], pos[1], pos[2]); SetPlayerInterior(playerid, GetPlayerInterior(giveplayerid)); SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(giveplayerid)); } return 1; }
|
como eu disse acima vou fazer em zcmd
, e o pinfo nгo e do jeito que eu quero
Re: 2 Comandos -
Alwe - 26.05.2014
Quote:
Originally Posted by FabioGTP
como eu disse acima vou fazer em zcmd , e o pinfo nгo e do jeito que eu quero
|
Amigo estamos dando uma base, e nгo fazendo oque й pra vocк fazer !
Re: 2 Comandos -
FabioGTP - 26.05.2014
Quote:
Originally Posted by Alwe
Amigo estamos dando uma base, e nгo fazendo oque й pra vocк fazer !
|
eu sei, mais podia explicar os cуdigos
Re: 2 Comandos -
Alwe - 26.05.2014
o que vc quer saber ?
Re: 2 Comandos -
MatheusDalZot - 26.05.2014
Quote:
Originally Posted by FabioGTP
eu sei, mais podia explicar os cуdigos
|
Basta explicar-se melhor, leve em consideraзгo nossos codes como uma base de como deves fazer o seu