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=265145)



[Ajuda]Comando bugado - willian Franco - 29.06.2011

o meu sistema de /apreedercarro aprende e depois de 3 seg se tentar entrar no carro e sair pega

if(strcmp(cmd, "/apreendercarro", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USO: /apreendercarro [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);
VehicleInfo[carid][vPRFLock] = 1;
for(new i = 0; i < MAX_PLAYERS; i++)
{
SetVehicleParamsForPlayer(carid, i, 1, 1);
}
SendClientMessage(playerid, COLOR_WHITE, "[Info] Veнculo apreendido.");
}
}
return 1;
}


Re: [Ajuda]Comando bugado - Shadoww5 - 29.06.2011

PHP код:
if(strcmp(cmd"/apreendercarro"true) == 0)
{
    
tmp strtok(cmdtextidx);
    if(!
strlen(tmp)) return SendClientMessage(playeridCOLOR_GRAD2"USO: /apreendercarro [carid]");
    if(
IsAGang(playerid)) return SendClientMessage(playeridCOLOR_RED"[Erro] Vocк nгo estб autorizado a usar este comando.");
    new 
carid strval(tmp);
    
VehicleInfo[carid][vPRFLock] = 1;
    new 
engine,lights,alarm,doors,bonnet,boot,objective;
    
GetVehicleParamsEx(carid,engine,lights,alarm,doors,bonnet,boot,objective);
    
SetVehicleParamsEx(carid,0,lights,alarm,doors,bonnet,boot,objective);
    
SendClientMessage(playeridCOLOR_WHITE"[Info] Veнculo apreendido.");
    return 
1;




Re: [Ajuda]Comando bugado - willian Franco - 29.06.2011

blz agora o comando /liberarcarro nao pega mais tb

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 - Shadoww5 - 29.06.2011

PHP код:
if(strcmp(cmd"/liberarcarro"true) == 0)
{
    
tmp strtok(cmdtextidx);
    if(!
strlen(tmp)) return SendClientMessage(playeridCOLOR_GRAD2"USO: /liberarcarro [carid]");
    if(
IsAGang(playerid)) return SendClientMessage(playeridCOLOR_RED"[Erro] Vocк nгo estб autorizado a usar este comando.");
    new 
carid strval(tmp);
    new 
engine,lights,alarm,doors,bonnet,boot,objective;
    
GetVehicleParamsEx(carid,engine,lights,alarm,doors,bonnet,boot,objective);
    
SetVehicleParamsEx(carid,1,lights,alarm,doors,bonnet,boot,objective);
    
VehicleInfo[carid][vPRFLock] = 0;
    
SendClientMessage(playeridCOLOR_WHITE"[Info] Veнculo liberado.");
    return 
1;