diff options
author | Coffee <coffee@coffee-EP45-UD3L.(none)> | 2011-06-18 23:36:32 -0300 |
---|---|---|
committer | Coffee <coffee@coffee-EP45-UD3L.(none)> | 2011-06-18 23:36:32 -0300 |
commit | 5e3a01e4fdf880b345bbfac893896fe8763a4703 (patch) | |
tree | 692e0a43e7461791863a91fcf50a37a04d1b7464 /npc/025-1 | |
parent | 55848c939ee6fa54f0813ab488d3f6fb4d93863e (diff) | |
download | serverdata-5e3a01e4fdf880b345bbfac893896fe8763a4703.tar.gz serverdata-5e3a01e4fdf880b345bbfac893896fe8763a4703.tar.bz2 serverdata-5e3a01e4fdf880b345bbfac893896fe8763a4703.tar.xz serverdata-5e3a01e4fdf880b345bbfac893896fe8763a4703.zip |
Fixes some sintax errors in clauquer.txt, add message when you start a fight and eliminate the use of a permanent variable in the barrier in 025-1.
Diffstat (limited to 'npc/025-1')
-rw-r--r-- | npc/025-1/barrier.txt | 6 | ||||
-rw-r--r-- | npc/025-1/rossy.txt | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/npc/025-1/barrier.txt b/npc/025-1/barrier.txt index 9290d9c5..940eeb56 100644 --- a/npc/025-1/barrier.txt +++ b/npc/025-1/barrier.txt @@ -1,9 +1,9 @@ // 025-1.gat,42,79,0 script #JuliaBarrier 127,1,1,{ if (Rossy_Quest <= 13) goto L_Block; - if (Alrd_Been != 1) message strcharinfo(0), "You hear distant screams of fear."; - set Alrd_Been, 1; - warp "025-3.gat", 112, 97; + if (@Alrd_Been != 1 || Rossy_Quest == 14) message strcharinfo(0), "You hear distant screams of fear."; + set @Alrd_Been, 1; + warp "025-3.gat", 112, 97; end; L_Block: diff --git a/npc/025-1/rossy.txt b/npc/025-1/rossy.txt index 1392392f..b78def6b 100644 --- a/npc/025-1/rossy.txt +++ b/npc/025-1/rossy.txt @@ -123,15 +123,18 @@ L_Check2: if(countitem("GambogeHerb") < 50) goto L_NE; if(countitem("AlizarinHerb") < 43) goto L_NE; if(countitem("BugLeg") < 30) goto L_NE; + mes "Rossy gets all the ingredients and place them on the ground. She starts to mix some herbs with the cactus drink and cast some funny spells... She seems to know what she is doing"; + next; mes "[Rossy]"; - set Rossy_Quest, 7; - mes "\"Oh, thank you "+ strcharinfo(0) +" ! If you don't mind, please give this potion to my teacher.\""; + mes "\"Oh, thank you "+ strcharinfo(0) +" ! It is done. If you don't mind, please give this potion to my teacher.\""; delitem "CactusDrink", 24; delitem "MaggotSlime", 32; delitem "GambogeHerb", 50; delitem "AlizarinHerb", 43; delitem "BugLeg", 30; + set Rossy_Quest, 7; getexp 3000, 0; + message strcharinfo(0), "Rossy hands you the potion, holding the bottle very carefully"; next; mes "\"My teacher's name is David, he is a very young magician and lives near the magic school in the north of Tulimshar.\""; next; |