[HELP]

01/16/2010 00:12 alexik#1
When i drop items, all dissapear... how can i fix it? Here? :

try
{
if (World.BroadCastCount > 0 && DateTime.Now > World.LastBroadCast.AddMinutes(1))
{
BroadCastMessage B = World.BroadCasts[0];

for (int i = 0; i < World.BroadCastCount; i++)
World.BroadCasts[i] = World.BroadCasts[i + 1];

World.BroadCastCount--;

World.SendMsgToAll(B.Name, B.Message, 2500, 0);
World.LastBroadCast = DateTime.Now;
World.CurrentBC = B;
}
}
catch { }
try



What can i do here?
01/17/2010 08:48 Arcо#2
Quote:
Originally Posted by alexik View Post
When i drop items, all dissapear... how can i fix it? Here? :

try
{
if (World.BroadCastCount > 0 && DateTime.Now > World.LastBroadCast.AddMinutes(1))
{
BroadCastMessage B = World.BroadCasts[0];

for (int i = 0; i < World.BroadCastCount; i++)
World.BroadCasts[i] = World.BroadCasts[i + 1];

World.BroadCastCount--;

World.SendMsgToAll(B.Name, B.Message, 2500, 0);
World.LastBroadCast = DateTime.Now;
World.CurrentBC = B;
}
}
catch { }
try



What can i do here?
If you are a GM/PM you cannot drop items at all, only normal players can.
And this code has nothing to do with dropping items.