How to install map my server?
#1

How to install map my server?
Filterscript or gamemode?

Help Please.
Reply
#2

It's okay in a filterscript, just put that code under the OnFilterScriptInit public, and that's all. Also don't use CreateObject too much, there's a limit of 1000 objects, if you exceed this limit the objects will not be shown, so use CreateDynamicObject, there doesn't exist a limit.
Reply
#3

you need to put
PHP код:
 RemoveBuildingForPlayer 
at
Код:
OnPlayerConnect
Reply
#4

pawn Код:
public OnPlayerConnect(playerid)
{
    Put the "RemoveBuildingForPlayer" here.
    return 1;
}

public OnGameModeInit()
{
    Put the "CreateObject" or "CreateDynamicObject" code here.
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)