Numerous corrections and fixes to the honor virtue.
http://www.runuo.com/community/threads/ready-honour-virtue-bugs.428439/
This commit is contained in:
parent
f5e7b9ed30
commit
d530fa2ffa
7 changed files with 137 additions and 76 deletions
35
Scripts/Gumps/honorself.cs
Normal file
35
Scripts/Gumps/honorself.cs
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
using System;
|
||||
using Server;
|
||||
using Server.Network;
|
||||
using Server.Mobiles;
|
||||
using Server.Accounting;
|
||||
|
||||
namespace Server.Gumps
|
||||
{
|
||||
public class HonorSelf: Gump
|
||||
{
|
||||
PlayerMobile m_from;
|
||||
public HonorSelf( PlayerMobile from ) : base( 150, 50 )
|
||||
{
|
||||
m_from = from;
|
||||
AddBackground(0, 0, 245, 145, 9250);
|
||||
AddButton(157, 101, 247, 248, 1, GumpButtonType.Reply, 0);
|
||||
AddButton(81, 100, 241, 248, 0, GumpButtonType.Reply, 0);
|
||||
AddHtml( 21, 20, 203, 70, @"Are you sure you want to use
|
||||
honor points on yourself?", true, false);
|
||||
}
|
||||
|
||||
public override void OnResponse( NetState sender, RelayInfo info )
|
||||
{
|
||||
|
||||
if ( info.ButtonID == 1 )
|
||||
{
|
||||
HonorVirtue.ActivateEmbrace(m_from);
|
||||
}
|
||||
else
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue