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



[Ajuda]Comando bugado - willian Franco - 29.06.2011

agora NAO COMSIGo /liberarcarro nao pega mais tb E O CARRO CONTIMUNA TRAVADO

if(strcmp(cmd, "/liberarcarro", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USO: /liberarcarro [carid]");
return 1;
}
if(IsAGang(playerid))
{
SendClientMessage(playerid, COLOR_RED, "[Erro] Vocк nгo estб autorizado a usar este comando.");
return 1;
}
else
{
new carid = strval(tmp);
for(new i = 0; i < MAX_PLAYERS; i++)
{
SetVehicleParamsForPlayer(carid, i, 0, 0);
}
VehicleInfo[carid][vPRFLock] = 0;
SendClientMessage(playerid, COLOR_WHITE, "[Info] Veнculo liberado.");
}
}
return 1;
}


Re: [Ajuda]Comando bugado - Dark.Angel - 29.06.2011

Pra que criar 2 topico --'
Espera que alguem vai te ajudar =/


Re: [Ajuda]Comando bugado - TheGarfield - 29.06.2011

nao mecho muito com strtock mais ta ai:
pawn Код:
if(strcmp(cmd, "/liberarcarro", true) == 0)
{
    tmp = strtok(cmdtext, idx);
   
    if(!strlen(tmp))
        return SendClientMessage(playerid, COLOR_GRAD2, "USO: /liberarcarro [carid]");
    if(IsAGang(playerid))
        return SendClientMessage(playerid, COLOR_RED, "[Erro] Vocк nгo estб autorizado a usar este comando.");

    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        SetVehicleParamsForPlayer(GetPlayerVehicleID(strval(tmp)), i, 0, 0);
    }
    VehicleInfo[carid][vPRFLock] = 0;
    SendClientMessage(playerid, COLOR_WHITE, "[Info] Veнculo liberado.");
    return 1;
}



Respuesta: [Ajuda]Comando bugado - MatheusLuan - 30.06.2011

Vou repetir a pergunta do meu amigo Dark.Angel :

Para que 2 topicos? -.-