Posts: 352
Threads: 149
Joined: Nov 2013
Reputation:
0
Welcome to the topic title Do you understand, ask why not show objects .. As gamemode to connect on localhost but shows how objects using Host object does not display shows only removeObject .. .. What could it be?
Posts: 1,942
Threads: 89
Joined: Nov 2010
Reputation:
0
CreateObject is confined to 1000, if you have more than 1000 objects then you have to switch to streamer.
Posts: 937
Threads: 106
Joined: Jan 2010
Reputation:
0
Show us the code that will help further.
Posts: 937
Threads: 106
Joined: Jan 2010
Reputation:
0
Just what's under GameModeInit(Just the Objects that aren't showing.)
Posts: 352
Threads: 149
Joined: Nov 2013
Reputation:
0
}
public OnGameModeInit()
{
SendRconCommand("mapname test");
new versionstr[20];
format(versionstr, sizeof(versionstr), "%s", ServerioVersija);
SetGameModeText(versionstr);
if(GetMaxPlayers() > MAX_PLAYERS)
{
print("GetMaxPlayers > MAX_PLAYERS, padidinkite MAX_PLAYERS skaiciu.");
SendRconCommand("exit");
return 1;
}
mysql_debug(true); // true - Debug'as ijungtas.
mysql_connect(MySQL_HOST, MySQL_USER, MySQL_DATA, MySQL_PASS);
if(mysql_ping() >= 1) print("Prisijungeme prie MySQL sekmingai!");
else SendRconCommand("exit");
for(new pick; pick < MAX_PICKUPS; pick++) DestroyPickup(pick);
EnableStuntBonusForAll(false);
SetNameTagDrawDistance(30);
LimitGlobalChatRadius(20);
AllignMaxPlayers();
DisableInteriorEnterExits();
ManualVehicleEngineAndLights();
ShowPlayerMarkers(0);
LoadSpawns();
EnableLobiai();
CreateMenues();
LoadVehicles();
LoadObject();