08.11.2014, 06:43
INTRODUCTION :
As we all know that its simple and easy but There are many Newbie who don't know how to Compile a Map So Here is my Tutorial For them.
I got many messages on forum / Skype about " How can i Compile Map ?". I can't tell Seperatly to everyone , That's why am Posting my thread for them.
I got many messages on forum / Skype about " How can i Compile Map ?". I can't tell Seperatly to everyone , That's why am Posting my thread for them.
CODES :
Код:
// Map Compiling Method
//#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print("Your Map Name Should be Here. if you want!");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
main()
{
print("\n----------------------------------");
print("Your Map Name Should be Here. if you want!");
print("----------------------------------\n");
}
#endif
#pragma tabsize 0
public OnGameModeInit()
{
//Post Your CreatObjects(000,0,000,00); / CreateDynamicObject(000,0,000,00); Here.
return 1;
}
public OnPlayerConnect(playerid)
{
//iF You have any RemoveBuildingForPlayer(000,0,000,00); Then Post it Here
return 1;
}
GooD LucK


