diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-06 14:33:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-06 14:33:04 -0300 |
commit | 76ca02f2c6cc0a2e6121c4ea8114bef8819fa747 (patch) | |
tree | e0ee627cd1b9ed64d319407b1fb8045d9cf266bc /npc/003-1/constableperry.txt | |
parent | 652b92c7050915d164cb4ec8576ded81ddc1257d (diff) | |
download | serverdata-76ca02f2c6cc0a2e6121c4ea8114bef8819fa747.tar.gz serverdata-76ca02f2c6cc0a2e6121c4ea8114bef8819fa747.tar.bz2 serverdata-76ca02f2c6cc0a2e6121c4ea8114bef8819fa747.tar.xz serverdata-76ca02f2c6cc0a2e6121c4ea8114bef8819fa747.zip |
You can now join Bandit Guild or Merchant Police.
Currently unable to correct your ways or to pervert yourself later.
Storyline is the same (@BenB) but skill set is different.
Only Thief Minigame currently available.
Experience Table: [0, 32, 1024, 7776, 32768]
Diffstat (limited to 'npc/003-1/constableperry.txt')
-rw-r--r-- | npc/003-1/constableperry.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/npc/003-1/constableperry.txt b/npc/003-1/constableperry.txt index b529727c3..f2187c5c0 100644 --- a/npc/003-1/constableperry.txt +++ b/npc/003-1/constableperry.txt @@ -25,10 +25,11 @@ L_Quest: goto L_Recruit; mesn; mesq l("Hello there, @@, protector of law and order.", mercrank()); + if (MERC_RANK == 5) close; mesq l("I see you have collected some experience. Let me try to rank you up!"); next; - if (MERC_EXP > (MERC_RANK+1)**5) { - MERC_EXP-=(MERC_RANK+1)**5; + if (MERC_EXP > (MERC_RANK*2)**5) { + MERC_EXP-=(MERC_RANK*2)**5; MERC_RANK+=1; mesn; mesq l("Congrats! You rank up! You are now a(n) @@!", mercrank()); @@ -42,6 +43,15 @@ L_Recruit: mesn; mesq l("You seem to be doing some money. Would you consider fighting for good, and against all thiefs?"); mesq l("...Of course, Hasan is an exception."); + mesc l("Notice: If you join the ##BMerchants Guild Police##b now, you WON'T BE ABLE to be a thief later!"), 1; + next; + if (askyesno() == ASK_YES) { + MERC_EXP=0; + MERC_RANK=1; + mes ""; + mesn; + mesq l("Welcome to the ##BMerchant Guild Police##b! Capture anyone doing an evil-doing!"); + } close; OnInit: |