Denizen/Commands/Flag: Difference between revisions
SpaceEmotion (talk | contribs) (Added mathematical operations and advanced usage) |
|||
Line 69: | Line 69: | ||
With the new 0.9 Development release you can now check if a flag exists. Just check a flag against null like in the following example: | With the new 0.9 Development release you can now check if a flag exists. Just check a flag against null like in the following example: | ||
<pre>- if <player.flag[flag_to_check]> == null | <pre>- if <player.flag[flag_to_check]> == null narrate 'flag is null!' | ||
else narrate "<player.flag[flag_to_check]>"</pre> | else narrate "<player.flag[flag_to_check]>"</pre> |
Revision as of 22:37, 7 July 2013
Introduction
Flags are variables that can be checked anywhere in a script and in other scripts by using flag replaceable tags or the flagged requirement. A flag can be placed on the player, the NPC or globally. Flags placed on a player only apply to that player, and flags placed on an NPC only apply to that individual NPC based on its ID, so NPCs with the same name have different flags because they have different IDs. However, a global flag applies to the entire server and can easily be read from any script.
Once you set a flag, you can call it back at any time with one of the replaceable tags.
The flag command
Usage
To begin, you need to actually set a flag. You can do this by using
- flag ({player}|npc|global) [name([#])](:action)[:value] (duration:#) |
If a flag's type (player, npc or global) is not specified, the flag is placed on the player by default, and if a value for the flag is not specified, the value is "true" by default.
...Too much for you? Let's slow it down.
The Basics
To start using flags, you must first understand the basics. This means learning the 4 types of flags you can use: booleans, strings, integers, and lists.
Boolean
The first, most used, most basic flag you need (besides a default flag) is a boolean flag. A boolean is a variable that represents either true or false.
You can set a boolean flag to true by using
- flag "RandomFlag"
...That's it. That automatically sets the flag named RandomFlag attached to the player interacting with the script as 'true'. You can set it to false by simply doing
- flag "RandomFlag:false"
This type of flag is helpful for 'if' statements. More information on that can be found here.
String
Let's move forward. Probably the second most important flag you'll need on your journey is the string flag. Strings are variables that represent words or phrases that you can change at any time.
For example,
- flag "RandomFlag:Blah something whatever"
would set the flag 'RandomFlag' on the player who's interacting with the script as 'Blah something whatever'.
Remember, you can also attach the flag to the NPC that the script is being run by, or the server itself by specifying 'npc' or 'global'. That will be covered in the advanced section.
Integer
Usage inside scripts
Mathematical calculations
Number flags (Integer, Double, ...) can be used in calculations. You can either use the <m: > tag or add the operation directly behind the flag (examples in the different kinds of operations).
Addition
To add a flag and a number together, just use add[]
.
Example:
<player.flag[money].add[2]>
Subtraction
To subtract the flag's value, just use sub[]
.
Example:
<player.flag[money].sub[10]>
Multiplication
To multiply the value of a flag, just use mul[]
.
Example:
<player.flag[money].mul[1.25]>
Multiplication
To divide a flag by something use div[]
.
Example:
<player.flag[money].div[1.25]>
Mod
Denizen allows you to mod two numbers as well! Just use mod[]
.
Example:
<player.flag[money].mod[3]>
Advanced usage
Checking if a flag exists
With the new 0.9 Development release you can now check if a flag exists. Just check a flag against null like in the following example:
- if <player.flag[flag_to_check]> == null narrate 'flag is null!' else narrate "<player.flag[flag_to_check]>"