Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. program new;
  2. var
  3.  
  4. StartTime:=GetSystemTime;
  5.  
  6.  
  7. begin
  8. Proggy()
  9. end.
  10.  
  11. procedure Proggy;
  12. var
  13. StartTime:Integer;
  14. XP,XPH,Sec:Integer;
  15. begin
  16. ClearDebug;
  17. XP := GetXPBarTotal - Players[CurrentPlayer].Integers[0];
  18. Sec:= (1+((Getsystemtime-StartTime)/1000));
  19. XPH := (3600*XP) / (SeC);
  20. //Your other vars go here
  21.  
  22. writeLn('============Proggy============');
  23. writeLn('Time Running: ' + TimeRunning);
  24. writeLn('XP Earned: ' + IntToStr(XP));
  25. writeLn('XP/h: ' + IntToStr(XPH));
  26. writeLn('GP Earned: ' );
  27. writeLn('GP/h: ' );
  28. //other stuff
  29. //other stuff
  30. writelN('===================================');
  31. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement