diff options
-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; |