Reserved Car?
#1

I've seen this done on a server before, what is basically is, is just a normal car, but when people try to enter it it wont let them, and it sends them a message saying " This Vehicle Is Reserved For %d" or whatever, so its a custom reserved car, anyone know how i could do this?

Thanks
Reply
#2

pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    new Pname[24];
    GetPlayerName(playerid, Pname, 24);
    if(vehicleid == /*The certain vehicle ID you want to restrict*/ && strcmp(Pname, /*Name you want to restrict the car to*/, true) && ispassenger == 0)
    {
        new Float:Pos[3];
        GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
        SetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
    }
    return 1;
}
Reply
#3

Quote:
Originally Posted by [HiC]TheKiller
Посмотреть сообщение
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    new Pname[24];
    GetPlayerName(playerid, Pname, 24);
    if(vehicleid == /*The certain vehicle ID you want to restrict*/ && strcmp(Pname, /*Name you want to restrict the car to*/, true) && ispassenger == 0)
    {
        new Float:Pos[3];
        GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
        SetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
    }
    return 1;
}
thanks! so where should i put this in my script? also do i need to define anything or whatsoever?
Reply
#4

https://sampforum.blast.hk/showthread.php?tid=145661

that should help i guess
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)