Türkiye'nin en eski ve aktif online oyun platformu, Ultima Online, Counter-Strike ve diğer online oyunlar hakkında Türkçe haber, bilgi ve forum sunuyor. Türkiye'nin en eski ve aktif online oyun platformu, Ultima Online, Counter-Strike ve diğer online oyunlar hakkında Türkçe haber, bilgi ve forum sunuyor.
  • ANASAYFA
  • ULTIMA ONLINE
    • Ultima Online Oyuncu Rehberi

      Ultima Online Oyuncu Rehberi

      Oyunu hakkında tanıcı bilgiler ve ipuçları

    • Ultima Online Server List

      Ultima Online Server List

      Önemli özellikleri ve online oyuncu sayıları

    • Ultima Online Script

      Ultima Online Script

      Sphere, RunUO, Razor scriptleri

    • Ultima Online Forum

      Ultima Online Forum

      UO hakkında görüş alışverişi

  • FORUM
  • DOKÜMAN
  • İNDİR
  • DISCORD 22
   Üye ol    Giriş
282
  1. UO Scriptleri
  2. RunUO Scripts
  3. Gumps
  4. Namers Help Gump v2

Namers Help Gump v2

  • 2006-05-02 22:15
  • 0 Yorumlar
  • 1571 Görüntüleme
// Design By CherNoBeL(Namer)
using System;
using Server;
using Server.Gumps;
using Server.Network;
using Server.Menus;
using Server.Menus.Questions;
using Server.Accounting;
using Server.Multis;
using Server.Mobiles;

