Why Car Menu wont work?? :(
#1

Guys i copied the vehicle menu from Rajat_pawar's 0.3x Model Preveiw Script.My script compiling fine,showing me the menu but it wont spawn car.Here is the code

pawn Код:
public OnPlayerModelSelection(playerid, response, listid, modelid)
{
            if(listid == alist)
            {
            if(response)
            {
            if(modelid==411)
            {
            ShowModelSelectionMenu(playerid,vlist,"Car menu.");
            return 1;
            }
            }
            if(listid==vlist)
            {
            if(response)
            {
            new Float:x, Float:y, Float:z;
            GetPlayerPos(playerid, x, y, z);
            CreateVehicle(modelid,x+2,y+2,z+2,0,0,0,0);
            SendClientMessage(playerid,COLOR_ORANGE,"You have spawned the required car.");
            selectingcar[playerid]=0;
            }
            }
            }
            return 1;
}
Reply
#2

BUMP!! ? ? Anyone please?
Reply
#3

pawn Код:
public OnPlayerModelSelection(playerid, response, listid, modelid)
{
            if(listid == alist)
            {
                if(response)
                {
                    if(modelid==411)
                    {
                    ShowModelSelectionMenu(playerid,vlist,"Car menu.");
                    return 1;
                    }
                }
            }
            if(listid==vlist)
            {
                if(response)
                {
                    new Float:x, Float:y, Float:z;
                    GetPlayerPos(playerid, x, y, z);
                    CreateVehicle(modelid, x+2, y+2, z+2, 0, 0, 0, 0);
                    SendClientMessage(playerid,COLOR_ORANGE,"You have spawned the required car.");
                    selectingcar[playerid]=0;
                }
            }
            return 1;
}
You had an extra brace there.. Which is why indention is so damn useful.
Reply
#4

one more problem Rajt

I made that when players select tha car,the car spawns and the player is put inisde it.All codes compiling fine, but it wotn work.Below is the code

pawn Код:
public OnPlayerModelSelection(playerid, response, listid, modelid)
{
            if(listid == alist)
            {
                if(response)
                {
                    if(modelid==411)
                    {
                    ShowModelSelectionMenu(playerid,vlist,"Car menu.");
                    return 1;
                    }
                }
            }
            if(listid==vlist)
            {
                if(response)
                {
                    if(SpawnedVehicles[playerid] != 0) DestroyVehicle(SpawnedVehicles[playerid]);
                    new Float:x, Float:y, Float:z, Float:ROT;
                    GetPlayerPos(playerid, x, y, z);
                    GetPlayerFacingAngle (playerid,ROT);
                    SpawnedVehicles[playerid] = CreateVehicle(modelid,x,y,z,ROT,-1,-1,60);
                    PutPlayerInVehicle(playerid,SpawnedVehicles[playerid],0);
                    selectingcar[playerid]=0;

                }
            }
            return 1;
}
Reply
#5

pawn Код:
if(SpawnedVehicles[playerid] != 0) return DestroyVehicle(SpawnedVehicles[playerid]);
else{
                    new Float:x, Float:y, Float:z, Float:ROT;
                    GetPlayerPos(playerid, x, y, z);
                    GetPlayerFacingAngle (playerid,ROT);
                    SpawnedVehicles[playerid] = CreateVehicle(modelid,x,y,z,ROT,-1,-1,60);
                    PutPlayerInVehicle(playerid,SpawnedVehicles[playerid],0);
                    selectingcar[playerid]=0;
 }
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)