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/cities/umbala.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/cities/umbala.txt')
-rw-r--r-- | npc/cities/umbala.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/cities/umbala.txt b/npc/cities/umbala.txt index d705e4baa..a8127c372 100644 --- a/npc/cities/umbala.txt +++ b/npc/cities/umbala.txt @@ -1021,7 +1021,7 @@ umbala,140,197,1 script Bungee Jump FAKE_NPC,0,0,{ OnTouch: switch(rand(1,3)) { case 1: - percentheal -100,0; + Hp = 1; mapannounce "umbala","Bungee Jump: "+strcharinfo(PC_NAME)+" : Kyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa~~~~~~~",bc_map; end; case 2: @@ -1030,7 +1030,7 @@ OnTouch: end; case 3: if (rand(1,2) == 2) { - percentheal -99,0; + Hp = 1; warp "nif_in",69,15; } end; |