47 lines
1.1 KiB
SourcePawn
47 lines
1.1 KiB
SourcePawn
#if defined _smlib_concommands_included
|
|
#endinput
|
|
#endif
|
|
#define _smlib_concommands_included
|
|
|
|
#include <sourcemod>
|
|
#include <smlib/clients>
|
|
|
|
/**
|
|
* Checks if a ConCommand has one or more flags set.
|
|
*
|
|
* @param command ConCommand name.
|
|
* @param flags Flags to check.
|
|
* @return True if flags are set, false otherwise.
|
|
*/
|
|
stock bool ConCommand_HasFlags(const char[] command, const int flags)
|
|
{
|
|
return view_as<bool>(GetCommandFlags(command) & flags);
|
|
}
|
|
|
|
/**
|
|
* Adds one or more flags to a ConCommand.
|
|
*
|
|
* @param command ConCommand name.
|
|
* @param flags Flags to add.
|
|
* @noreturn
|
|
*/
|
|
stock void ConCommand_AddFlags(const char[] command, const int flags)
|
|
{
|
|
int newFlags = GetCommandFlags(command);
|
|
newFlags |= flags;
|
|
SetCommandFlags(command, newFlags);
|
|
}
|
|
|
|
/**
|
|
* Removes one ore more flags from a ConCommand.
|
|
*
|
|
* @param command ConCommand name.
|
|
* @param flags Flags to remove
|
|
* @noreturn
|
|
*/
|
|
stock void ConCommand_RemoveFlags(const char[] command, const int flags)
|
|
{
|
|
int newFlags = GetCommandFlags(command);
|
|
newFlags &= ~flags;
|
|
SetCommandFlags(command, newFlags);
|
|
}
|