27.09.2018, 12:04
Quote:
Probably the "OnGameModeInit" isn't correctly hooked on one of your includes.
Can you show what includes are you using? |
PHP Code:
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#include <zcmd>
#include <sscanf2>
#include <streamer>
#define weapons 4670
new str[1000];
//#if defined FILTERSCRIPT
//#endif
main()
{
print("\n----------------------------------");
print(" Welcome To My Chasing Server");
print("----------------------------------\n");
}
#pragma tabsize 0
public OnGameModeInit(playerid, classid)
{
// Don't use these lines if it's a filterscript
ShowPlayerMarkers(1);
SetGameModeText("XpoZzA's Server");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}
public OnGameModeExit()
{
return 1;
}