diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-07-16 23:08:42 +0000 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-07-16 23:08:42 +0000 |
commit | 481b0ddd3a7c73a8785047f312ecb58ca6dc0e78 (patch) | |
tree | e5af6955000639974c328157feb4d91287f057ff /npc/functions | |
parent | dc0ec86a795c01bc6501b61e18f31f23edeee7bb (diff) | |
download | serverdata-481b0ddd3a7c73a8785047f312ecb58ca6dc0e78.tar.gz serverdata-481b0ddd3a7c73a8785047f312ecb58ca6dc0e78.tar.bz2 serverdata-481b0ddd3a7c73a8785047f312ecb58ca6dc0e78.tar.xz serverdata-481b0ddd3a7c73a8785047f312ecb58ca6dc0e78.zip |
now you can get tier 1 with maggot slime :b #noob
Diffstat (limited to 'npc/functions')
-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; } |