diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-06-05 11:59:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-06-05 11:59:31 -0300 |
commit | 411037eba7a7c25a33045ce8d73cc794e74bd328 (patch) | |
tree | 646c4d96db0e7c9b99b4d9ebfd63c8cc92f9cbda | |
parent | e1b0b2bec75019997c4c94ac6eedc6d6d010652b (diff) | |
download | serverdata-411037eba7a7c25a33045ce8d73cc794e74bd328.tar.gz serverdata-411037eba7a7c25a33045ce8d73cc794e74bd328.tar.bz2 serverdata-411037eba7a7c25a33045ce8d73cc794e74bd328.tar.xz serverdata-411037eba7a7c25a33045ce8d73cc794e74bd328.zip |
Fix typo in Pachua but be playful about it
-rw-r--r-- | npc/004-2/pachua.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/004-2/pachua.txt b/npc/004-2/pachua.txt index b196bfdd2..3e3295829 100644 --- a/npc/004-2/pachua.txt +++ b/npc/004-2/pachua.txt @@ -37,6 +37,10 @@ OnTouch: if (@pachua != 1) end; + // If you're disarmed (riding?) apply a small time penalty + if (getequipid(EQI_HAND_R) < 1 || getequipid(EQI_HAND_L) < 1) { + setq2 HalinarzoQuest_Speed, getq2(HalinarzoQuest_Speed) - 30; + } message strcharinfo(0), "Pachua quickly inhales from his pipe and releases a ring of smoke towards the sky!"; @pachua = 2; end; |