sheivan
Member
Can someone explain me the red stuff? Thanks
Something is wrong because 2 players can go into the arena but theyre blue to each others and when one dies, nothing happen, they just stay in the arena.
I also have an issue with ''Event Controller'' since I cant seem to be able to [add them in game
Thank you!
Just realized that duels can only end if they tie (15 minutes)
Something is wrong because 2 players can go into the arena but theyre blue to each others and when one dies, nothing happen, they just stay in the arena.
I also have an issue with ''Event Controller'' since I cant seem to be able to [add them in game
C#:
using System;
using Server.Items;
namespace Server.Engines.ConPVP
{
public abstract class EventController : Item
{
public EventController()
: base(0x1B7A)
{
this.Visible = false;
this.Movable = false;
}
public EventController(Serial serial)
: base(serial)
{
}
public abstract string Title { get; }
public abstract EventGame Construct(DuelContext dc);
public abstract string GetTeamName(int teamID);
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0);
}
Thank you!
Post automatically merged:
Just realized that duels can only end if they tie (15 minutes)
Last edited: