Can anyone help me?
#1

When some new player login into my server, the tutorial text doesnt go away. And how do i add script for vehicle storage? the vehicle should spawn where it was last parked.
Reply
#2

So the textdraw does not disappear when tutorial is over? add TextdrawHideForPlayer(playerid, textdraw); And for the vehicle there should be SetVehicleParamsForPlayer [see here]
Reply
#3

Ups sorry the vehicle params are wrong I dont really know how to save new position try making new Float ,Float:y, Float:z; and for ceach player each and when they park the vehicle save x y z and delete and create the vehicle at x y z
Reply
#4

Try testing this:
pawn Код:
#include <a_samp>

new Float:Vx[MAX_VEHICLES], Float:Vy[MAX_VEHICLES], Float:Vz[MAX_VEHICLES];

new Vehicle[MAX_VEHICLES];

public OnFilterScriptInit()
{
    Vehicle[0] = CreateVehicle(555, 0.0, 0.0, 0.0, 0.0, 0, 1, 60);
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/parked", cmdtext, true, 10) == 0)
    {
        new VID;
        VID = GetPlayerVehicleID(playerid);
        DestroyVehicle(VID);
        Vehicle[VID] = CreateVehicle(555, Vx[VID], Vy[VID], Vz[VID], 0.0, 0, 1, 60);
        return 1;
    }
    return 0;
}
Reply
#5

Quote:
Originally Posted by vakhtang
Посмотреть сообщение
Try testing this:
pawn Код:
#include <a_samp>

new Float:Vx[MAX_VEHICLES], Float:Vy[MAX_VEHICLES], Float:Vz[MAX_VEHICLES];

new Vehicle[MAX_VEHICLES];

public OnFilterScriptInit()
{
    Vehicle[0] = CreateVehicle(555, 0.0, 0.0, 0.0, 0.0, 0, 1, 60);
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/parked", cmdtext, true, 10) == 0)
    {
        new VID;
        VID = GetPlayerVehicleID(playerid);
        DestroyVehicle(VID);
        Vehicle[VID] = CreateVehicle(555, Vx[VID], Vy[VID], Vz[VID], 0.0, 0, 1, 60);
        return 1;
    }
    return 0;
}
i need a script that will display menu of my vehicles when i type vstorage. and the vehicle can only be spawned on last PARK position. and also can be despawned. thanks for replying everyone. im really noob guys. so can u create a text box and the script you made up here?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)