View Single Post
Author Message
SirHaxalot
Junior Member
Join Date: Jul 2009
Old 11-08-2009 , 13:26   Edit servertags problem
Reply With Quote #1

Hi!

I'm trying to make a simple plugins that changes my servers Tags, mostly to get rid of the increased_maxplayers tag. My slots are hidden so that admins can connect without any problems.

Anyway, here is the code:
Code:
#include <sourcemod>
#include <console>

public Plugin:myinfo = 
{
    name = "Fixtags",
    author = "Sir.Haxalot",
    description = "Private plugins for modifying server tags",
    version = "1.0",
    url = "http://saxservers.net/"
};

public OnPluginStart()
{
    AddServerTag("saxservers");
    RemoveServerTag("increased_maxplayers");
    PrintToServer("[SM]Tags fixed!");
}
SirHaxalot is offline