[Ajuda] Ajuda com comando /carandiru. - 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] Ajuda com comando /carandiru. (
/showthread.php?tid=428229)
Ajuda com comando /carandiru. [Resolvido] -
Dick_Vigarista - 05.04.2013
Como faзo para dar o comando /carandiru mas sem estar em Modo trabalho (/trabalhar)?
PHP код:
if(strcmp(cmd, "/carandiru", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /carandiru [ id ] [tempo]");
return 1;
}
new playa;
new money;
playa = ReturnUser(tmp);
tmp = strtok(cmdtext, idx);
money = strval(tmp);
if (PlayerInfo[playerid][pAdmin] >= 1)
{
if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1342)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
return 1;
}
if(IsPlayerConnected(playa))
{
if(playa != INVALID_PLAYER_ID)
{
GetPlayerName(playa, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "* Vocк mandou %s para a cela admin.", giveplayer);
SendClientMessage(playerid, COLOR_LIGHTRED, string);
format(string, sizeof(string), "* Voce foi preso pelo Admin %s.", sendername);
SendClientMessage(playa, COLOR_LIGHTRED, string);
ResetPlayerWeapons(playa);
WantedPoints[playa] = 0;
PlayerInfo[playa][pJailed] = 6;
PlayerInfo[playa][pJailTime] = money*60;
SetPlayerInterior(playa, 0);
SetPlayerPos(playa, 2695.0466,-2125.5537,13.5488);
format(string, sizeof(string), "Voce foi preso por %d Minutos na Cela Admin.", money);
SendClientMessage(playa, COLOR_LIGHTBLUE, string);
}
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, " Voce nгo esta autorizado a usar este comando!");
}
}
return 1;
}
Re: Ajuda com comando /carandiru. -
Kuddy - 05.04.2013
Apenas apague isso:
pawn Код:
Code:
if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1342)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
return 1;
}
Re: Ajuda com comando /carandiru. -
Dick_Vigarista - 05.04.2013
Mas players normais (nгo admins) nгo vгo poder usar, certo?
Re: Ajuda com comando /carandiru. -
Kuddy - 05.04.2013
Se vc apagar a linha abaixo todos poderao usar, caso contrario, apenas administradores.
pawn Код:
if (PlayerInfo[playerid][pAdmin] >= 1)
Re: Ajuda com comando /carandiru. -
Dick_Vigarista - 05.04.2013
Certo. Obrigado!
++rep.