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/014-3 | |
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/014-3')
-rw-r--r-- | npc/014-3/fountain.txt | 8 | ||||
-rw-r--r-- | npc/014-3/oscar.txt | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/npc/014-3/fountain.txt b/npc/014-3/fountain.txt index c32610885..d70d6d4a4 100644 --- a/npc/014-3/fountain.txt +++ b/npc/014-3/fountain.txt @@ -48,7 +48,7 @@ L_NotEnoughMoney: L_Tier2: - if (readparam(bInt) < 10) goto L_Dumb; + if (readparam2(bInt) < 10) goto L_Dumb; mesn; mesc l("WHAT ARE YOU GOING TO DO?"); next; @@ -98,13 +98,13 @@ L_Dumb: L_Tier2Ok: mesc l("You pour the whole potion on the fountain."); next; - if (readparam(bInt) < 20) goto L_Fail2; + if (readparam2(bInt) < 20) goto L_Fail2; mesc l("You hear birds singing! That is what you had to do!"); next; - if (readparam(bInt) < 30) goto L_Fail2; + if (readparam2(bInt) < 30) goto L_Fail2; mesc l("Your body starts to glow. You're not sure why, the fountain did that!"); next; - if (readparam(bInt) < 40) goto L_Fail2; + if (readparam2(bInt) < 40) goto L_Fail2; mesn; mes l("I am the Magic Fountain of Hurnscald. You look qualified."); next; diff --git a/npc/014-3/oscar.txt b/npc/014-3/oscar.txt index 5e981af0b..336af6963 100644 --- a/npc/014-3/oscar.txt +++ b/npc/014-3/oscar.txt @@ -31,7 +31,7 @@ L_Hello: mesn; mesq l("Great! Excellent! Because I am also diving in problems!!"); next; - if (readparam(bAgi) < 30) goto L_Slow; + if (readparam2(bAgi) < 30) goto L_Slow; if (BaseLevel < 20) goto L_Weak; mesn; // Est. kill 400 Pinkies |