diff options
author | gumi <git@gumi.ca> | 2019-08-20 23:14:12 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-03-08 16:07:59 -0400 |
commit | d8c9ff3ba3ece0973d313847f43fc9a866868d3b (patch) | |
tree | 6e284b3fa574beb6b67acb5bf6473209cde21ac3 /world/map/npc/051-1 | |
parent | 71f5ceed044d3908b971f5f5f6457086e0ebaa30 (diff) | |
download | serverdata-hardcore.tar.gz serverdata-hardcore.tar.bz2 serverdata-hardcore.tar.xz serverdata-hardcore.zip |
avoid killing players in quest NPCshardcore
Diffstat (limited to 'world/map/npc/051-1')
-rw-r--r-- | world/map/npc/051-1/desert.txt | 3 | ||||
-rw-r--r-- | world/map/npc/051-1/forest.txt | 7 |
2 files changed, 6 insertions, 4 deletions
diff --git a/world/map/npc/051-1/desert.txt b/world/map/npc/051-1/desert.txt index 73dc7c9a..326113b0 100644 --- a/world/map/npc/051-1/desert.txt +++ b/world/map/npc/051-1/desert.txt @@ -50,7 +50,8 @@ OnTimer6500: end; L_ShouldNotBeHere: - heal -Hp, 0; + set Hp, 1; + warp getsavepoint(0), getsavepoint(1), getsavepoint(2); end; L_HintToHelpers: diff --git a/world/map/npc/051-1/forest.txt b/world/map/npc/051-1/forest.txt index 870465c3..dbae2c26 100644 --- a/world/map/npc/051-1/forest.txt +++ b/world/map/npc/051-1/forest.txt @@ -22,7 +22,8 @@ end; L_ShouldNotBeHere: - heal -Hp, 0; + set Hp, 1; + warp getsavepoint(0), getsavepoint(1), getsavepoint(2); end; L_HandleHelper: @@ -71,7 +72,8 @@ L_TaskComplete: end; L_ShouldNotBeHere: - heal -Hp, 0; + set Hp, 1; + warp getsavepoint(0), getsavepoint(1), getsavepoint(2); end; L_Blocked: @@ -86,4 +88,3 @@ L_Warp: warp "051-3", 24, 60; end; } - |