15.08.2015, 14:10
^
I already saw this video :
https://www.youtube.com/watch?v=PFWn...#lq-lq2-hq-vhq
I couldn't really understand it.
I wanna use the co-ordinates from this :
I wanna use the above co-oridantes below.
I already saw this video :
https://www.youtube.com/watch?v=PFWn...#lq-lq2-hq-vhq
I couldn't really understand it.
I wanna use the co-ordinates from this :
pawn Код:
public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("GameMode Test");
AddPlayerClass(230,1505.0670,-892.1097,58.7301,262.0000,0,0,0,0,0,0); // GuySpawn
AddPlayerClass(23,1443.7703,-812.3202,74.2601,194.7188,0,0,0,0,0,0); // GuySpawn2
AddStaticVehicle(402,1465.8987,-861.0427,55.0661,74.3095,30,30); // Buffalo
return 1;
}
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1505.0670,-892.1097,58.7301);
SetPlayerFacingAngle(playerid,262.0000);
SetPlayerCameraPos(playerid,1505.0670,-892.1097,58.7301);
SetPlayerCameraLookAt(playerid, 1505.0670,-892.1097,58.7301);
return 1;
}