hey there i am making a script but i got a problemo:
I need an IsFull function but already have WillowAmount :
SCAR Code:
function WillowAmount: Integer;
Var
Logs, X, Y, I, C : Integer;
Box : TBox;
Begin
try
Logs := DTMFromString('78DA63DCC8C4C0F08A010D30229140FA2450C' +
'D4D026AB601D5DC25A0E61450CD23026ACE01D5BC26A0663750CD' +
'47FC6A00BF630A00');
IncEx(Players[CurrentPlayer].Integers[2], CountItemsIn('inv', 'dtm', Logs, []));
IncEx(ReportVars[1], CountItemsIn('inv', 'dtm', Logs, []));
For I := 1 To 28 Do
Begin
Box := InvBox(I);
If FindDTM(Logs, X, Y, Box.X1, Box.Y1, Box.X2, Box.Y2) Then Inc(C);
End;
Result := C;
finally
FreeDTM(Logs);
end;
End;
do i need to make a IsFull function?
I am really tired and confused with what i have made lol, and have an operation in about 3 hours 
T~M