16.04.2015, 13:33
Good day to put the map as filterscripts please ??
For answers will be grateful!
Thank you!
For answers will be grateful!
Thank you!
new.pwn
public OnFilterScriptInit()
{
//your map
return 1;
}
server.cfg
filterscripts new
#include <map>
public OnGameModeInit()
{
//
mapload();
return 1;
}
create map.inc file and put
mapload()
{
//// your mapping
}
public OnFilterscriptInit()
{
//objects
}
public OnFilterscriptExit()
{
for(new i=0; i<MAX_OBJECTS; i++)
{
DestroyObject(i);
}
return 1;
}