diff options
author | Haru <haru@dotalux.com> | 2016-02-29 01:53:24 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-29 01:53:24 +0100 |
commit | 12a85a011c2008ea92b9197e79646aaa6ece5a41 (patch) | |
tree | f39d3e659d9b3801cc42a7b14e41aeec16c93ddf /doc | |
parent | 844d429119e671f8abbdb335233eba1bb156721c (diff) | |
parent | 05a2538114972de94352e66586f6f2a5affea9c6 (diff) | |
download | hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.gz hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.bz2 hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.xz hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.zip |
Merged pull request #1123 - Add Constant for Gender.
Closes #1123 as merged
Diffstat (limited to 'doc')
-rw-r--r-- | doc/script_commands.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 709aa39dd..c45b4e602 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -552,7 +552,7 @@ Weight - Amount of weight the character currently carries. Display as in Weight/10. MaxWeight - Maximum weight the character can carry. Display as in MaxWeight/10. -Sex - 0 if female, 1 if male. +Sex - Character's gender (SEX_MALE or SEX_FEMALE). Class - Character's job. Upper - 0 if the character is normal class, 1 if advanced, 2 if baby. BaseClass - The character's 1-1 'normal' job, regardless of Upper value. @@ -889,11 +889,14 @@ and are the following: ?: - Conditional operator Very useful e.g. to replace - if(Sex) mes "..."; else mes "..."; + if (Sex == SEX_MALE) + mes "You're Male."; + else + mes "You're Female."; clauses with simple - mes "Welcome, " + (Sex?"Mr.":"Mrs.") + " " + strcharinfo(0); + mes "Welcome, " + (Sex == SEX_MALE ? "Mr." : "Mrs.") + " " + strcharinfo(0); or to replace any other simple if-else clauses. It might be worth mentioning that ?: has low priority and has to be enclosed with |