Advertisement
finaltidus

summonClipArt.ash

Jan 12th, 2018
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. void main(){
  2.  
  3. static boolean [item] clipArtList = $items[
  4. Ur-Donut,
  5. box of Familiar Jacks,
  6. bucket of wine,
  7. ultrafondue,
  8. unbearable light,
  9. crystal skull,
  10. borrowed time,
  11. box of hammers,
  12. Temps Tempranillo,
  13. thyme jelly donut,
  14. frozen danish,
  15. smashed danish,
  16. forbidden danish,
  17. toasted brie,
  18. potion of the field gar,
  19. potion of punctual companionship,
  20. potion of the litterbox,
  21. //holy bomb, batman,
  22. //bobcat grenade,
  23. //chocolate frosted sugar bomb,
  24. //broken glass grenade,
  25. //noxious gas grenade,
  26. //skull with a fuse in it,
  27. //boozebomb,
  28. //4:20 bomb,
  29. //blunt icepick,
  30. //fluorescent lightbulb,
  31. //blammer,
  32. //clock-cleaning hammer,
  33. //hammerus,
  34. //broken clock,
  35. //dethklok,
  36. //glacial clock,
  37. //shining halo,
  38. //furry halo,
  39. //frosty halo,
  40. //time halo,
  41. //potion of animal rage,
  42. //too legit potion,
  43. //Bright Water,
  44. //cold-filtered water,
  45. //graveyard snowglobe,
  46. //cool cat elixir,
  47. //potion of the captain's hammer,
  48. //potion of X-ray vision,
  49. //cool cat claw,
  50. //blunt cat claw,
  51. //shadowy cat claw,
  52. //cheezburger,
  53. //Bordeaux Marteaux,
  54. //Fromage Pinotage,
  55. //Beignet Milgranet,
  56. //Muschat,
  57. //cool jelly donut,
  58. //shrapnel jelly donut,
  59. //occult jelly donut,
  60. //Lumineux Limnio,
  61. //Lumineux Limnio,
  62. //Morto Moreto,
  63. //oversized snowflake,
  64. //The Bomb
  65.  
  66. ];
  67.  
  68. int clipItemPrice;
  69. string clipItemName = "";
  70.  
  71. string bestClipItem = "";
  72. int bestClipPrice = 0;
  73.  
  74. string bestClipArtCombo = "";
  75.  
  76. foreach clipItem in clipArtList {
  77. clipItemPrice = (mall_price(clipItem));
  78. //print(clipItem + " Cost: " + clipItemPrice);
  79.  
  80. if (clipItemPrice > bestClipPrice){
  81. bestClipItem = clipItem;
  82. bestClipPrice = clipItemPrice;
  83. }
  84. }
  85.  
  86. print("Best Item: " + bestClipItem + " " + bestClipPrice, "blue");
  87. bestClipArtCombo = "create * " + bestClipItem;
  88. cli_execute(bestClipArtCombo);
  89.  
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement