SA-MP Forums Archive
What's stopping me? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: What's stopping me? (/showthread.php?tid=340913)



fixed - WarriorEd22 - 09.05.2012

fixed


Re: What's stopping me? - Ballu Miaa - 09.05.2012

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.
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)
A command based on ZCMD to teleport to the Objects.
pawn Код:
CMD:takemethere(playerid, params[])
    {
        SetPlayerPos(playerid, -2080.3000, 248, 58);
        return 1;
    }
Can you see the objects clearly on grandlarc game mode [SA-MP 0.3e]? Let me know what do you get.


Re: What's stopping me? - ReneG - 09.05.2012

Quote:
Originally Posted by Ballu Miaa
Посмотреть сообщение
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.
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)
A command based on ZCMD to teleport to the Objects.
pawn Код:
CMD:takemethere(playerid, params[])
    {
        SetPlayerPos(playerid, -2080.3000, 248, 58);
        return 1;
    }
Can you see the objects clearly on grandlarc game mode [SA-MP 0.3e]? Let me know what do you get.
That's not what he's looking for.



@OP

If it's a problem with your gamemode try debugging your code.


Re: What's stopping me? - Ballu Miaa - 09.05.2012

I know hes not looking for that. But hes not able to see the objects. So thats just a method to see if the objects show up for him or not.


Re: What's stopping me? - WarriorEd22 - 09.05.2012

Thanks to both of you guys but I have this resolved now. As a scripter, I should have known this. And if you're somebody that's having the same problem, I would check this out: https://sampwiki.blast.hk/wiki/Limits

I had over 1000 objects. Silly me. Both of you guys have been +rep for trying to help. God bless you guys!