#W# Source and Scripts added. Added Scripts/Settings.cs to expose some basic tweak able settings.

This commit is contained in:
WarrentyExpired 2026-08-06 11:06:05 -04:00
parent b51c58f514
commit 3045c83799
3512 changed files with 627673 additions and 0 deletions

View file

@ -0,0 +1,77 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Server.Engines.MLQuests
{
public class QuestArea
{
private TextDefinition m_Name; // So we can add custom names, different from the Region name
private string m_RegionName;
private Map m_ForceMap;
public TextDefinition Name
{
get { return m_Name; }
set { m_Name = value; }
}
public string RegionName
{
get { return m_RegionName; }
set { m_RegionName = value; }
}
public Map ForceMap
{
get { return m_ForceMap; }
set { m_ForceMap = value; }
}
public QuestArea( TextDefinition name, string region )
: this( name, region, null )
{
}
public QuestArea( TextDefinition name, string region, Map forceMap )
{
m_Name = name;
m_RegionName = region;
m_ForceMap = forceMap;
if ( MLQuestSystem.Debug )
ValidationQueue<QuestArea>.Add( this );
}
public bool Contains( Mobile mob )
{
return Contains( mob.Region );
}
public bool Contains( Region reg )
{
if ( reg == null || ( m_ForceMap != null && reg.Map != m_ForceMap ) )
return false;
return reg.IsPartOf( m_RegionName );
}
// Debug method
public void Validate()
{
bool found = false;
foreach ( Region r in Region.Regions )
{
if ( r.Name == m_RegionName && ( m_ForceMap == null || r.Map == m_ForceMap ) )
{
found = true;
break;
}
}
if ( !found )
Console.WriteLine( "Warning: QuestArea region '{0}' does not exist (ForceMap = {1})", m_RegionName, ( m_ForceMap == null ) ? "-null-" : m_ForceMap.ToString() );
}
}
}