Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE><I>Oracle look at you fixedly while you approach.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Hello young adventurer ! I need help ! *pensive*<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>I made a stupid bet ! The Gods challenge me to find an adventurer capable to give me the four Elements which I need.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Are you the one who will deserve such a task ?. Each let me an enigma to resolve.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You must find so the solution of each of these enigma. You must go to visit each God to say his name followed by the solution.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>He will give you then one of the Elements that you should bring me back.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>If you manage to obtain me four Elements I shall know how to reward you !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Here is so the first enigma.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Without wing I fly.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Without voice I scream.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Without eyes I see.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Who am I ?</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Visit Hephaistos the God of the Fire, he is somewhere on the ile of Lava and Chaos.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Go my friend, give he first answer and return for give me the Element of the Fire !<BR><BR>" +
|
||||
|
||||
|
||||
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,94 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
Commands.Register("ElementQuestGump", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE><I>Oracle look at you fixedly while you approach.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Hello young adventurer ! I need help ! *pensive*<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>I made a stupid bet ! The Gods challenge me to find an adventurer capable to give me the four Elements which I need.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Are you the one who will deserve such a task ?. Each let me an enigma to resolve.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You must find so the solution of each of these enigma. You must go to visit each God to say his name followed by the solution.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>He will give you then one of the Elements that you should bring me back.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>If you manage to obtain me four Elements I shall know how to reward you !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Here is so the first enigma.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Without wing I fly.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Without voice I scream.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Without eyes I see.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Who am I ?</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Visit Hephaistos the God of the Fire, he is somewhere on the ile of Avatar.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Go my friend, give he first answer and return for give me the Element of the Fire !<BR><BR>" +
|
||||
|
||||
|
||||
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump1 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump1", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump1_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump1_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump1(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump1(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>What ? You managed to decipher my enigma !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>I congratulate you young adventurer ! Well little found the answer of it ! *smiles*<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Now take this phial and bring it to the Oracle which needs it.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>The God give you Element of Fire.</I> You must Hurry, the time is counted !<BR><BR>" +
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump10 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump10", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump10_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump10_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump10(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump10(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
|
||||
"<BASEFONT COLOR=ORANGE>Very good ! *smiles* You have as much perspicacity as courage !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>As promises, here is a reward amply deserved.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>The Pythie give him a Bracelet of Elements.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>This will be for you a big help.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Goodbye young adventurer !<BR><BR>" +
|
||||
|
||||
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,84 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump2 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump2", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump2_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump2_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump2(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump2(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>What ? You succeeded ! I was sure of it !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Also, don't you stop now !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>So Here is second Enigma.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>As soon as one names me I don't exist any more.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Who am I ?.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You'll find Eole,the God of Winds somewhere in Wind.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You must go to see him, give him the answer and return me the Element of Air.<BR><BR>" +
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,82 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump3 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump3", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump3_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump3_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump3(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump3(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>What ? You managed to decipher my enigma !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>I congratulate you young adventurer ! Well little found the answer of it ! *smiles*<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Now take this phial and bring it to the Oracle which needs it.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>The God give you Element of Air.</I> You must Hurry, the time is counted !<BR><BR>" +
|
||||
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump4 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump4", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump4_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump4_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump4(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump4(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>What ? You succeeded ! I was sure of it !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Also, don't stop you here !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Here is third Enigma.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Sometimes I am strong.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Sometimes I am weak.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>I speak about all the languages.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Without never having them learnt.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Who am I ?</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You'll find Pos<6F>idon,the God of Seas somewhere along coast toward the temple of the Justice.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You must Go to see him, give him the answer and return me the Element of Water.<BR><BR>" +
|
||||
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump5 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump5", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump5_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump5_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump5(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump5(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>What ? You managed to decipher my enigma !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>I congratulate you young adventurer ! Well little found the answer of it ! *smile*<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Now take this phial and bring it to the Oracle which needs it.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>The God give you Element of Water.</I> You must Hurry, the time is counted !<BR><BR>" +
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,86 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump6 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump6", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump6_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump6_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump6(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump6(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>What ? You succeeded ! I was sure of it !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Also, don't stop her !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Here is the fourth and last Enigma.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>As long as I live I destroy.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>As soon as I drink I die.</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>Who am I ?</I><BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You'll find Ga<47>a the Goddess of the Earth somewhere in a caverne of Minoc.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You must Go to see him, give him the answer and return me the Element of Earth !<BR><BR>" +
|
||||
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,80 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump7 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump7", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump7_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump7_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump7(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump7(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>What ? You managed to decipher my enigma !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>I congratulate you young adventurer ! Well little found the answer of it ! *smiles*<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Now take this phial and bring it to the Oracle which needs it.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE><I>The God give you Element of Earth.</I> You must Hurry, the time is counted !<BR><BR>" +
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump8 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump8", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump8_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump8_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump8(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump8(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>What ? You succeeded ! I was sure of it !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You brought me four El<45>ments !<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Now, join the fragments of the parchments that I gave you.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>Go to the library and give the parchment of knowledge to Archambeau his conservative.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>He'll say you where is the Pythie which will put back you your reward.<BR><BR>" +
|
||||
|
||||
|
||||
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class ElementQuestGump9 : Gump
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("ElementQuestGump9", AccessLevel.GameMaster, new CommandEventHandler(ElementQuestGump9_OnCommand));
|
||||
}
|
||||
|
||||
private static void ElementQuestGump9_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
e.Mobile.SendGump(new ElementQuestGump9(e.Mobile));
|
||||
}
|
||||
|
||||
public ElementQuestGump9(Mobile owner)
|
||||
: base(50, 50)
|
||||
{
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
||||
AddPage(0);
|
||||
AddImageTiled(54, 33, 369, 400, 2624);
|
||||
AddAlphaRegion(54, 33, 369, 400);
|
||||
|
||||
AddImageTiled(416, 39, 44, 389, 203);
|
||||
//--------------------------------------Window size bar--------------------------------------------
|
||||
|
||||
AddImage(97, 49, 9005);
|
||||
AddImageTiled(58, 39, 29, 390, 10460);
|
||||
AddImageTiled(412, 37, 31, 389, 10460);
|
||||
AddLabel(140, 60, 0x34, "Four Elements's Quest");
|
||||
|
||||
|
||||
AddHtml(107, 140, 300, 230, "<BODY>" +
|
||||
//----------------------/----------------------------------------------/
|
||||
"<BASEFONT COLOR=ORANGE>Hello young adventurer, I see that you managed to obtain the Parchment of the Knowledge.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>But it is not sufficient, you must give the Parchment of the Wisdom to the Pythie.<BR><BR>" +
|
||||
"<BASEFONT COLOR=ORANGE>You will find her towards the Temple of the Justice, she will know how to reward you.<BR><BR>" +
|
||||
|
||||
|
||||
|
||||
|
||||
"</BODY>", false, true);
|
||||
|
||||
|
||||
AddImage(430, 9, 10441);
|
||||
AddImageTiled(40, 38, 17, 391, 9263);
|
||||
AddImage(6, 25, 10421);
|
||||
AddImage(34, 12, 10420);
|
||||
AddImageTiled(94, 25, 342, 15, 10304);
|
||||
AddImageTiled(40, 427, 415, 16, 10304);
|
||||
AddImage(-10, 314, 10402);
|
||||
AddImage(56, 150, 10411);
|
||||
AddImage(155, 120, 2103);
|
||||
AddImage(136, 84, 96);
|
||||
|
||||
AddButton(225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState state, RelayInfo info) //Function for GumpButtonType.Reply Buttons
|
||||
{
|
||||
Mobile from = state.Mobile;
|
||||
|
||||
switch (info.ButtonID)
|
||||
{
|
||||
case 0: //Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user