summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-07 15:27:07 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-07 15:27:07 -0300
commit0eaa0129e7d218b058c34fab9853b1d38853e6b9 (patch)
tree9a3cf931fe091fe855ff32d87818d3c20747e229
parent7f91b4f988ba3a7d4c6eb44b372aec40ada214c7 (diff)
downloadserverdata-0eaa0129e7d218b058c34fab9853b1d38853e6b9.tar.gz
serverdata-0eaa0129e7d218b058c34fab9853b1d38853e6b9.tar.bz2
serverdata-0eaa0129e7d218b058c34fab9853b1d38853e6b9.tar.xz
serverdata-0eaa0129e7d218b058c34fab9853b1d38853e6b9.zip
You'll now find the Alliance Officer in the Council Room for a free level 60.
They'll sort out Homunculus, monster points, magic, crafting, skills. Give fruits. Make you awesome enough to keep playing the beta smoothly.
-rw-r--r--npc/003-0-1/guards.txt12
-rw-r--r--npc/029-0/event.txt83
2 files changed, 95 insertions, 0 deletions
diff --git a/npc/003-0-1/guards.txt b/npc/003-0-1/guards.txt
index 9296cd0bb..b0876a50e 100644
--- a/npc/003-0-1/guards.txt
+++ b/npc/003-0-1/guards.txt
@@ -7,6 +7,8 @@
003-0-1,50,24,0 script Guard#00301A NPC_BRGUARD_SPEAR,{
if (getgmlevel())
goto L_Sponsor;
+ if ($FIRESOFSTEAM)
+ goto L_Steam;
mesn;
mesq l("Past this grates, is the Magic Council Room.");
@@ -27,6 +29,16 @@ L_Sponsor:
closeclientdialog;
close;
+L_Steam:
+ mesn;
+ mesq l("The Council is not in session, it has dispersed since Andrei Sakar went to an expedition to Artis. However, it was decided to allow others inside.");
+ mesc l("Warp to Council room?");
+ if (askyesno() == ASK_YES) {
+ warp "003-0-2", 34, 42;
+ }
+ closeclientdialog;
+ close;
+
OnInit:
.distance=4;
end;
diff --git a/npc/029-0/event.txt b/npc/029-0/event.txt
index e99af2013..4af454c62 100644
--- a/npc/029-0/event.txt
+++ b/npc/029-0/event.txt
@@ -232,3 +232,86 @@ OnMinute02:
end;
}
+
+003-0-2,34,21,0 script Alliance Officer NPC_HALBERDBARBARIAN,{
+ mesn;
+ mesq l("Good %s, %s. The council is not in session right now.", (is_night() ? l("evening") : l("morning")), lg("peasant"));
+ if (($BETASERVER || debug) && BaseLevel < 60) goto L_PowerUp;
+ close;
+
+L_PowerUp:
+ next;
+ mesn strcharinfo(0);
+ mesq l("Could you awake my lost and forsaken potential?");
+ next;
+ mesn;
+ mesq l("Yes. I can. But this is irreversible. Are you sure you want this?");
+ next;
+ mesc l("Awake lost potential? This will mess with your char data irreversibly, beware."), 1;
+ if (askyesno() == ASK_NO) close;
+ .@equip=true;
+ // IP Blacklist
+ if (array_find($@IPBLIST$, getcharip()) >= 0)
+ .@equip=false;
+ else
+ array_push($@IPBLIST$, getcharip());
+
+ // Level up
+ freeloop(true);
+ while (BaseLevel < 60)
+ getexp NextBaseExp, 100;
+ freeloop(false);
+
+ // Skip a few quests
+ setq ShipQuests_Arpan, 5;
+ if (getq(General_Narrator) < 17) {
+ // Homunculus
+ sk_lvup(AM_REST);
+ sk_lvup(AM_RESSURECTHOMUN);
+ sk_lvup(AM_CALLHOMUN);
+ setq General_Narrator, 17;
+ }
+
+ // Monster points
+ MPQUEST=true;
+ if (!Mobpt)
+ Mobpt+=1000000;
+
+ // Magic Power
+ adddefaultskills();
+ if (!MAGIC_LVL) {
+ sk_lvup(AL_DP);
+ MAGIC_LVL=1;
+ }
+
+ // Crafting
+ if (!CRAFTQUEST) {
+ sk_lvup(TMW2_CRAFT);
+ getitembound RecipeBook, 1, 4;
+ CRAFTQUEST=true;
+ }
+
+ // Free skills
+ sk_lvup(TMW2_MANABOMB);
+ sk_lvup(any(TMW2_FROSTDIVER, TMW2_NAPALMBEAT, TMW2_MAGICSTRIKE, TMW2_METEORSTRIKE, TMW2_FIREARROW, TMW2_BRAWLING, TMW2_FALKONSTRIKE, TMW2_CHARGEDARROW));
+
+ // Pure awesomeness
+ getitembound any(StrengthFruit, AgilityFruit, VitalityFruit, IntelligenceFruit, DexterityFruit, LuckFruit), 1, 4;
+ getitembound any(StrengthFruit, AgilityFruit, VitalityFruit, IntelligenceFruit, DexterityFruit, LuckFruit), 1, 4;
+
+ // Full power
+ getitembound Wurtzite, 6, 4;
+ getitembound Bread, 10, 4;
+
+ // Regeneration and misc
+ percentheal 100,100;
+ mesc l("You awake a long forgotten potential, and feel ready to take over the world.");
+ close;
+
+OnInit:
+ .distance=4;
+ if (!$BETASERVER && !debug)
+ disablenpc .name$;
+ end;
+}
+