I remember there is a function that returns the count of a stackable item using dtms.
Can somebody give me the name of it, I can't find it. Thanks
Nebula
I remember there is a function that returns the count of a stackable item using dtms.
Can somebody give me the name of it, I can't find it. Thanks
Nebula
From my Range Guild script:
Simba Code:function TicketAmount: Integer;
var
DTM: Integer;
begin
if (not(LoggedIn)) then
Exit;
FindNormalRandoms;
DTM := DTMFromString('mbQAAAHicY2VgYMhlYmAoBeJ8IE4E4mQglmZkYJABYnUgVgZicSDOa4sEqmZCwfxAEh0zYsFgAABgUwRn');
GameTab(25);
Result := (ItemAmount('inv', 'dtm', DTM, []));
FreeDTM(DTM);
end;
Since tickets are stacked, it counts them for use in progress reports.
Simba Code:(* Main *)
repeat
WriteLn('I am an idiot!');
until(False);
Hey lol, that's exactly what I'm going to use this forI'm making a range guild script.
Thanks
There are currently 1 users browsing this thread. (0 members and 1 guests)