diff options
-rw-r--r-- | npc/005-1/zegas.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/005-1/zegas.txt b/npc/005-1/zegas.txt index 290668c4c..46598ccd2 100644 --- a/npc/005-1/zegas.txt +++ b/npc/005-1/zegas.txt @@ -1,4 +1,6 @@ +//TMW2 Scrit 005-1,35,77,0 script Zegas NPC_MONA,{ + .ItemCreate = CandorShorts; .@q = getq(CandorQuest_Barrel); if (.@q == 1) goto L_Find; @@ -47,9 +49,10 @@ L_Looking: 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 50 GP for your troubles."); - getexp 50, 0; - Zeny = (Zeny + 50); + mesq l("Thanks once again, I know it's not much but here is 450 GP for your troubles."); + getexp 60, 0; + getitem .ItemCreate, 1; + Zeny = (Zeny + 450); setq CandorQuest_Barrel, 4; goto L_Close; |