Quote:
Originally Posted by RedFusion
So you are asking about entering a trailer?
You must assign an ID to the trailer.
pawn Код:
OnGameModeInit() { trailer = CreateVehicle(cords and stuff..)
}
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[]) { if (strcmp("/gototrailer", cmdtext, true, 10) == 0) { PutPlayerInVehicle(playerid,trailer,0); return 1; } //Other cmds here return 0; }
I think this would work.
|
Spot on, big help. One more problem, is there no way to get the trailer to drive at all? I need to move my trailer to a position I want it to respawn then /save for the co ordinates to make a CreateVehicle for it, cheers.