I got error in my mob.cs line 688
just look at the image file I inlcude here.
just look at the image file I inlcude here.
Quote:
try replacing
byte Tries = (byte)Rnd.Next(0, From.Count);
ItemID = (uint)From[Tries];
with
int Tries = (byte)Rnd.Next(0, From.Count);
ItemID = Convert.ToUInt32(From[Tries]);
Quote:
try replacing
byte Tries = (byte)Rnd.Next(0, From.Count);
ItemID = (uint)From[Tries];
with
int Tries = (byte)Rnd.Next(0, From.Count);
ItemID = Convert.ToUInt32(From[Tries]);