Code:
System.NullReferenceException: Object reference not set to an instance of an obj
ect.
   at CustomsFramework.Systems.VIPSystem.VIPModule.Check()
   at Server.World.Load() in c:\Users\Desktop\Server\World.c
s:line 882
   at Server.Core.Main(String[] args) in c:\Users\Desktop\Se
rver\Main.cs:line 588
This exception is fatal, press return to exit

Definately don't know what happened here.
 
Code:
public void Check()
{
if (!this.LinkedMobile.Deleted || this.LinkedMobile != null)
This if check should probably check for null first and(not or) check if its not deleted would be my guess, but I didn't write the system. You could change it to the following (code is in Scripts/Custom Systems/VIP System/Core/VIPModule.cs)
Code:
public void Check()
{
if (LinkedMobile != null && !LinkedMobile.Deleted)
 
Back