diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-03 14:07:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-03 14:07:53 -0300 |
commit | 4fcbee767848cb0a4b34db504fa0cb30d55dc78d (patch) | |
tree | bb7b13be1935ae2769dc4aaf0b6b0644d28b83ae /npc/019-1 | |
parent | 42ff46a168148ceb70bb37431ad4d162429be464 (diff) | |
download | serverdata-4fcbee767848cb0a4b34db504fa0cb30d55dc78d.tar.gz serverdata-4fcbee767848cb0a4b34db504fa0cb30d55dc78d.tar.bz2 serverdata-4fcbee767848cb0a4b34db504fa0cb30d55dc78d.tar.xz serverdata-4fcbee767848cb0a4b34db504fa0cb30d55dc78d.zip |
Use readparam2() instead of readparam() in several places
Diffstat (limited to 'npc/019-1')
-rw-r--r-- | npc/019-1/well.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/019-1/well.txt b/npc/019-1/well.txt index 6839eae0a..e0808da1e 100644 --- a/npc/019-1/well.txt +++ b/npc/019-1/well.txt @@ -31,7 +31,7 @@ L_Reckless: closedialog; warp "015-6", 363, 109; dispbottom l("Ouch! That was kinda reckless!"); - percentheal -150+readparam(bVit), 0; + percentheal -150+readparam2(bVit), 0; close; // Easter Egg @@ -69,9 +69,9 @@ L_Throw: if (!.@q) goto L_Quest; // If not, report if it is safe to jump - if (readparam(bVit) < 55) + if (readparam2(bVit) < 55) mesc l("The item impact suggests you don't have enough vitality to jump inside."), 1; - else if (readparam(bVit) < 75) + else if (readparam2(bVit) < 75) mesc l("The item impact suggests jumping inside will leave you badly wounded."); else mesc l("The item impact suggests jumping inside should be safe if you have enough life."); |