Advertisement
dcomicboy

patched

Feb 20th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. var acid = classes.GlobalData.getSelectedCarXML().attributes.i;
  2. var pt = "m";
  3.  
  4.  
  5. function buyParts()
  6. {
  7. for(i=1;i<=5;i++) {
  8. getURL("lingo: executeCall \"buyenginepart\", \"acid=" + acid + "&epid=" + 50 + "&pt=" + pt + "\"", "");
  9. }
  10.  
  11. }
  12.  
  13. function teamDeposit() {
  14. for(i=1;i<=20;i++) {
  15. getURL("lingo: TEAMDEPOSIT 151", "");
  16. }
  17. }
  18.  
  19. function sellSpares()
  20. {
  21. for(i=1;i<=5;i++) {
  22. getURL("lingo: executeCall \"sellallspare\", \"acid=" + classes.GlobalData.getSelectedCarXML().attributes.i + "\"", "");
  23. }
  24. }
  25.  
  26. function moneybug()
  27. {
  28. buyParts();
  29. teamDeposit();
  30. buyParts();
  31. sellSpares();
  32. buyParts();
  33. teamDeposit();
  34. buyParts();
  35. sellSpares();
  36. buyParts();
  37. teamDeposit();
  38. buyParts();
  39. sellSpares();
  40. buyParts();
  41. teamDeposit();
  42. buyParts();
  43. sellSpares();
  44. buyParts();
  45. teamDeposit();
  46. buyParts();
  47. sellSpares();
  48. buyParts();
  49.  
  50. }
  51.  
  52. btnBug.onRelease = function() {
  53. moneybug();
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement