diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2011-08-03 17:09:45 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-08-03 17:09:45 +0200 |
commit | ec55942edde8ffe0c0b61456be19e87c34267bbe (patch) | |
tree | a3f3d3a45681c10b2b5f695309c57cf0c196bcda /world/map/npc/025-4 | |
parent | 3ba512310253a7fdbe1907963f4c3e77457f3a49 (diff) | |
download | serverdata-ec55942edde8ffe0c0b61456be19e87c34267bbe.tar.gz serverdata-ec55942edde8ffe0c0b61456be19e87c34267bbe.tar.bz2 serverdata-ec55942edde8ffe0c0b61456be19e87c34267bbe.tar.xz serverdata-ec55942edde8ffe0c0b61456be19e87c34267bbe.zip |
Rossy quest: replacing hard coded numbers with variables and some fixes in dialogue
Diffstat (limited to 'world/map/npc/025-4')
-rw-r--r-- | world/map/npc/025-4/julia.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/world/map/npc/025-4/julia.txt b/world/map/npc/025-4/julia.txt index ef52faa1..ecb7703a 100644 --- a/world/map/npc/025-4/julia.txt +++ b/world/map/npc/025-4/julia.txt @@ -2,6 +2,8 @@ 025-4.gat,89,21,0 script Julia 114,{ + set @Reward_EXP, 5000; + if (Rossy_Quest > 16 || FLAGS & FLAG_ROSSI_COMPLETED) goto L_End; if (Rossy_Quest == 16) goto L_Done; if (Rossy_Quest <= 15) goto L_Hmmm; @@ -16,7 +18,7 @@ L_Done: getinventorylist; if (@inventorylist_count == 100) goto L_TooMany; getitem "BlackBoots", 1; - getexp 5000, 0; + getexp @Reward_EXP, 0; set Rossy_Quest, 17; mes "\"I'm out of here now, lets get out of this horrible cave.\""; close; |