پرش به مطلب اصلی

GetServerRuleFlags

هشدار

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

هشدار

This function has not yet been implemented.

Description

Gets the flags of a server rule.

Return Values

Returns the server rule flags.

Examples

public OnGameModeInit()
{
AddServerRule("discord", "discord.gg/samp");
SetServerRuleFlags("discord", 1);

new E_SERVER_RULE_FLAGS:flags = GetServerRuleFlags("discord");
printf("Flags: %d", _:flags); // Flags: 1
return 1;
}