[Ajuda] Comando /comprarcarro nгo funciona
#1

Olб pessoal !

Estou com um probleminha neste cуdigo ! Quando digito o comando /comprarcarro diz que esse comando nгo existe.

Aqui estб o cуdigo :

Quote:

if(strcmp(cmdtext, "/comprarcarro", true) == 0)
{
new VehicleID;
VehicleID = GetPlayerVehicleID(playerid);
new pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
for(new carro = 0; carro < MAX_CARROS; carro++)
{
format(string, sizeof(string), "carro%d.ini", carro);
if(dini_Exists(string))
{
if(dini_Int(file, "Carro") == 1)
{
SendClientMessage(playerid, Vermelho, "Vocк estб bloqueado para comprar veнculos.");
return 1;
}
if(strcmp(dini_Get(string, "Dono"), "Nenhum", false) == 1)
{
RemovePlayerFromVehicle(playerid);
}
else
{
if(IsPlayerInAnyVehicle(playerid) && GetPlayerVehicleSeat(playerid) == 0 && VehicleID == dini_Int(string, "Id"))
{
if(GetPlayerGrana(playerid) >= dini_Int(string, "Preco"))
{
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
dini_IntSet(string, "TDono", 1);
dini_Set(string, "Dono", aname);
SendClientMessage(playerid, Azul, "(INFO) Veiculo comprado com sucesso!");
SendClientMessage(playerid, Azul, "(INFO) Para ver os comandos do veiculo, use: /meucarro");
dini_IntSet(file,"Carro",1);
GivePlayerGrana(playerid, -dini_Int(string, "Preco"));
return 1;
} else {
SendClientMessage(playerid, Vermelho, "(ERRO) Vocк nгo tem dinheiro suficiente!");
return 1;
}
}
}
}
}
}

Alguйm pode me dar uma forзa ?
Reply


Messages In This Thread
Comando /comprarcarro nгo funciona - by CleytonTrac - 01.11.2013, 22:54
Re: Comando /comprarcarro nгo funciona - by iDreak - 01.11.2013, 22:58
Re: Comando /comprarcarro nгo funciona - by CleytonTrac - 01.11.2013, 23:06
Re: Comando /comprarcarro nгo funciona - by XxFaTaLxX - 01.11.2013, 23:15
Re: Comando /comprarcarro nгo funciona - by Ph0ton - 01.11.2013, 23:19
Re: Comando /comprarcarro nгo funciona - by CleytonTrac - 02.11.2013, 09:24
Re: Comando /comprarcarro nгo funciona - by CleytonTrac - 02.11.2013, 09:34

Forum Jump:


Users browsing this thread: 1 Guest(s)