diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-06-17 08:05:57 +0000 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-06-17 08:05:57 +0000 |
commit | 70a323d2f9a3256bf3b82ae3d5d4f8c493211a97 (patch) | |
tree | aea1bae66a55a8228ad0ced2439419da73954fb5 /npc/005-1 | |
parent | 02e580b863b7ca6bc29b209785b50f6e000ba5f6 (diff) | |
download | serverdata-70a323d2f9a3256bf3b82ae3d5d4f8c493211a97.tar.gz serverdata-70a323d2f9a3256bf3b82ae3d5d4f8c493211a97.tar.bz2 serverdata-70a323d2f9a3256bf3b82ae3d5d4f8c493211a97.tar.xz serverdata-70a323d2f9a3256bf3b82ae3d5d4f8c493211a97.zip |
Add +5% exp reward to each quest! and add some exp if nothing exist.
Diffstat (limited to 'npc/005-1')
-rw-r--r-- | npc/005-1/ayasha.txt | 2 | ||||
-rw-r--r-- | npc/005-1/liana.txt | 4 | ||||
-rw-r--r-- | npc/005-1/maya.txt | 1 | ||||
-rw-r--r-- | npc/005-1/sailors.txt | 2 | ||||
-rw-r--r-- | npc/005-1/vincent.txt | 1 | ||||
-rw-r--r-- | npc/005-1/zegas.txt | 2 |
6 files changed, 8 insertions, 4 deletions
diff --git a/npc/005-1/ayasha.txt b/npc/005-1/ayasha.txt index da9ffd312..5697de032 100644 --- a/npc/005-1/ayasha.txt +++ b/npc/005-1/ayasha.txt @@ -71,7 +71,7 @@ speech S_LAST_NEXT, l("Thank you, here is your reward and... some pocket money."); narrator("You receive 30 exp and 50 GP."); - getexp 30, 0; + getexp 32, 0; Zeny = (Zeny + 50); setq CandorQuest_HAS, 4; close; diff --git a/npc/005-1/liana.txt b/npc/005-1/liana.txt index c7a44e634..ad4e353e3 100644 --- a/npc/005-1/liana.txt +++ b/npc/005-1/liana.txt @@ -59,7 +59,7 @@ L_Repeat: L_Finish2: delitem MaggotSlime, 10; - getexp 20, 0; + getexp 21, 0; Zeny = (Zeny + 80); // 10*4 = 40 base setq CandorQuest_Liana, 1; set LIANA_TIMER, gettimetick(2); @@ -70,7 +70,7 @@ L_Finish2: L_Finish: delitem MaggotSlime, 5; - getexp 55, 10; + getexp 58, 7; Zeny = (Zeny + 30); // 5*4 = 20 base setq CandorQuest_Liana, 1; set LIANA_TIMER, gettimetick(2); diff --git a/npc/005-1/maya.txt b/npc/005-1/maya.txt index 7e189c4fe..32f7bba65 100644 --- a/npc/005-1/maya.txt +++ b/npc/005-1/maya.txt @@ -57,6 +57,7 @@ L_QuestCompleted: delitem MaggotSlime, 3; set Zeny, Zeny + 300; getitem CandorShirt, 1; + getexp 25, 5; setq CandorQuest_Maya, 2; mes ""; diff --git a/npc/005-1/sailors.txt b/npc/005-1/sailors.txt index 8ff8b9d73..eafad9b98 100644 --- a/npc/005-1/sailors.txt +++ b/npc/005-1/sailors.txt @@ -72,6 +72,7 @@ L_Give: inventoryplace Bandana, 1; delitem "Beer", 5; getitem Bandana, 1; + getexp 35, 5; setq CandorQuest_Sailors, 2; mes ""; mesn; @@ -128,6 +129,7 @@ L_questCure_success: else Zeny = Zeny + 30; getitem CandorBoots, 1; + getexp 20, 2; setq CandorQuest_SailorCure, 1; mesn; mesq l("That... It... It worked! This is just the right claw!"); diff --git a/npc/005-1/vincent.txt b/npc/005-1/vincent.txt index b6c3ed85f..6d89ee983 100644 --- a/npc/005-1/vincent.txt +++ b/npc/005-1/vincent.txt @@ -47,6 +47,7 @@ L_CheckItems: l("I will be forever grateful!"); delitem .LegsID, .LegsCount; + getexp 15, 5; Zeny = Zeny + 1000; message strcharinfo(0), l("You receive @@ GP!", 1000); setq CandorQuest_Vincent, 2; diff --git a/npc/005-1/zegas.txt b/npc/005-1/zegas.txt index a0dfb076e..75d3a45bb 100644 --- a/npc/005-1/zegas.txt +++ b/npc/005-1/zegas.txt @@ -57,7 +57,7 @@ L_QuestEnd: mesn; mesq l("From the smell I can see you found the bug bomb!"); mesq l("Thanks once again, I know it's not much but here is 450 GP for your troubles."); - getexp 60, 0; + getexp 63, 0; getitem .ItemCreate, 1; Zeny = (Zeny + 450); setq CandorQuest_Barrel, 4; |