Hi!
Okay, so my problem is that I can't figure out why my experience/hr and my fish cooked/hr won't report the correct numbers...
Here is what my proggy looks like:
Progress Report:[=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=] [ King's Al Kharid Cooker ] [ Version 0.91 ] [ Progress Report ] [=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=] [ Worked for 16 Minutes and 51 Seconds ] [ Banked 9 loads! ] [ Cooked 209 total fish! ] [ Burnt 43 total fish! ] [ Cooking 896 fish per hour! ] [ Gained 20900 experience! ] [ Gaining -2045 cooking experience per hour! ] [ Gained 3 level(s)! ] [=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=] [ Individual Report ] [=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=] [ [#] | A | Loads | Cooked | Type of Fish ] [ [0] | T | 12 | 209 | Tuna ] [=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=]
This is my progress report function:
If you need to look at more of my script, click the Al Kharid Cooker link in my sig.Simba Code:WriteLn('[=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=]');
WriteLn('[ King''s Al Kharid Cooker ]');
WriteLn('[ Version 0.91 ]');
WriteLn('[ Progress Report ]');
WriteLn('[=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=]');
WriteLn('[ ' + PadR('Worked for ' + TimeRunning, 56) + ']');
WriteLn(PadR('[ Banked ' + IntToStr(LoadsDone) + ' loads!', 58) + ']');
WriteLn(PadR('[ Cooked ' + IntToStr(KingCooked) + ' total fish!', 58) + ']');
WriteLn(PadR('[ Burnt ' + IntToStr(KingBurnt) + ' total fish!', 58) + ']');
WriteLn(PadR('[ Cooking ' + IntToStr(Round(((KingCooked + KingBurnt) * 3600000) / (GetTimeRunning - TotBreak))) + ' fish per hour!', 58) + ']');
WriteLn(PadR('[ Gained ' + IntToStr(KingXP) + ' experience!', 58) + ']');
WriteLn(PadR('[ Gaining ' + IntToStr(Round(((KingXP) * 3600000) / (GetTimeRunning - TotBreak))) + ' cooking experience per hour!', 58) + ']');
WriteLn(PadR('[ Gained ' + IntToStr(KingLevels) + ' level(s)!', 58) + ']');
Thanks,
King of the Nites





Reply With Quote












