summaryrefslogtreecommitdiff
path: root/npc/017-1/misc.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-02-18 00:18:41 -0300
committerJesusaves <cpntb1@ymail.com>2020-02-18 00:18:41 -0300
commit1a3d61d122b49f7b5dbc2cf32554979e370a5fb4 (patch)
tree71dd46235d1415d58e970aeba2fd7fad928ea24a /npc/017-1/misc.txt
parent7c374bb5d84b6f1ef04df4377ab7d101c11b47ad (diff)
downloadserverdata-1a3d61d122b49f7b5dbc2cf32554979e370a5fb4.tar.gz
serverdata-1a3d61d122b49f7b5dbc2cf32554979e370a5fb4.tar.bz2
serverdata-1a3d61d122b49f7b5dbc2cf32554979e370a5fb4.tar.xz
serverdata-1a3d61d122b49f7b5dbc2cf32554979e370a5fb4.zip
Deprecate, remove, discontinue and burn with fire: Everything related to #RARE_POINTSr11.1_200218
It'll be replaced with Strange Coins on upstream. Whoever used it used, all else wasted. Put a link to LoF Discord: https://discord.gg/q3Bwzgf
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;
-
}