PHP Code:
ArgumentException was unhandled
There's no column called 'superboss' for this object
Parameter name: columnName
Reading Code
PHP Code:
mf.SuperBossVariable = monsters[x].SuperBoss;
PHP Code:
[XmlAttribute("SuperBoss")]
[Bindable(true)]
public uint SuperBoss
{
get { return GetColumnValue<uint>(Columns.SuperBoss); }
set { SetColumnValue(Columns.SuperBoss, value); }
}
PHP Code:
public static string SuperBoss = @"superboss";
PHP Code:
public static TableSchema.TableColumn superboss
{
get { return Schema.Columns[48]; }
}
whats wrong ? And what should i do to Fix this Problem i've Tried Alot
Regards
shadowman123






