SA-MP Forums Archive
Adding Maps not working. - 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: Adding Maps not working. (/showthread.php?tid=379613)



Adding Maps not working. - MrPlatinum - 22.09.2012

This is has got to be the most annoying thing ever.

I have followed, tut's, peoples advice and nothing is working.
Im trying to add my map i created in JerneJL's Map editior to the game by filterscript.
And nothing is working/loading, I'll post my script w/o the code below.


#include <a_samp>

#if defined FILTERSCRIPT

public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");

(MY CODE GOES HERE)
return 1;
}
#endif



Re: Adding Maps not working. - clarencecuzz - 22.09.2012

It is recommended you place all objects in your gamemode (Under OnGameModeInit() ) to prevent any interruptions.


Re: Adding Maps not working. - MrPlatinum - 22.09.2012

Because i am using ppc, would that be PPC_OnGameModeInit?


Re: Adding Maps not working. - clarencecuzz - 22.09.2012

I'm guessing so, yes.


Re: Adding Maps not working. - MrPlatinum - 22.09.2012

Okay, now this is were im stumped.

We do i exactly put the code?