19.08.2012, 16:38
Essentially you would just make a regular filterscript and paste the RemoveBuildingForPlayer script on it, compile it and you should be good.
pawn Код:
#include <a_samp>
#undef MAX_PLAYERS
#define MAX_PLAYERS 700 //define the max. players for your server here.
public OnFilterScriptInit() {
print("RemoveBuilding Filterscript Initiated");
}
public OnFilterScriptExit() {
print("RemoveBuilding Filterscript Stopped");
}
public OnPlayerConnect(playerid)
{
// Paste your RemoveBuildingForPlayer here
}

