Denizen/0.7/Replaceables: Difference between revisions

From Citizens Wiki

< Denizen‎ | 0.7

m (AgentKid moved page Denizen/Replaceables to Denizen/0.7/Replaceables without leaving a redirect)
No edit summary
 
Line 1: Line 1:
For more up-to-date information and full details on specific features (individual commands or tags, for example), check the [https://one.denizenscript.com/denizen/cmds/ Meta Documentation].
If you want a full tutorial to help get you set up, check out the [https://one.denizenscript.com/denizen/cmds/denizen/vids Tutorial Videos] on youtube or the [https://guide.denizenscript.com/ Beginner's Guide] text website.
If you need quick help, visit our [https://discord.gg/Q6pZGSR Discord group].
<br><br><br>
<span style="font-family:natalya-alternate-one; font-size:300%; margin-right:-7px; margin-left:-10px;">This wiki is outdated, please view the tutorial videos/guide, meta documentation, or Discord group (all linked above) for up-to-date information!</span>
<s>
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
Replaceable data tags can be used to dynamically put flags and values inside texts and commands.
Replaceable data tags can be used to dynamically put flags and values inside texts and commands.
Line 139: Line 151:


[[Category:Denizen 0.7]]
[[Category:Denizen 0.7]]
</s>

Latest revision as of 16:12, 24 March 2020

For more up-to-date information and full details on specific features (individual commands or tags, for example), check the Meta Documentation.

If you want a full tutorial to help get you set up, check out the Tutorial Videos on youtube or the Beginner's Guide text website.

If you need quick help, visit our Discord group.




This wiki is outdated, please view the tutorial videos/guide, meta documentation, or Discord group (all linked above) for up-to-date information!

Replaceable data tags can be used to dynamically put flags and values inside texts and commands.

Flag Replaceables

<FLAG.PLAYER:Name:fallback> or <FLAG.P:Name:fallback>

The value of a FLAG set on the Player, with the optional 'fallback' being the value used if the FLAG isn't found.

<FLAG.DENIZEN:Name:fallback> or <FLAG.D:Name:fallback>

The value of a FLAG set on the Denizen, with the optional 'fallback' being the value used if the FLAG isn't found.

<FLAG.GLOBAL:Name:fallback> or <FLAG.G:Name:fallback>

The value of a FLAG set globally, with the optional 'fallback' being the value used if the FLAG isn't found.

Chat Input Replaceable

<*>

Contains the value of the Chat Trigger used by the Player in the Current Step. Unlike other replaceables, it can currently only be used in Speech commands and the FLAG command.

Player Replaceables

<DISPLAYNAME>

The display name of the Player interacting with the Denizen, i.e. the name including colors.

<HEALTH> or <PLAYER.HEALTH>

The Player's health, from 0 to 20.

<PLAYER> or <PLAYER.NAME>

The name of the Player.

<PLAYER.BOOTS>

The MATERIAL of the boots that the Player is wearing. Is 'FALSE' if the Player is not wearing any.

<PLAYER.CHESTPLATE>

The MATERIAL of the chestplate that the Player is wearing. Is 'FALSE' if the Player is not wearing any.

<PLAYER.EXP>

The Player's total experience.

<PLAYER.EXP_TO_NEXT_LEVEL>

The experience the Player must gain to reach the next level.

<PLAYER.FOOD_LEVEL>

The Player's food level, from 0 to 20.

<PLAYER.HELM>

The MATERIAL of the helm that the Player is wearing. Is 'FALSE' if the Player is not wearing any.

<PLAYER.ITEM_IN_HAND.ID>

The ID of the item in the Player's hand. Is '0' if the Player's hand is empty.

<PLAYER.ITEM_IN_HAND.MATERIAL>

The MATERIAL of the item in the Player's hand. Is 'AIR' if the Player's hand is empty.

<PLAYER.ITEM_IN_HAND.NAME>

The name of the item in the Player's hand. Doesn't work at the moment.

<PLAYER.ITEM_IN_HAND.QTY>

The quantity of the item in the Player's hand.

<PLAYER.KILLER>

The name of the last killer of this Player. Doesn't work at the moment.

<PLAYER.LEGGINGS>

The MATERIAL of the leggings that the Player is wearing. Is 'FALSE' if the Player is not wearing any.

<PLAYER.MONEY>

The amount of money that the Player has. This replaceable will only work if you have Vault installed and a compatible permissions/economy plugin.

<PLAYER.WORLD>

The name of the world the Player is in.

Denizen Replaceables

<NPC> or <DENIZEN.NAME>

The name of the Denizen.

<NPCID> or <DENIZEN.NPCID>

The ID of the Denizen.

<WORLD>

The name of the world the Denizen is in.