Advertisement
WarPie90

Untitled

Feb 19th, 2018
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.45 KB | None | 0 0
  1. program new;
  2. {$I SRL/OSR.simba}
  3. {$I SRL/utils/slackdebug.simba}
  4.  
  5. var
  6.   bmp: TMufasaBitmap;
  7. begin
  8.   bmp.Init(client.GetMBitmaps);
  9.   bmp.SetSize(280,100);
  10.   AddOnTerminate(@bmp.Free);
  11.  
  12.   while True do
  13.   begin                               //random color   //random XP         //random XP gain  //count
  14.     bmp.DrawSkillReport(Point(25,15), Random($FFFFFF), Random(0,14000000), Random(1200000),  10,'');
  15.     bmp.Debug();
  16.     wait(600);
  17.   end;
  18. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement