RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Fixing Bombing Run need alittle help

UOExtreme

Sorceror
this is the Error im coming up with and I cant see where to find whats Wrong

Server Crash Report
===================

RunUO Version 2.4, Build 5043.26759
Operating System: Microsoft Windows NT 6.1.7600.0
.NET Framework: 4.0.30319.1
Time: 8/4/2014 5:41:05 PM
Mobiles: 8475
Items: 330422
Exception:
System.NullReferenceException: Object reference not set to an instance of an object.
at Server.Items.BombRunController.EndBombRun(String team)
at Server.Commands.CommandSystem.Handle(Mobile from, String text, MessageType type)
at Server.Mobile.DoSpeech(String text, Int32[] keywords, MessageType type, Int32 hue)
at Server.Network.PacketHandlers.UnicodeSpeech(NetState state, PacketReader pvSrc)
at Server.Network.MessagePump.HandleReceive(NetState ns)
at Server.Network.MessagePump.Slice()
at Server.Core.Main(String[] args)

Clients:
- Count: 1
 

Attachments

  • Bomb Run.zip
    16.8 KB · Views: 4

haazen

Sorceror
Just as a suggestion On the command line to launch your server add -degug then crash will tell you exact line numbers of the problems. Having said that:

You method public static void EndBombRun(string team) at line 551 in BombRunController.cs

First guess, some other script is calling this method with string team being null

The error says some variable is null. My first guess is team

Good luck
 
Top