Vanilla Flags
UCR comes with some hard-coded "Vanilla Custom Flags" and they are the following ones:
CustomPermissions
The CustomPermissions flag allows the player that has the Custom Role to have additional EXILED permissions.
Example of usage:
custom_flags:
- CustomPermissions:
permissions: "ucr.spawn, ucr.list"Note: you can also put a single permission
Note: the * char is NOT supported here!
CustomScpAnnouncer
The CustomScpAnnouncer flag will force the game to make an announcement about the termination of this Custom Role, whether is an SCP or not.
It requires a param named name where you have to put the SCP number.
Example of usage:
custom_flags:
- CustomScpAnnouncer:
name: '250'This will make the game say "SCP-250".
DoNotTriggerScp096
The DoNotTriggerScp096 Custom Flag will simply allow the Custom Role to directly watch SCP-096 without triggering the rage.
DoNotTriggerTeslaGates
The DoNotTriggerTeslaGates will disable the Tesla Gate activation for this Custom Role.
Note: if there's another person that CAN activate the Tesla Gate then it WILL activate, no matter what.
DropItemOnDeath
The DropItemOnDeath allows you to make the Custom Role drop a specific item when they die.
It requires a param named item where you have to put the wanted ItemType.
Example of usage:
custom_flags:
- DropItemOnDeath:
item: AdrenalineDropNothingOnDeath
The DropNothingOnDeath will destroy every item dropped by the Custom Role when they die.
ItemBan
The ItemBan Custom Flag will prevent the Custom Role from picking up a specific Item.
It requires a param named item_type where you have to put the wanted ItemType.
Example of usage:
custom_flags:
- ItemBan:
item_type: CoinNote: if you need to ban more than a single item you can add as many ItemBan custom flags as you want!
custom_flags:
- ItemBan:
item_type: Coin
- ItemBan:
item_type: RadioLifeStealer
The LifeStealer Custom Flag will allow the Custom Role to gain a certain number of HP when they deal damage to other players.
It requires a param named percentage who's an int32 and it represent the percentage of the damage that will be transferred to the Custom Role.
For example, if percentage: 50 and the Custom Role deals a 100HP damage they will be healed with 50HP.
Example of usage:
custom_flags:
- LifeStealer:
percentage: 75NotAffectedByAppearance
The NotAffectedByAppearance is a simple Custom Flag that will prevent the user from seeing the "fake" appearance of every other Custom Role and they instead will see their real role.
PacifismUntilDamage
The PacifismUntilDamage is a simple Custom Flag that will prevent the user from being damaged as long as he doesn't damage anyone.
SilentAnnouncer
The SilentAnnouncer Custom Flag will prevent the game from making the SCP termination announcement for that Custom Role.
SilentWalker
The SilentWalker Custom Flag will prevent the Custom Role from making walking noises.
TutorialRagdoll
The TutorialRagdoll Custom Flag will spawn a Tutorial role ragdoll when they die instead of their old role ragdoll.
ColorfulNickname
The ColorfulNickname will change the color of the nickname of the Custom Role's player(s) inside the player infobox.
It requires a param named color which must be one of these colors: InfoArea Colors
ColorfulRaName
The ColorfulRaName will change the color of the nickname of the Custom Role's player(s) inside the RemoteAdmin player list.
It requires a param named color which can be any hex (like #ff00ff).
FullCandyBag
The FullCandyBag will spawn (when the Custom Role spawns) a Candy Bag in the player's inventory with inside how many candies you want.
It requires a param named candies who's a List of CandyKindIDs .
Example:
custom_flags:
- FullCandyBag:
candies:
- Rainbow
- Yellow
- BlueLast updated