Added default restrictions, added market options in the menu

This commit is contained in:
Greyscale
2009-04-14 01:29:24 +02:00
parent 0d5b805387
commit 44b0e776f2
6 changed files with 559 additions and 438 deletions

View File

@ -123,6 +123,18 @@ bool:ConfigOptionToBool(const String:option[])
return false;
}
BoolToConfigOption(bool:bOption, String:option[], maxlen)
{
if (bOption)
{
strcopy(option, maxlen, "yes");
}
else
{
strcopy(option, maxlen, "no");
}
}
FindClientDXLevel(client)
{
if (IsFakeClient(client))