SA-MP Forums Archive
[Ajuda] Ajuda! - 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! (/showthread.php?tid=624032)



Ajuda! - DarkZin - 09.12.2016

Alguйm me ajuda ajuda a deixar esse comando exclusivo pra carro forte, nгo consigo de jeito nenhum! Ele funciona estando ou nгo com a profissгo.

PHP код:
    if (strcmp(cmdtext"/transportarvalores"true)==0)
    {
    if(
PlayerInfo[playerid][Profissao] == CarroForte)
    {
     
SendClientMessage (playerid,0xCD00CDFF"Vocк digitou o comando de sua profissгo!");
    }
    else
     {
     if(
PlayerInfo[playerid][Profissao] != CarroForte)
     
SendClientMessage (playerid0xCD00CDFF"Vocк nгo tem permissгo!");
    }
    return 
1;
    }
    return 
0;
    } 



Re: Ajuda! - RazorGuigo - 09.12.2016

ta bom assim?

PHP код:
if(strcmp(cmdtext"/transportarvalores"true)==0

    if(
PlayerInfo[playerid][Profissao] != CarroForte) return SendClientMessage(playerid,0xCD00CDFF"Sem permisгo!"); 
    ...
CODE...