Added default restrictions, added market options in the menu
This commit is contained in:
@ -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))
|
||||
|
Reference in New Issue
Block a user