diff options
author | Haru <haru@dotalux.com> | 2014-10-22 01:49:22 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-10-24 00:59:21 +0200 |
commit | 3be853cff81fbdc590fc5538b60951f0179945f8 (patch) | |
tree | 9beef2a35af9e9d13d02779a55e6939535c47b4d /npc/re/merchants | |
parent | 138352558b04de199139d5f8124d6e3c24df8008 (diff) | |
download | hercules-3be853cff81fbdc590fc5538b60951f0179945f8.tar.gz hercules-3be853cff81fbdc590fc5538b60951f0179945f8.tar.bz2 hercules-3be853cff81fbdc590fc5538b60951f0179945f8.tar.xz hercules-3be853cff81fbdc590fc5538b60951f0179945f8.zip |
Renamed ismounting, setmounting, @mount2
To avoid ambiguity:
- The script command ismounting is now hascashmount
- The script command setmounting is now setcashmount
- The at-command @mount2 is now @cashmount
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/re/merchants')
-rw-r--r-- | npc/re/merchants/renters.txt | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/npc/re/merchants/renters.txt b/npc/re/merchants/renters.txt index 59894c678..781467e20 100644 --- a/npc/re/merchants/renters.txt +++ b/npc/re/merchants/renters.txt @@ -31,8 +31,7 @@ job3_rune01,88,62,5 script Dragon Breeder 8W_SOLDIER,{ mes "[Dragon Breeder]"; mes "You already have a Dragon."; close; - } - else if(ismounting()) { + } else if(hascashmount()) { mes "[Dragon Breeder]"; mes "Please remove your cash mount."; close; @@ -69,8 +68,7 @@ prontera,130,213,5 script Riding Creature Master 8W_SOLDIER,{ mes "[Riding Creature Master]"; mes "You already have a Dragon."; close; - } - else if(ismounting()) { + } else if(hascashmount()) { mes "[Riding Creature Master]"; mes "Please remove your cash mount."; close; @@ -97,8 +95,7 @@ prontera,130,213,5 script Riding Creature Master 8W_SOLDIER,{ mes "[Riding Creature Master]"; mes "You already have a Gryphon."; close; - } - else if(ismounting()) { + } else if(hascashmount()) { mes "[Riding Creature Master]"; mes "Please remove your cash mount."; close; @@ -178,8 +175,7 @@ prontera,125,208,5 script Peco Peco Remover 8W_SOLDIER,{ mes "[Magic Gear Master]"; mes "Please learn the skill to get the Magic Gear License first."; close; - } - else if(ismounting()) { + } else if(hascashmount()) { mes "[Magic Gear Master]"; mes "Please remove your cash mount."; close; |