- 0
Problemă
-
Similar Content
-
Recently Browsing 0 members
- No registered users viewing this page.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.
Question
Gawitkkk
- Problema intalnita (descriere): Nu este o problemă, ci o întrebare.
În prezent, sistemul meu de dealership (comanda /buyvehicle) funcționeaza pe DIALOG_STYLE_LIST (poza).
Și aș vrea să îl mut pe DIALOG_STYLE_INPUT, și aș vrea să arate ceva de genu(poza).
- Ero(area / rile) / warning-(ul / urile): -
- Liniile de cod / sursa / script-ul(obligatoriu):
Comanda actuala de cumpărare a mașinii din dealership:
CMD:buyvehicle(playerid, params[]) { if(gPlayerLogged[playerid] == 0) return SendClientMessage(playerid, COLOR_LIGHTRED, "You need to login first."); if(IsPlayerInAnyVehicle(playerid)) return SCM(playerid,COLOR_WHITE,"{FFB870}Please get out of the car."); if(IsPlayerInRangeOfPoint(playerid, 7.0, 321.6544,-1521.1111,36.0391)) { if(PlayerInfo[playerid][pLevel] < 3) return SendClientMessage(playerid, COLOR_WHITE, "{FFB870}You need to be level 3 to buy a vehicle."); ShowPlayerDialog(playerid,DIALOG_CARBUY, DIALOG_STYLE_LIST, "Vehicle:", "Low VehiclesnMedium VehiclenSport VehiclesnBikenAir vehiclesnSpecial Vehicles", "Select", "Close"); } else return SCM(playerid,COLOR_WHITE,"{3850F1}You have to be at a vehicle dealership."); return 1; }Edited by Gawitkkk16 answers to this question
Recommended Posts