28.11.2012, 19:07
This is kinda odd, but I'm sure there's an explanation to it. Hmm, run this code and see what happens, I created the LoadMap function before using it:
pawn Код:
#include <a_samp>
new
g_CurMap = 1;
stock LoadMap(mapID)
{
printf("mapID: %i", mapID);
}
public OnFilterScriptInit()
{
LoadMap(g_CurMap);
return 1;
}