09.05.2012, 01:50
1. Are you using the correct version of the streamer?
2. Are you using the plugin on server.cfg?
3. Dont use any object editor. Download 0.3e server package. Add these lines under OnGameModeInIt callback of the grandlarc game mode.
A command based on ZCMD to teleport to the Objects.
Can you see the objects clearly on grandlarc game mode [SA-MP 0.3e]? Let me know what do you get.
2. Are you using the plugin on server.cfg?
3. Dont use any object editor. Download 0.3e server package. Add these lines under OnGameModeInIt callback of the grandlarc game mode.
pawn Код:
Plane = CreateObject(1683,-2080.3000,248,58,0.000,270.000,270.0000); //Jumbo plane
Pole = CreateObject(17024,-2082.5,238.699,48.2999,0.000,0.000,0.0000); //Launcher(Pole)
pawn Код:
CMD:takemethere(playerid, params[])
{
SetPlayerPos(playerid, -2080.3000, 248, 58);
return 1;
}