//Created By -Tatsu- //_______-`'; ~ Balance is Power ~;'`-_________ //___________ Dragons Den _____________ using System; using System.Collections; using Server; using Server.Items; using Server.Mobiles; using Server.Gumps; namespace Server.Scripts.Commands { public class Rules { public static void Initialize() { Server.Commands.Register( "Rules", AccessLevel.Player, new CommandEventHandler( Rules_OnCommand ) ); } public static void Rules_OnCommand( CommandEventArgs e ) { e.Mobile.CloseGump( typeof ( RulesGump ) ); e.Mobile.SendGump( new RulesGump() ); } } } namespace Server.Gumps { public class RulesGump : Gump { public RulesGump() : base( 100, 100 ) { this.Closable=true; this.Dragable=true; this.Resizable=false; this.AddPage(0); this.AddBackground( 0, 0, 560, 480, 2520 ); this.AddLabel(260, 15, 0, @"R u l e s !"); this.AddLabel(380, 450, 1030, @"Created By:");//Please, Don't Edit this Line this.AddLabel(470, 450, 1030, @"-Tatsu-");//Please, Don't Edit this Line this.AddPage(1); this.AddLabel(50, 40, 1335, @"More Rules May be added at any time. Please Check bach here often."); this.AddLabel(20, 60, 1335, @"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"); this.AddLabel(20, 80, 0, @"1. Do not ask to become staff. If a position is vacated, Head Admin. will choose."); this.AddLabel(20, 100, 0, @"2. Do not ask for FREE items /gear/skill raises/stat increases/spawns/...etc."); this.AddLabel(20, 120, 0, @"3. Do not advertise another shard. It is counter-productive and just plain rude!"); this.AddLabel(20, 140, 0, @"4. Do not use any vulgarities over the Central Chat System; nor cause harassment."); this.AddLabel(20, 160, 0, @"5. Do not take advantage of exploits,scams, bugs, glitches. Report them to Staff."); this.AddLabel(20, 180, 0, @"6. Do not PVP or train animals (ANY PETS EVOS INCLUDED) in Training Rooms. "); this.AddLabel(20, 200, 0, @"7. No Res Killing. (meaning if player is not fully dressed and Hitpoints back to cap.)"); this.AddLabel(20, 220, 0, @"8. Do not ask for staffs attention in any way except the Paging System."); this.AddLabel(20, 240, 0, @"9. Do not ask staff to assist you in killing any spawn. They will not do such."); this.AddLabel(20, 260, 0, @"10. When using the Paging System, get to the Point."); this.AddLabel(30, 280, 0, @"EX: Hey, can you come here? Is(name)online. Paged to inform you that I like Pizza."); this.AddLabel(20, 300, 0, @"11. Do not ask for any item, pet, gear returned if you lose it. It's Gone."); this.AddLabel(30, 320, 0, @"Unless shard glitched, then we will check logs and decide the best course of action."); this.AddLabel(20, 340, 0, @"12. WE ARE NOT A TRANSPORTATION SYSTEM Do not ask to be Teleported."); this.AddButton( 50, 450, 2437, 2438, 1335, GumpButtonType.Page, 2 ); this.AddPage(2); this.AddLabel(50, 40, 1335, @"Reward System:"); this.AddLabel(20, 60, 1335, @"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"); this.AddLabel(20, 80, 2520, @" § Recruitment to Shard. "); this.AddLabel(20, 100, 2520, @" § Helping many other new players to learn the ways of the Game."); this.AddLabel(20, 120, 2520, @" § Following the above rules for a timespan without any infractions. "); this.AddLabel(20, 140, 2520, @" § Reporting glitches or exploits that can corrupt the gameplay balance."); this.AddLabel(20, 160, 2520, @" § Reporting problems with a script."); this.AddLabel(40, 180, 2520, @" EX: vendor stone not giving item upon payment."); this.AddLabel(20, 240, 2520, @" Rewards could Include but not limited to:"); this.AddLabel(30, 260, 2520, @" Dragon Den Coin"); this.AddLabel(30, 280, 2520, @" Pat on the Back and a Thank You"); this.AddLabel(30, 300, 2520, @" Some Tokens"); this.AddLabel(30, 320, 2520, @" Gold"); this.AddLabel(30, 340, 2520, @" An Item"); this.AddButton( 40, 450, 2435, 2436, 1335, GumpButtonType.Page, 1 ); this.AddButton( 50, 450, 2437, 2438, 1335, GumpButtonType.Page, 3 ); this.AddPage(3); this.AddLabel(50, 40, 1335, @"The Do's of Dragon's Den"); this.AddLabel(20, 60, 1335, @"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"); this.AddLabel(20, 80, 2520, @" DO Have fun!"); this.AddLabel(20, 120, 2520, @" DO enjoy your time here!"); this.AddLabel(20, 160, 2520, @" DO learn something new every day!"); this.AddLabel(20, 200, 2520, @" DO work as a team and benefit from friendship!"); this.AddLabel(20, 240, 2520, @" DO respect the shard host Jebbit; for without him, we wouldnt be here!"); this.AddLabel(20, 280, 2520, @" DO respect the staff, for their valuable time they put in for the benefit of all!"); this.AddLabel(20, 320, 2520, @" DO say thank you every now and then. We never get tired of hearing it!"); this.AddLabel(80, 360, 2520, @"Thank YOU for making this place our Home!"); this.AddButton( 40, 450, 2435, 2436, 1335, GumpButtonType.Page, 2 ); } } }