07.02.2019, 15:47
Код:
if(dialogid==MENUCARROS2){
if(response==1){
new num;
new string[5];
format(string,sizeof(string),"%d",inputtext);
num=strval(string);
if(num == strval(string)){
GetPlayerPos(playerid,x,y,z);
CreateVehicle(num, x+2,y+2,z, 0, 0, 0, 6000);
}
}
}
Код:
if(dialogid==MENUCARROS2){
if(response==1){
new num;
num=strval(inputtext);
if(num == strval(inputtext)){
GetPlayerPos(playerid,x,y,z);
CreateVehicle(num, x+2,y+2,z, 0, 0, 0, 6000);
}
}
}


