diff options
author | Haru <haru@dotalux.com> | 2015-05-08 16:15:07 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-05-08 16:21:05 +0200 |
commit | ad9a14992cde8ad6759263da37e723b2b1825981 (patch) | |
tree | f6c168973bb2d2c5f243ad1c5688ae15439dcc5c /npc/quests/quests_juperos.txt | |
parent | 513059cad7510c20f44e1a19f731efbe2f28dbec (diff) | |
download | hercules-ad9a14992cde8ad6759263da37e723b2b1825981.tar.gz hercules-ad9a14992cde8ad6759263da37e723b2b1825981.tar.bz2 hercules-ad9a14992cde8ad6759263da37e723b2b1825981.tar.xz hercules-ad9a14992cde8ad6759263da37e723b2b1825981.zip |
Replaced checkre() calls with constants
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/quests/quests_juperos.txt')
-rw-r--r-- | npc/quests/quests_juperos.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/quests/quests_juperos.txt b/npc/quests/quests_juperos.txt index e2a28024c..ffac8b6a7 100644 --- a/npc/quests/quests_juperos.txt +++ b/npc/quests/quests_juperos.txt @@ -578,7 +578,7 @@ function script Func_JupHist { delitem getarg(0),1; yuno_hist = 5; jupe_hist = getarg(1); - getexp (checkre(3))?10000:100000,0; + getexp RENEWAL_EXP?10000:100000,0; next; mes "[Fayruz]"; mes "Everyone can relate"; @@ -654,7 +654,7 @@ function script Func_JupHist { else jupe_hist += 8; } yuno_hist = 6; - getexp (checkre(3))?10000:100000,0; + getexp RENEWAL_EXP?10000:100000,0; next; mes "[Fayruz]"; mes "By now I'm sure you've"; @@ -778,7 +778,7 @@ function script Func_JupHist { else jupe_hist += 8; } yuno_hist = 8; - getexp (checkre(3))?10000:100000,0; + getexp RENEWAL_EXP?10000:100000,0; next; mes "[Fayruz]"; mes "Well... That's just my"; @@ -875,7 +875,7 @@ function script Func_JupHist { else jupe_hist += 8; yuno_hist = 10; delitem getarg(0),1; - getexp (checkre(3))?10000:100000,0; + getexp RENEWAL_EXP?10000:100000,0; next; mes "[Fayruz]"; mes "Well, that is the"; |