note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
SetServerRuleFlags
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
warning
This function has not yet been implemented.
Description
Sets the flags of a server rule.
Parameters
Name | Description |
---|---|
const rule[] | The server rule name. |
E_SERVER_RULE_FLAGS:flags | The flags to set. |
Returns
Returns true if the function executed successfully, otherwise false.
Examples
public OnGameModeInit()
{
AddServerRule("discord", "discord.gg/samp");
SetServerRuleFlags("discord", 1);
return 1;
}
Related Functions
- AddServerRule: Add a server rule.
- RemoveServerRule: Remove the server rule.
- IsValidServerRule: Checks if the given server rule is valid.
- GetServerRuleFlags: Gets the flags of a server rule.