shadowrecon Posted February 2, 2012 Share Posted February 2, 2012 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 ! Quote Link to comment Share on other sites More sharing options...