Lag problem?

10/18/2010 03:52 BitzIn#1
[Only registered and activated users can see links. Click Here To Register...]

How do i fix this?
it causes lag =/
10/18/2010 04:17 hunterman01#2
Go to the line and copy it
10/18/2010 07:52 pro4never#3
Looks to me like you're trying to read information that does not exists or is invalid for the type you are trying to use it as.

Make sure the item you are creating is fully populated (eg: you are setting a proper item ID)

Chances are you are doing something like...

ItemInfo I = new ItemInfo();

if(PercentSuccess(X))
I.ID = MeteorId;

etcetcetc

Chances are you are under certain conditions NOT populating that field and therefor when you try to send the drop it won't actually work.

Basically you need to re-write your drop item code so that it's creating a item properly.