diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-10 17:16:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-10 17:16:27 -0300 |
commit | 5e536628bf5eea88ee4f494bf5aa6072e9abf04c (patch) | |
tree | 0d7d5ed247527a373d88026646b3407312c369a2 | |
parent | 61bb3a0468126c70998f9db37f2fb0b27a266a67 (diff) | |
download | serverdata-5e536628bf5eea88ee4f494bf5aa6072e9abf04c.tar.gz serverdata-5e536628bf5eea88ee4f494bf5aa6072e9abf04c.tar.bz2 serverdata-5e536628bf5eea88ee4f494bf5aa6072e9abf04c.tar.xz serverdata-5e536628bf5eea88ee4f494bf5aa6072e9abf04c.zip |
Valentine Event: Soren: Status Reset & Shop options
-rw-r--r-- | npc/001-11/Soren.txt | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/npc/001-11/Soren.txt b/npc/001-11/Soren.txt index 149bd49c5..73f744b88 100644 --- a/npc/001-11/Soren.txt +++ b/npc/001-11/Soren.txt @@ -8,7 +8,7 @@ mesn; mesq l("I will harass Demure with so many chocolate that she'll leave this event map rolling!"); if (gettime(GETTIME_YEAR) == 2020) - close; + goto L_Purpose; next; L_Main: @@ -37,6 +37,24 @@ L_Main: } close; +L_Purpose: + next; + select + l("You're creepy."), + l("Reset status"), + l("Open shop"); + mes ""; + switch (@menu) { + case 2: + ConfirmStatusReset(1); + break; + case 3: + closeclientdialog; + shop "Shop#Candor"; + break; + } + close; + OnInit: .@npcId = getnpcid(.name$); setunitdata(.@npcId, UDT_HEADTOP, CandorShorts); |