Advertisement
Guest User

Untitled

a guest
May 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1.  
  2.  
  3. #BEGINNING
  4. cli_execute("chat");
  5. cli_execute("clanhop crimbo grotto");
  6. cli_execute("horsery dark");
  7. cli_execute("buy burning newspaper");
  8. cli_execute("make burning cape");
  9. cli_execute("use bittycar meatcar");
  10.  
  11. #MINING
  12. if ((have_skill($skill[ Unaccompanied Miner])) && (get_property(" hotAirportAlways") == "true"))
  13. {
  14. if (get_property(" _ddmine") == "true")
  15. print ("Mine5.ash has already been run today. No more Free Mining.");
  16. else
  17. {
  18. set_property(" _ddmine", "true");
  19. cli_execute("mine5") ;
  20. }
  21. }
  22.  
  23. #IKEAING
  24. int hex_price = mall_price($item[VYKEA hex key]);
  25. int instruction_price = mall_price($item[VYKEA instructions]);
  26. int plank_price = 5* mall_price($item[VYKEA plank]);
  27. int rail_price = 5* mall_price($item[VYKEA rail]);
  28. int dowel_price = 37* mall_price($item[VYKEA dowel]);
  29. int total_price = hex_price + instruction_price + plank_price + rail_price + dowel_price;
  30.  
  31. if(total_price < 80000)
  32. {
  33. retrieve_item(1,$item[VYKEA hex key]);
  34. retrieve_item(5,$item[VYKEA plank]);
  35. retrieve_item(5,$item[VYKEA rail]);
  36. retrieve_item(37,$item[VYKEA dowel]);
  37. retrieve_item(1,$item[VYKEA instructions]);
  38. use(1,$item[VYKEA instructions]);
  39. run_choice(2); run_choice(4); run_choice(1);
  40.  
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement