15.11.2012, 07:56
Boom Galera To com um sistema de carro proprio aqui ; Só que to com um probleminha ;
Quando eu uso /comprarcarro Aperece a MSG : Voçê não tem dinheiro Suficiente ;s
Eu setGrana para o Player & mesmo assim Continua;z
Alguem Pode Me Ajudar ?
//================================================== ===========================
Quando eu uso /comprarcarro Aperece a MSG : Voçê não tem dinheiro Suficiente ;s
Eu setGrana para o Player & mesmo assim Continua;z
Alguem Pode Me Ajudar ?
//================================================== ===========================
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), "car%d.ini", carro); if(strcmp(dini_Get(string, "Dono"), pname, true) == 0){ SendClientMessage(playerid, Vermelho, "Você já tem um carro"); return 1; } 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, Violeta, "(INFO) Veiculo comprado com sucesso!"); SendClientMessage(playerid, Vermelho, "(INFO) Para ver os comandos do veiculo, use: /meucarro"); GivePlayerGrana(playerid, -dini_Int(string, "Preco")); TogglePlayerControllable(playerid, 1); return 1; } else { SendClientMessage(playerid, Vermelho, "(ERRO) Você não tem dinheiro suficiente!"); return 1; } } } } |