About spawning a man.
#1

How do i, when someone enters the server he will spawn in a car.
Not like an existing car, but when he enters a car will be created and he will spawn inside the car at location : X,Y,Z etc... How to?
Reply
#2

put this on OnPlayerConnect(...) callback:
pawn Код:
{
     new veh;
     veh = CreateVehicle(/*you put stuff in here*/);
     PutPlayerInVehicle(playerid,veh,0);
     SetCameraBehindPlayer(playerid);
}
Reply
#3

Thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)