diff options
-rw-r--r-- | npc/functions/class.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/functions/class.txt b/npc/functions/class.txt index e10a6f399..dc525f461 100644 --- a/npc/functions/class.txt +++ b/npc/functions/class.txt @@ -55,11 +55,12 @@ L_JoinReq: mesq l("Ah, nothing too major, as you already have magic."); next; mesn; - mesq l("We only require a small fee of 1 @@, or 40 @@", getitemlink(DivineApple), getitemlink(SnakeEgg)); + mesq l("We only require a small fee of 1 @@, or 40 @@, or 500 @@ if you are poor adventurer.", getitemlink(DivineApple), getitemlink(SnakeEgg), getitemlink(MaggotSlime)); next; switch(select( rif(countitem(DivineApple) >= 1, l("I got the apple.")), rif(countitem(SnakeEgg) >= 40, l("I got the eggs.")), + rif(countitem(MaggotSlime) >= 500, l("I got the maggots slimes.")), l("I will apply later."))) { case 1: @@ -74,6 +75,10 @@ L_JoinReq: delitem SnakeEgg, 40; goto L_Tier1Ok; break; + case 3: + delitem MaggotSlime, 500; + goto L_Tier1Ok; + break; default: break; } |