SA-MP Forums Archive
adding map - 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 map (/showthread.php?tid=491884)



adding map - ziggy - 01.02.2014

How i can put map in server?
I found mechanic garage map and i want to put it
I have codes!
Where to put them?
Thank you


Re: adding map - CallumDaBest - 01.02.2014

Right go to convertffs.com convert it and then open a blank one in pawno delete where it says filterscript here then paste it there save it as .pwn then go into ur server.cfg and put the name u put the .pwn file as then run the server

(Not very sure - sorry if it dont work im still doing that im just good at mapping)


Re: adding map - thegamer355 - 01.02.2014

add then in your gamemode or in a FS
in your GM under:
pawn Код:
public OnGamModeInit()
{
    //map codes here
    return 1;
}
in your FS:
pawn Код:
#define FILTERSCRIPT
#include <streamer>
public OnFilterScriptInit()
{
    //map codes here
    return 1;
}