namespace Server.Engines.Help
{
public class ContainedMenu : QuestionMenu
{
private Mobile m_From;

public ContainedMenu( Mobile from ) : base( "Kayitli yardim talebiniz zaten bulunmakta en kisa surede size yardim edecegiz.", new string[]{ "Eski talebimi oldugu gibi birak.", "Yardim talibimi siradan kaldir." } )
{
m_From = from;
}

public override void OnCancel( NetState state )
{
m_From.SendMessage( "Yardim talebi degistirilmedi.", 0x35, true ); // Yardim talebi degistirilmedi.
}

public override void OnResponse( NetState state, int index )
{
if ( index == 0 )
{
m_From.SendMessage( "Yardim talebi degistirilmedi.", 0x35, true ); // Yardim talebi degistirilmedi.
}
else if ( index == 1 )
{
PageEntry entry = PageQueue.GetEntry( m_From );

if ( entry != null && entry.Handler == null )
{
m_From.SendMessage( "Yardim talebi siradan kaldirildi.", 0x35, true ); // Yardim talebi siradan kaldirildi.
PageQueue.Remove( entry );
}
else
{
m_From.SendMessage( "Yardim talebi degistirilmedi.", 0x35, true ); // Yardim talebi degistirilmedi.
}
}
}
}

public class HelpGump : Gump
{
public static void Initialize()
{
EventSink.HelpRequest += new HelpRequestEventHandler( EventSink_HelpRequest );
}

private static void EventSink_HelpRequest( HelpRequestEventArgs e )
{
foreach ( Gump g in e.Mobile.NetState.Gumps )
{
if ( g is HelpGump )
return;
}

if ( !PageQueue.CheckAllowedToPage( e.Mobile ) )
return;

if ( PageQueue.Contains( e.Mobile ) )
e.Mobile.SendMenu( new ContainedMenu( e.Mobile ) );
else
e.Mobile.SendGump( new HelpGump( e.Mobile ) );
}

private static bool IsYoung( Mobile m )
{
if ( m is PlayerMobile )
return ((PlayerMobile)m).Young;

return false;
}

public static bool CheckCombat( Mobile m )
{
for ( int i = 0; i < m.Aggressed.Count; ++i )
{
AggressorInfo info = (AggressorInfo)m.Aggressed[i];

if ( DateTime.Now - info.LastCombatTime < TimeSpan.FromSeconds( 30.0 ) )
return true;
}

return false;
}

public HelpGump( Mobile from ) : base( 0, 0 )
{
from.CloseGump( typeof( HelpGump ) );

bool isYoung = IsYoung( from );

this.Closable=true;
this.Disposable=true;
this.Dragable=true;
this.Resizable=false;
this.AddBackground(28, 58, 532, 356, 9200);
this.AddAlphaRegion(181, 61, 379, 50);
this.AddAlphaRegion(181, 112, 377, 299);
this.AddLabel(297, 388, 1160, @"www.turkishuo.com");
this.AddLabel(472, 388, 1152, @"By CherNoBel");
this.AddLabel(301, 62, 1160, @"Turkish UO");
this.AddLabel(301, 83, 1160, @"Yardim Konulari");
this.AddLabel(201, 122, 1160, @"Yardım Bölümü");
this.AddAlphaRegion(30, 62, 149, 350);
this.AddLabel(189, 146, 1152, @"* Bu bölümde güncel sorunlarınıza cevaplar bulacaksınız");
this.AddLabel(189, 170, 1152, @"* Bu bölümde verilen cevaplar sabit yetkili cevaplarıdır");
this.AddLabel(189, 191, 1152, @"* Daha fazla detaylı bilgi icin ");
this.AddLabel(374, 190, 1160, @"www.turkishuo.com/forum");
this.AddLabel(189, 212, 1152, @"* Gereksiz sorulan soruların cezası jail dir");
this.AddImageTiled(412, 164, 148, 245, 60970);
this.AddLabel(191, 263, 1152, @"* Nm Spawn süresi : 1 Hafta ");
this.AddLabel(201, 238, 1160, @"Spawn Süreleri ;");
this.AddLabel(191, 283, 1152, @"* Unicorn Spawn Süresi: 1 Hafta ");
this.AddLabel(191, 304, 1152, @"* Kirin Spawn süresi : 1 Hafta ");
this.AddLabel(191, 321, 1152, @"* Fire steed spawn süresi : 1 Hafta");
this.AddLabel(191, 343, 1152, @"* Silver Steed spawn süresi : 1 Hafta ");
this.AddLabel(191, 363, 1152, @"* White&Dark Ostard YAKINDA! ");
this.AddLabel(69, 119, 1152, @"Mesaj Gönder");
this.AddLabel(33, 67, 67, @"Seçenekler ;");
this.AddLabel(70, 144, 1152, @"Bug Bildir");
this.AddLabel(70, 171, 1152, @"Stuck Çek");


AddPage( 0 );

//AddHtmlLocalized( 150, 50, 360, 40, 1001002, false, false ); // <CENTER><U>Ultima Online Help Menu</U></CENTER>
//AddButton( 425, 415, 2073, 2072, 0, GumpButtonType.Reply, 0 ); // Close

AddPage( 1 );

if ( isYoung )
{
//AddButton( 80, 75, 5540, 5541, 9, GumpButtonType.Reply, 2 );
//AddHtml( 110, 75, 450, 58, @"<BODY><BASEFONT COLOR=BLACK><u>Young Player Haven Transport.</u> Select this option if you want to be transported to Haven.</BODY>", true, true );

AddButton(38, 119, 9905, 9905, 1, GumpButtonType.Reply, 2 );

AddButton(38, 171, 9905, 9905, 2, GumpButtonType.Reply, 0 );

AddButton(37, 145, 9905, 9905, 4, GumpButtonType.Reply, 0 );

//AddButton( 80, 270, 5540, 5541, 0, GumpButtonType.Page, 3 );
//AddHtml( 110, 270, 450, 58, @"<u>Another player is harassing me.</u> Another player is verbally harassing your character. When you select this option you will be sending a text log to Origin Systems. To see what constitutes harassment please visit http://support.uo.com/gm_9.html.", true, true );

//AddButton( 80, 335, 5540, 5541, 0, GumpButtonType.Page, 2 );
//AddHtml( 110, 335, 450, 58, @"<u>Other.</u> If you are experiencing a problem in the game that does not fall into one of the other categories or is not addressed on the Support web page (located at http://support.uo.com), please use this option.", true, true );
}
else
{
AddButton(38, 119, 9905, 9905, 1, GumpButtonType.Reply, 2 );

AddButton(38, 171, 9905, 9905, 2, GumpButtonType.Reply, 0 );

//AddButton( 80, 250, 5540, 5541, 0, GumpButtonType.Page, 3 );
//AddHtml( 110, 250, 450, 74, @"<u>Another player is harassing me.</u> Another player is verbally harassing your character. When you select this option you will be sending a text log to Origin Systems. To see what constitutes harassment please visit http://support.uo.com/gm_9.html.", true, true );

//AddButton( 80, 330, 5540, 5541, 0, GumpButtonType.Page, 2 );
//AddHtml( 110, 330, 450, 74, @"<u>Other.</u> If you are experiencing a problem in the game that does not fall into one of the other categories or is not addressed on the Support web page (located at http://support.uo.com), please use this option.", true, true );
}

AddPage( 1 );

//AddButton( 80, 90, 5540, 5541, 3, GumpButtonType.Reply, 0 );
//AddHtml( 110, 90, 450, 74, @"<u>Report a bug or contact Origin.</u> Use this option to launch your web browser and mail in a bug report. Your report will be read by our Quality Assurance Staff. We apologize for not being able to reply to individual reports. ", true, true );

//AddButton( 119, 257, 4502, 248, 4, GumpButtonType.Reply, 0 );

//AddButton( 80, 250, 5540, 5541, 5, GumpButtonType.Reply, 0 );
//AddHtml( 110, 250, 450, 74, @"<u>Account Management</u> For questions regarding your account such as forgotten passwords, payment options, account activation, and account transfer, please choose this option.", true, true );

//AddButton( 80, 330, 5540, 5541, 6, GumpButtonType.Reply, 0 );
//AddHtml( 110, 330, 450, 74, @"<u>Other.</u> If you are experiencing a problem in the game that does not fall into one of the other categories or is not addressed on the Support web page (located at http://support.uo.com), and requires in-game assistance, use this option. ", true, true );

AddPage( 3 );

AddButton( 80, 90, 5540, 5541, 7, GumpButtonType.Reply, 0 );
AddHtmlLocalized( 110, 90, 450, 145, 1062572, true, true ); /* <U><CENTER>Another player is harassing me (or Exploiting).</CENTER></U><BR>
* VERBAL HARASSMENT<BR>
* Use this option when another player is verbally harassing your character.
* Verbal harassment behaviors include but are not limited to, using bad language, threats etc..
* Before you submit a complaint be sure you understand what constitutes harassment
* <A HREF="http://uo.custhelp.com/cgi-bin/uo.cfg/php/enduser/std_adp.php?p_faqid=40">? what is verbal harassment? -</A>
* and that you have followed these steps:<BR>
* 1. You have asked the player to stop and they have continued.<BR>
* 2. You have tried to remove yourself from the situation.<BR>
* 3. You have done nothing to instigate or further encourage the harassment.<BR>
* 4. You have added the player to your ignore list.
* <A HREF="http://uo.custhelp.com/cgi-bin/uo.cfg/php/enduser/std_adp.php?p_faqid=138">- How do I ignore a player?</A><BR>
* 5. You have read and understand Origin?s definition of harassment.<BR>
* 6. Your account information is up to date. (Including a current email address)<BR>
* *If these steps have not been taken, GMs may be unable to take action against the offending player.<BR>
* **A chat log will be review by a GM to assess the validity of this complaint.
* Abuse of this system is a violation of the Rules of Conduct.<BR>
* EXPLOITING<BR>
* Use this option to report someone who may be exploiting or cheating.
* <A HREF="http://uo.custhelp.com/cgi-bin/uo.cfg/php/enduser/std_adp.php?p_faqid=41">? What constitutes an exploit?</a>
*/

AddButton( 80, 240, 5540, 5541, 8, GumpButtonType.Reply, 0 );
AddHtmlLocalized( 110, 240, 450, 145, 1062573, true, true ); /* <U><CENTER>Another player is harassing me using game mechanics.</CENTER></U><BR>
* <BR>
* PHYSICAL HARASSMENT<BR>
* Use this option when another player is harassing your character using game mechanics.
* Physical harassment includes but is not limited to luring, Kill Stealing, and any act that causes a players death in Trammel.
* Before you submit a complaint be sure you understand what constitutes harassment
* <A HREF="http://uo.custhelp.com/cgi-bin/uo.cfg/php/enduser/std_adp.php?p_faqid=59"> ? what is physical harassment?</A>
* and that you have followed these steps:<BR>
* 1. You have asked the player to stop and they have continued.<BR>
* 2. You have tried to remove yourself from the situation.<BR>
* 3. You have done nothing to instigate or further encourage the harassment.<BR>
* 4. You have added the player to your ignore list.
* <A HREF="http://uo.custhelp.com/cgi-bin/uo.cfg/php/enduser/std_adp.php?p_faqid=138"> - how do I ignore a player?</A><BR>
* 5. You have read and understand Origin?s definition of harassment.<BR>
* 6. Your account information is up to date. (Including a current email address)<BR>
* *If these steps have not been taken, GMs may be unable to take action against the offending player.<BR>
* **This issue will be reviewed by a GM to assess the validity of this complaint.
* Abuse of this system is a violation of the Rules of Conduct.
*/

AddButton( 150, 390, 5540, 5541, 0, GumpButtonType.Page, 1 );
AddHtmlLocalized( 180, 390, 335, 40, 1001015, false, false ); // NO - I meant to ask for help with another matter.
}

public override void OnResponse( NetState state, RelayInfo info )
{
Mobile from = state.Mobile;

PageType type = (PageType)(-1);

switch ( info.ButtonID )
{
case 0: // Close/Cancel
{
from.SendMessage( "Yarim talebi iptal edildi.", 0x35, true ); // Yarim talebi iptal edildi.

break;
}
case 1: // General question
{
type = PageType.Question;
break;
}
case 2: // Stuck
{
BaseHouse house = BaseHouse.FindHouseAt( from );

if ( house != null && house.IsAosRules )
{
from.Location = house.BanLocation;
}
else if ( from.Region is Server.Regions.Jail )
{
from.SendMessage( "Bundan Daha Iyi Bir Kacis Planina Ihtiyacin var.", 0x35, true ); // You'll need a better jailbreak plan then that!
}
else if ( Factions.Sigil.ExistsOn( from ) )
{
from.SendLocalizedMessage( 1061632 ); // You can't do that while carrying the sigil.
}
else if ( from.CanUseStuckMenu() && from.Region.CanUseStuckMenu( from ) && !CheckCombat( from ) && !from.Frozen && !from.Criminal && (Core.AOS || from.Kills < 5) )
{
StuckMenu menu = new StuckMenu( from, from, true );

menu.BeginClose();

from.SendGump( menu );
}
else
{
type = PageType.Stuck;
}

break;
}
case 3: // Report bug or contact Origin
{
type = PageType.Bug;
break;
}
case 4: // Game suggestion
{
type = PageType.Suggestion;
break;
}
case 5: // Account management
{
type = PageType.Account;
break;
}
case 6: // Other
{
type = PageType.Other;
break;
}
case 7: // Harassment: verbal/exploit
{
type = PageType.VerbalHarassment;
break;
}
case 8: // Harassment: physical
{
type = PageType.PhysicalHarassment;
break;
}
case 9: // Young player transport
{
if ( IsYoung( from ) )
{
if ( from.Region is Regions.Jail )
{
from.SendLocalizedMessage( 1041530, "", 0x35 ); // You'll need a better jailbreak plan then that!
}
else if ( from.Region.Name == "Haven" )
{
from.SendLocalizedMessage( 1041529 ); // You're already in Haven
}
else
{
from.MoveToWorld( new Point3D( 3618, 2587, 0 ), Map.Trammel );
}
}

break;
}
}

if ( type != (PageType)(-1) && PageQueue.CheckAllowedToPage( from ) )
from.SendGump( new PagePromptGump( from, type ) );
}
}
}

