diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-19 01:33:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-19 01:33:56 -0300 |
commit | ac88106cecbcf0a7df65eda761282135be182ba7 (patch) | |
tree | d1424e3bf164ccf7c1e538af70438a235de9daf2 /npc/functions/class.txt | |
parent | b428f34a532e572d918ebe7f513b81d04c6a84dd (diff) | |
download | serverdata-ac88106cecbcf0a7df65eda761282135be182ba7.tar.gz serverdata-ac88106cecbcf0a7df65eda761282135be182ba7.tar.bz2 serverdata-ac88106cecbcf0a7df65eda761282135be182ba7.tar.xz serverdata-ac88106cecbcf0a7df65eda761282135be182ba7.zip |
Uh oh, bugs...
Diffstat (limited to 'npc/functions/class.txt')
-rw-r--r-- | npc/functions/class.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/functions/class.txt b/npc/functions/class.txt index 2ff9b684d..8cad0ec43 100644 --- a/npc/functions/class.txt +++ b/npc/functions/class.txt @@ -201,9 +201,7 @@ L_T2_S0: close; L_T2_S1: - .@CLASS=getarg(0); - .@CNAME$=getarg(1); - .@OTHER=getarg(2); + //.@CLASS .@CNAME$ .@OTHER mes ""; mesn; mesq l("So, young disciple! I wish I could just chant some gibberish words and that automatically granted you more skills, but alas, that won't work."); @@ -285,7 +283,8 @@ L_T2_S4: mesn; mesq l("I need @@ Herbs!", .@req); - next; + //next; // If you comment this next, you'll allow players to logout and prevent penalty. + mes ""; if (countitem(MauveHerb) < .@req) goto L_T2_Fail; delitem MauveHerb, .@r; @@ -293,7 +292,7 @@ L_T2_S4: getexp .@r*3, 0; //getitem MagicPotion, 1; - mesq col("You quickly give him the herbs, and he skillfully mix them on a potion.", 9); + mes col("You quickly give him the herbs, and he skillfully mix them on a potion.", 9); next; // You'll get a random amount of time, based on spent herbs // Usually, 10~73 sec, being 73 sec = 1m13s @@ -304,6 +303,9 @@ L_T2_S5: mesq l("Good! Last step! West of Hurnscald, there is a magic fountain."); next; mesn; + // TODO FIXME WARNING DESYNC-ED + // 1- Pour the potion + // 2- Add to fountain an int check mesq l("Talk to the Fountain. Obey every command. I advise you to put all your points on int if possible."); next; mesn; |