Jump to content
shadowrecon

I am having a huge problem... any help ?

Recommended Posts

alright so i have a procedure that paints my progress reports, it works great, but im working on a bot with multi functions with different skills, and i wanted to paint the progress report with different info. My one for my alcher works, but when i call the one for the super heat nothing is printed... its werid.. i dont get any errors or anything in smart it just fails to do what im asking.

 

Working one -

Procedure ProgressAlching;
begin
 SMARTProgCanvas(
 'UB AIO Magic - Alching',
 'Current Player: '+Left(Players[CurrentPlayer].name,5),
 'Items Alched: ' +IntToStr(Items_Done[CurrentPlayer]),
 'Natures Left: ' + IntToStr(Natures),
 'Items Left: ' + IntToStr(Items),
 'Break In: '+IntToStr(TimeTillBreak),
 'Time Ran: '+Left(STimeRunning,10),
 '',
 15, 34);
end;

 

one that does nothing..

 

Procedure ProgressSuperHeater;
begin
 SMARTProgCanvas(
 'UB AIO Magic - SuperHeater',
 'Current Player: '+Left(Players[CurrentPlayer].name,5),
 'Natures Left: ' + IntToStr(Natures),
 'Bar Type: ' + Bar,
 'Bars Made: ' +IntToStr(Items_Done[CurrentPlayer]),
 'Ore Left: '+ IntToStr(Items),
 'Break In: '+IntToStr(TimeTillBreak),
 'Time Ran: '+Left(STimeRunning,10),
 15, 34);
end;

 

---------- Post added at 06:46 AM ---------- Previous post was at 04:06 AM ----------

 

figured it out, it was my bmp size for clearing the and how many text lines i was adding was exceeding the limit i had in place. Thanks !

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...