diff options
author | Ridley <ridley8819@gmail.com> | 2017-03-04 19:46:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-04 19:46:12 +0100 |
commit | cba5a2b52f1400e4e94338471ff33e9a9ec407ed (patch) | |
tree | f36b8f6338ce9fc1df7c6a917d9cee73376a8c06 | |
parent | e96e272e27ecac376fda6cbf524f7975b209f323 (diff) | |
parent | 70ac738138ec2d3c48faccab6f1cde7b1a014516 (diff) | |
download | hercules-cba5a2b52f1400e4e94338471ff33e9a9ec407ed.tar.gz hercules-cba5a2b52f1400e4e94338471ff33e9a9ec407ed.tar.bz2 hercules-cba5a2b52f1400e4e94338471ff33e9a9ec407ed.tar.xz hercules-cba5a2b52f1400e4e94338471ff33e9a9ec407ed.zip |
Merge pull request #1607 from Emistry/script_F_SexMes
Update Global Function - Remove F_SexMes
-rw-r--r-- | npc/other/Global_Functions.txt | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt index f6068d598..544e3a672 100644 --- a/npc/other/Global_Functions.txt +++ b/npc/other/Global_Functions.txt @@ -156,16 +156,6 @@ function script F_Rand { return getarg(rand(getargcount())); } -//== Function F_Sex ======================================== -// Returns 1st argument if female, 2nd argument otherwise -// Example: mes callfunc("F_Sex","What a beautiful lady!","What a handsome man!"); -function script F_SexMes { - if (Sex == SEX_MALE) - return getarg(0); - else - return getarg(1); -} - //== Function F_Hi ========================================= // Returns random HELLO message function script F_Hi { |