summaryrefslogtreecommitdiff
path: root/npc/017-1/misc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/017-1/misc.txt')
-rw-r--r--npc/017-1/misc.txt48
1 files changed, 7 insertions, 41 deletions
diff --git a/npc/017-1/misc.txt b/npc/017-1/misc.txt
index 823f71b36..1779ddd77 100644
--- a/npc/017-1/misc.txt
+++ b/npc/017-1/misc.txt
@@ -238,50 +238,16 @@ OnInit:
// Which is a script variable, meaning it will be a really special event.
// Side Note: Might as well add a special cap for such situations.
017-1,118,83,0 script Pydisgner#spoints NPC_GUGLI,{
- if (!#RARE_POINTS) {
- mesn;
- mesq l("Hello %s and welcome to Land Of Fire Village. This used to be a whole server before the Monster King crashed it down here.", strcharinfo(0));
- next;
- mesn;
- mesq l("In this town you'll find many critical things for your journey, like artifacts, dungeons, crafts and refiners. Please enjoy your stay. And keep tuned for news about us!");
- // TODO: Add a link for LoF Discord Server
- close;
- }
- mesn;
- mesq l("Have you came here from Land Of Fire TMWA Server? Do you have the merge points with you?");
- next;
- closeclientdialog;
- openshop;
- end;
+ mesn;
+ mesq l("Hello %s and welcome to Land Of Fire Village. This used to be a whole server before the Monster King crashed it down here.", strcharinfo(0));
+ next;
+ mesn;
+ mesq l("In this town you'll find many critical things for your journey, like artifacts, dungeons, crafts and refiners. Please enjoy your stay. And keep tuned for news about us!");
+ mes "@@https://discord.gg/q3Bwzgf|LoF Discord Server@@";
+ close;
OnInit:
.sex = G_OTHER;
.distance=5;
-
- tradertype(NST_CUSTOM);
-
- // Rares
- sellitem BlacksmithAxe, 64000;
- sellitem AxeHat, 7000;
- sellitem Googles, 5000;
-
- // Uncommon
- sellitem CrystallizedMaggot, 6000;
- sellitem Sunglasses, 6000;
- sellitem BunnyEars, 800;
- sellitem StrangeCoin, 30;
end;
-
-OnCountFunds:
- setcurrency(#RARE_POINTS);
- end;
-
-OnPayFunds:
- // Due a script bug, you must always retain a point
- if( #RARE_POINTS <= @price )
- end;
- #RARE_POINTS=#RARE_POINTS-@price;
- purchaseok();
- end;
-
}