[AJUDA] /cv bugado
#1

Galera meu gm й o Brasil The Games Editado pouquissimo por mim , mais ae eu coloquei uns comandos que nгo me lembro e o /cv comeзou a dar falhas , tirei todos os FilterScripts, reiniciei o server tentei dar /cv e nada entгo vim aqui postar ver se vocкs me ajudam, Obrigado!

Link do Gamemode: http://www.megaupload.com/?d=V36WQ64P

Se conseguirem por favor passem pra mim por outro link , Muito Obrigado!
Reply
#2

poste o codigo ai
assim para download poucos irao ajudar
Reply
#3

veja o outro topico que ele criou... esse /cv bugava cmg qd eu usava host barato kkkkkkkkkkk
acontecia de alguns dialog n responder tb
ou seja o cv n й bugado pode ser seu host q esteja fraco pro script
#eu postei o BTG '-'
Reply
#4

cv = criar veiculo?

se for tente:

pawn Code:
if(strcmp(cmdtext,"/cv",true) == 0)
{
    tmp = strtok(cmdtext,idx);
    if(!strlen(tmp)) return SendClientMessage(playerid,0xFFFFFFAA,"Use /CV [Id do Veiculo][Cor 1][Cor 2]");
    new veiculoid = strval(tmp);
    if(veiculoid < 411 || veiculoid > 600) return SendClientMessage(playerid,0xFFFFFFAA,"ID Mнnimo 411 - Mбximo 600");
    tmp = strtok(cmdtext,idx);
    if(!strlen(tmp)) return SendClientMessage(playerid,0xFFFFFFAA,"Use /CV [Id do Veiculo][Cor 1][Cor 2]");
    new cor1 = strval(tmp);
    if(cor1 < 0 || cor1 > 126) return SendClientMessage(playerid,0xFFFFFFAA,"Cor Mнnima 0 - Mбxima 126");
    tmp = strtok(cmdtext,idx);
    if(!strlen(tmp)) return SendClientMessage(playerid,0xFFFFFFAA,"Use /CV [Id do Veiculo][Cor 1][Cor 2]");
    new cor2 = strval(tmp);
    if(cor2 < 0 || cor2 > 126) return SendClientMessage(playerid,0xFFFFFFAA,"Cor Mнnima 0 - Mбxima 126");
    SendClientMessage(playerid,0xFFFFFFAA,"Veiculo Criado Com Sucesso!");
    new Float:x,Float:y,Float:z;
    GetPlayerPos(playerid,x,y,z,);
    AddStaticVehicleEx(veiculoid,x,y+1,z,0.0,cor1,cor2,-1);
    return 1;
}
Reply
#5

Code:
if(strcmp(cmd, "/cv", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
new plid;
//new carro;
new Float:X,Float:Y,Float:Z,Float:Angle;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "(ERRO) Digite: /cv [id-do-caro]");
return 1;
}
plid = strval(tmp);
if(plid==501 || plid==501 || plid==501 || plid==501 || plid==501 || plid==501 || plid==501 || plid==501 || plid==501 || plid==501|| plid==501 ){
SendClientMessage(playerid, Vermelho, "[SERVER] ID de carro Proibido!");
return 1;
}
if(IsPlayerConnected(playerid)){
if(plid >= 400 && plid <= 611){
GetPlayerPos(playerid,X,Y,Z);
GetPlayerFacingAngle(playerid,Angle);
new carro = CreateVehicle(plid, X, Y, Z, Angle, -1, -1, 120000);
PutPlayerInVehicle(playerid,carro,0);
if(GetPlayerInterior(playerid))
LinkVehicleToInterior(carro,GetPlayerInterior(playerid));
SetVehicleVirtualWorld(carro,GetPlayerVirtualWorld(playerid));
format(string, sizeof(string), "[INFO] Vocк criou o veнculo de id: %d", plid);
SendClientMessage(playerid, outraadm, string);
return 1;
}else{
SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido || ID's = 400-611");
return 1;
}
}
}
}
Troca esse comando pelo teu antigo e tenta '-'
Reply
#6

Galera ja arrumei, era um cmd de um fs que estava interrompendo o /cv do GM
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)