Değerlendirmeler

0 0

Total votes: 0

Üye Ol veya Giriş Yap

Bu içeriğe yorum atmak istiyorsanız hemen üye olun veya giriş yapın.

Discord ile Bağlan
Twitch ile Bağlan
Steam ile Bağlan
Google ile Bağlan

Yorumlar (0)

Henüz yorum yapılmamış
Sadece kayıtlı kullanıcılar yeni yorum yapabilir.


Ultima-Strike Discord
Benzer Sayfalar
  • Gump patcher v0.8 (gump edit)

    2005-03-16 18:14

  • Gump Create

    2009-01-29 02:17

  • Pots Gump

    2006-05-02 22:12

  • Anim-Gump ID Hesaplayıcısı

    2007-04-04 19:33



  • Son Forumlar
  • Sayfalar
  • Nefrelius
    Alcor UO Reborn

    Sunucular 5 gün önce

  • System_Error
    Client Patlaması

    Ultima Online 1 hafta önce

  • georgm15
    CS2 turnuvaları tartışmalı başladı.

    Counter-Strike 2 1 hafta önce

  • georgm15
    Counter-Strike 1.6 İndir - Tek Link Hızlı-

    Counter-Strike 1 hafta önce

  • Robellious
    Üyeliği 15 yıl ve üzerinde olanlar.

    Ultima Online 1 hafta önce

  • Cihangir algın
    Razor Kullanımı

    RunUo Scripting 3 hafta önce

  • Lucretius
    Rampage Pvp

    Sunucular 4 hafta önce

  • Lucretius
    Nephilim Pvp

    Sunucular 4 hafta önce

  • redi4817
    NightUO

    Sunucular 4 hafta önce

  • Cengiz MERDİT
    Sphere 56T Nightly Sürümü

    Ultima Online 1 ay önce

  • aygun
    Esgaroth UO

    Sunucular 1 ay önce

  • deonist
    Alysa Pvp ( Aktif ! )

    Sunucular 1 ay önce

  • mthN
    Nebula Uo gerçekleri

    Ultima Online 2 ay önce

  • buffa
    Kullanılması Gereken Rate Ayarları

    Counter-Strike 2 ay önce

  • Lucretius
    Aktif Satılık Server !

    Sunucular 2 ay önce

  • Skill seçimlerinizi planlamak artık çok daha kolay

    Ultima Online Karakter Yapılandırma Aracı Bölümü Açıldı!

    2024-10-31 22:47

  • Ultima Online topluluğu, ClassicUO'nun sadece web client olarak kullanılabileceğinin açıklanmasının ardından tepkili.

    Resmi UO, Oyuncuları İkiye Böldü: Web Client Yeterli mi?

    2024-10-14 17:45

  • Ultima Online, ClassicUO ile resmi işbirliği yapıyor! Performans iyileştirmeleri, geniş oyun penceresi ve daha fazlası geliyor.

    Ultima Online, ClassicUO ile Resmi İşbirliğine Gidiyor

    2024-09-26 14:21

  • Centred#

    2024-07-08 22:50

  • CentrED+ 7.9

    2024-07-08 22:34

  • Distance(uzaklık) Sorgusu Hakkında

    2024-06-19 22:05

  • UoFiddler

    2024-06-01 02:19

  • UoFiddler ile Map Kopyalama

    2024-05-31 21:17

Menü
  • ANASAYFA
  • FORUM
  • DOKÜMAN
  • İNDİR
  • İLETİŞİM
  • Bağlantılar
  • CS 1.6 indir
  • CS 1.6 Türkçe
  • CS 1.6 Bot
  • CS 1.6 CFG
  • CS 1.6 Rate Ayarları
  • UO Server
  • Ghost Mouse indir
  • FPS Nedir?
  • Ultima Online PVP Server
  • Makroman
  • UO Karakter Yapılandırma
    © 2004 - 2025 Ultima-Strike. Her hakkı saklıdır.