diff options
author | Haru <haru@dotalux.com> | 2016-10-16 15:12:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-16 15:12:01 +0200 |
commit | fd5292f70192c61956556b3c53c68485938a022e (patch) | |
tree | 025a3a24d8b6bfddcf86ec3002c5d3cfbeeb1d96 /npc/quests/quests_moscovia.txt | |
parent | 9805dcccbb3f8e5d400d4976486a6b41edfc1af0 (diff) | |
parent | 2f06704ee2f6be5566e8cbff0fd29a1238c7cae5 (diff) | |
download | hercules-fd5292f70192c61956556b3c53c68485938a022e.tar.gz hercules-fd5292f70192c61956556b3c53c68485938a022e.tar.bz2 hercules-fd5292f70192c61956556b3c53c68485938a022e.tar.xz hercules-fd5292f70192c61956556b3c53c68485938a022e.zip |
Merge pull request #1473 from Ridley8819/0hp
Fix cases were player were executed
Diffstat (limited to 'npc/quests/quests_moscovia.txt')
-rw-r--r-- | npc/quests/quests_moscovia.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/npc/quests/quests_moscovia.txt b/npc/quests/quests_moscovia.txt index 13dd91908..3e3bb3414 100644 --- a/npc/quests/quests_moscovia.txt +++ b/npc/quests/quests_moscovia.txt @@ -8624,10 +8624,10 @@ OnTouch: mes "- You hear a splashing as -"; mes "- something gleaming -"; mes "- seems to stare at you!! -"; - next; + close2; specialeffect2 EF_FLASHER; - percentheal -100,0; - close; + unitkill getcharid(CHAR_ID_ACCOUNT); + end; } } else if (rhea_rus_hair > 2 && rhea_rus_hair < 7) { mes "[Lusalka's Voice]"; @@ -8646,9 +8646,10 @@ OnTouch: close; } mes "-You seem to hear the splash but something gleaming raids on you!!-"; + close2; specialeffect2 EF_FLASHER; - percentheal -100,0; - close; + unitkill getcharid(CHAR_ID_ACCOUNT); + end; } } else if (rhea_rus_hair == 8) { mes "["+ strcharinfo(PC_NAME) +"]"; @@ -8884,10 +8885,11 @@ mosk_fild02,124,202,3 script Lusalka#rus23 4_F_RUSGREEN,{ end; } mes "-When Lusalka watches you, you are blacked out-"; + close2; specialeffect2 EF_FLASHER; - percentheal -100,0; + unitkill getcharid(CHAR_ID_ACCOUNT); donpcevent "Lusalka#rus23::OnDisable"; - close; + end; OnInit: disablenpc "Lusalka#rus23"; |