RuneScaper

Make Money

Feb 16th, 2022 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 43.57 KB | None | 0 0
  1. Let's make a game!
  2. name:Make Money
  3. by:Wight Wyvern
  4. desc:Make more money!
  5. created:16/02/2022
  6. updated:16/02/2022
  7. version:1.000
  8.  
  9. Settings
  10. background:
  11. building cost increase:120%
  12. building cost refund:0%
  13. spritesheet:icons, 48 by 48, https://i.imgur.com/kb9lgqX.png
  14. stylesheet:stuff/basic.css
  15. no bulk particles
  16. no particles
  17.  
  18.  
  19. CSS
  20. .box
  21. {
  22. text-align:center;
  23. padding:0px;
  24. box-shadow:none;
  25. }
  26.  
  27. CSS
  28. .thing,.box-header,.box-footer,.box-bit
  29. {
  30. background:#E2BD06;
  31. box-shadow:0px 0px 4px rgba(0,0,0,0.2),1px 1px 2px rgba(0,0,0,0.5),0px 0px 4px rgba(255,255,255,0.5) inset;
  32. }
  33. .box-bit{border-radius:20px;}
  34.  
  35. CSS
  36. .box-header
  37. {
  38. border-bottom-left-radius:20px;
  39. border-bottom-right-radius:20px;
  40. margin-bottom:4px;
  41. }
  42.  
  43. CSS
  44. .box-footer
  45. {
  46. border-top-left-radius:20px;
  47. border-top-right-radius:20px;
  48. margin-top:4px;
  49. }
  50.  
  51. CSS
  52. #box-main
  53. {
  54. left:0px;
  55. top:0px;
  56. bottom:0px;
  57. overflow:hidden;
  58. width:60%;
  59. position:absolute;
  60. }
  61.  
  62. CSS
  63. #box-res.fullWidth
  64. {
  65. width:100%;
  66. top:5%;
  67. height:5%;
  68. min-height:32px;
  69. z-index:100;
  70. position:absolute;
  71. }
  72.  
  73. CSS
  74. #box-buttons
  75. {
  76. top:0px;
  77. right:0px;
  78. bottom:0px;
  79. left:0px;
  80. position:absolute;
  81. }
  82.  
  83. CSS
  84. #box-store
  85. {
  86. right:0px;
  87. top:0px;
  88. bottom:0px;
  89. width:40%;
  90. position:absolute;
  91. }
  92.  
  93. CSS
  94. #box-buildings,#box-upgrades
  95. {
  96. top:0px;
  97. bottom:0px;
  98. width:50%;
  99. right:0%;
  100. overflow-x:hidden;
  101. overflow-y:scroll;
  102. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  103. position:absolute;
  104. }
  105.  
  106. CSS
  107. #box-buildings
  108. {right:50%;}
  109.  
  110. CSS
  111. #box-buildings
  112. {background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.25) 20%);}
  113.  
  114. CSS
  115. #box-upgrades
  116. {background:rgba(0,0,0,0.3);}
  117.  
  118. CSS
  119. #bulkDisplay
  120. {margin:-11px 24px 4px 24px;}
  121.  
  122. CSS
  123. .thing
  124. {
  125. display:inline-block;
  126. padding:0px;
  127. margin:2px;
  128. cursor:pointer;
  129. }
  130.  
  131. CSS
  132. .thing:hover,.thing.lit
  133. {
  134. background:#6cf;
  135. }
  136.  
  137. CSS
  138. .thing.cantAfford
  139. {
  140. opacity:0.65;
  141. }
  142.  
  143. CSS
  144. .upgrade.cantAfford
  145. {
  146. box-shadow:0px 0px 4px #39f;
  147. border-radius:8px;
  148. }
  149.  
  150. CSS
  151. .upgrade.cantAfford:hover
  152. {
  153. box-shadow:0px 0px 4px #6cf;
  154. }
  155.  
  156. CSS
  157. .upgrade.owned,.achiev.owned
  158. {
  159. background:#6cf;
  160. }
  161.  
  162. CSS
  163. .thing-text,.thing-costs{font-weight:bold;}
  164.  
  165. CSS
  166. .building
  167. {
  168. border-top-left-radius:20px;
  169. border-bottom-left-radius:20px;
  170. display:block;
  171. margin-right:0px;
  172. font-size:14px;
  173. }
  174.  
  175. CSS
  176. .fullWidth
  177. {
  178. display:block;
  179. margin-left:0px;
  180. margin-right:0px;
  181. z-index:10;
  182. }
  183.  
  184. CSS
  185. #game .fullWidth
  186. {
  187. height:auto;
  188. min-height:auto;
  189. }
  190.  
  191. CSS
  192. .fullWidth,.fullWidth:hover
  193. {
  194. /*background:rgba(0,0,0,0.5);
  195. background:linear-gradient(to bottom,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.25) 50%,rgba(0,0,0,0.5) 100%);*/
  196. background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.25) 50%,rgba(0,0,0,0) 100%);
  197. box-shadow:none;
  198. }
  199.  
  200. CSS
  201. .fullWidth:before,.fullWidth:after
  202. {
  203. content:'';
  204. height:1px;
  205. background:linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 50%,rgba(255,255,255,0) 100%);
  206. position:absolute;
  207. left:0px;
  208. right:0px;
  209. z-index:-1;
  210. }
  211.  
  212. CSS
  213. .fullWidth:before{top:-1px;}
  214. .fullWidth:after{bottom:-1px;}
  215.  
  216. CSS
  217. .fullWidth .thing-icon
  218. {
  219. margin-top:-14px;
  220. margin-bottom:-14px;
  221. }
  222.  
  223. CSS
  224. .fullWidth .thing-text
  225. {
  226. margin-top:-4px;
  227. margin-bottom:-4px;
  228. }
  229.  
  230. CSS
  231. #game.filtersOn .thing-icon{filter:drop-shadow(3px 3px 1px rgba(0,0,0,0.5));}
  232.  
  233. CSS
  234. #game
  235. {
  236. background: rgb(220,143,8);
  237. font-family:"Tahoma",Geneva,serif;
  238. color:White;
  239. }
  240.  
  241. CSS
  242. .thing
  243. {
  244. border-radius:8px;
  245. background:rgba(255,255,255,0.5);
  246. }
  247.  
  248. CSS
  249. .building.thing-price{filter:hide(3px);}
  250.  
  251. CSS
  252. .thing-icon,.particle
  253. {
  254. width:48px;
  255. height:48px;
  256. }
  257.  
  258. CSS
  259. #thing-1{color:#F8E106;}
  260. #thing-2{color:#75AEED;}
  261. #thing-3{color:#67D98D;}
  262. #thing-4{color:#59E319;}
  263. #thing-7{color:#59E319;}
  264. #thing-8{color:#6D3CB8;}
  265. #thing-9{color:#6D3CB8;}
  266. #thing-10{color:#D8ADEB;}
  267. #thing-11{color:#D8ADEB;}
  268. #thing-12{color:#D8ADEB;}
  269. #tooltip{width:400px;}
  270. .building{height:60px;}
  271. .building.thing-text{vertical-align:top;}
  272. .owned {background:rgba(234,218,126,0.75);}
  273. .NotOwned {background:rgba(120,120,120,0.75);}
  274. .upgrade.owned {background:rgba(241,184,56,0.9); color:#A87709;}
  275. .upgrade.notOwned {font-size:16px; color:#FFF;}
  276. .tier1 .thing-text {font-size:16px; color:#FFFFFF; text-shadow:-1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,1px 1px 0 #000;}
  277.  
  278.  
  279.  
  280. Layout
  281.  
  282. *main
  283. contains:res, buttons
  284. *res
  285. contains:timeres, mainres
  286. *timeres
  287. contains:tag:playtime
  288. class:fullWidth
  289. icons:hide
  290. ps:hide
  291. *mainres
  292. contains:tag:mains
  293. class:fullWidth
  294. icons:hide
  295. ps:hide
  296.  
  297. *buttons
  298. contains:Buttons
  299. *store
  300. contains:buildings, upgrades
  301. *buildings
  302. contains:buildings1
  303. *buildings1
  304. contains:Buildings
  305. header:Nuggets
  306. icons:hide
  307. tooltip origin:left
  308. *upgrades
  309. contains:property, upgrades1, toggles1
  310. *property
  311. contains:tag:property
  312. header:Property
  313. costs:hide
  314. names:hide
  315. *upgrades1
  316. contains:tag:upgrades
  317. header:Upgrades
  318. costs:hide
  319. names:hide
  320. *toggles1
  321. contains:tag:toggles
  322. class:fullWidth
  323. header:Toggles
  324. ps:hide
  325. icons:hide
  326. tooltip origin:left
  327.  
  328. Buttons
  329. *MakeMoney
  330. Name:Make Money
  331. desc:Click here to make money.<//><.><b>1</b> Click = <b>$[Potential/1000000]</b>
  332. on click:anim icon wobble
  333. icon:"https://i.imgur.com/Db49AJi.png"
  334. no text
  335. class:bigButton hasFlares
  336. on click:if (AutoClickActive=0) yield Potential/1000000 Cash
  337. on click:if (AutoClickActive>=1) toast You have autoclicker activated. Turn it off to manually make money!
  338. icon class:shadowed
  339. tooltip origin:bottom
  340. tooltip class:red
  341. show clicks
  342.  
  343.  
  344.  
  345. Resources
  346.  
  347. //MAINS
  348.  
  349. *Cash
  350. name:Cash
  351. desc:You have <b>$[Cash]</b>.<//><.>You make <b>$[Cash:ps*3600]</b> per hour.<.>You have made a total of <b>$[Cash:earned]</b>.
  352. icon:icons[11,0]
  353. class:noBackground
  354. tags:main mains
  355.  
  356. *Potential
  357. name:Potential
  358. desc:You have <b>[Potential]</b>.<//><.>You make <b>[Potential:ps*3600]</b> per hour.<.>You make <b>0.000001</b> per click on the <b>Make Money</b> button, for every <b>1</b> Potential you have.
  359. icon:icons[11,0]
  360. on start:yield 1000000 Potential
  361. class:noBackground
  362. tags:main mains
  363.  
  364.  
  365. //COUNTERS
  366.  
  367. *Playtime
  368. name:Playtime
  369. desc:Counts amount of seconds played. (time the game have been running on browser, not time since run started)
  370. class:noBackground
  371. on tick:if (Playtime=60) yield 0.0000001 Minutes
  372. on tick:if (Playtime=3600) yield 0.0000001 Hours
  373. on tick:if (Playtime=86400) yield 0.0000001 Days
  374. on tick:yield 1 Playtime
  375. always hidden
  376. tags:counter counters playtime
  377.  
  378. *Day|Days
  379. name:day|days
  380. desc:Hour counter.<b><.>Time played:</>[Playtime/86400] days.</b>
  381. icon:icons[1,0]
  382. class:noBackground
  383. hidden when 0
  384. tags:counter counters playtime
  385.  
  386. *Hour|Hours
  387. name:hour|hours
  388. desc:Hour counter.<b><.>Time played:</>[Playtime/3600] hours.</b>
  389. icon:icons[1,0]
  390. class:noBackground
  391. on tick:if (Hours>23.99999) yield 1 Day
  392. on tick:if (Hours>23.99999) lose Hours Hours
  393. on tick:if (Hours>23.99999) yield 0.00001 Days
  394. hidden when 0
  395. tags:counter counters playtime
  396.  
  397. *Minute|Minutes
  398. name:minute|minutes
  399. desc:Minute counter.<b><.>Time played:</>[Playtime/60] minutes.</b>
  400. icon:icons[1,0]
  401. class:noBackground
  402. on tick:if (Minutes>59.999) yield 1 Hour
  403. on tick:if (Minutes>59.999) lose Minutes Minutes
  404. on tick:if (Minutes>59.999) yield 0.001 Minutes
  405. hidden when 0
  406. tags:counter counters playtime
  407.  
  408. *Second|Seconds
  409. name:second|seconds
  410. desc:Second counter.<b><.>Time played:</>[Playtime] seconds.</b>
  411. icon:icons[1,0]
  412. class:noBackground
  413. on tick:yield 1 Second
  414. on tick:if (Seconds>58.999) yield 1 Minutes
  415. on tick:if (Seconds>58.999) lose Seconds+1 Seconds
  416. show earned
  417. tags:counter counters playtime
  418.  
  419. *Lemonade
  420. name:Lemonade Stands
  421. desc:Amount of Lemonade stands you own.
  422. icon:icons[1,0]
  423. class:noBackground
  424. on tick:yield 0.005555*Lemonade Cash
  425. show earned
  426. tags:counter counters
  427.  
  428. *Kiosk
  429. name:Kiosks
  430. desc:Amount of Kiosks you own.
  431. icon:icons[1,0]
  432. class:noBackground
  433. on tick:yield 0.114547*Kiosk Cash
  434. show earned
  435. tags:counter counters
  436.  
  437. *Cafe
  438. name:Cafe
  439. desc:Amount of Cafes you own.
  440. icon:icons[1,0]
  441. class:noBackground
  442. on tick:yield 0.886524*Cafe Cash
  443. show earned
  444. tags:counter counters
  445.  
  446. *Pizzeria
  447. name:Pizzeria
  448. desc:Amount of Pizzerias you own.
  449. icon:icons[1,0]
  450. class:noBackground
  451. on tick:yield 6.172839*Pizzeria Cash
  452. show earned
  453. tags:counter counters
  454.  
  455. *Supermarket
  456. name:Supermarket
  457. desc:Amount of Supermarkets you own.
  458. icon:icons[1,0]
  459. class:noBackground
  460. on tick:yield 47.892720*Supermarket Cash
  461. show earned
  462. tags:counter counters
  463.  
  464. *Clothing
  465. name:Clothing store
  466. desc:Amount of Clothing stores you own.
  467. icon:icons[1,0]
  468. class:noBackground
  469. on tick:yield 165.343915*Clothing Cash
  470. show earned
  471. tags:counter counters
  472.  
  473. *Cinema
  474. name:Cinema
  475. desc:Amount of Cinemas you own.
  476. icon:icons[1,0]
  477. class:noBackground
  478. on tick:yield 347.222222*Cinema Cash
  479. show earned
  480. tags:counter counters
  481.  
  482. *Hardware
  483. name:Hardware store
  484. desc:Amount of Hardware stores you own.
  485. icon:icons[1,0]
  486. class:noBackground
  487. on tick:yield 901.875901*Hardware Cash
  488. show earned
  489. tags:counter counters
  490.  
  491. *Brewery
  492. name:Brewery
  493. desc:Amount of Breweries you own.
  494. icon:icons[1,0]
  495. class:noBackground
  496. on tick:yield 2252.252252*Brewery Cash
  497. show earned
  498. tags:counter counters
  499.  
  500. *Car
  501. name:Car dealership
  502. desc:Amount of Car dealerships you own.
  503. icon:icons[1,0]
  504. class:noBackground
  505. on tick:yield 5753.968253*Car Cash
  506. show earned
  507. tags:counter counters
  508.  
  509. *Mall
  510. name:Mall
  511. desc:Amount of Malls you own.
  512. icon:icons[1,0]
  513. class:noBackground
  514. on tick:yield 20512.820512*Mall Cash
  515. show earned
  516. tags:counter counters
  517.  
  518. *Cruiseship
  519. name:Cruiseship
  520. desc:Amount of Cruiseships you own.
  521. icon:icons[1,0]
  522. class:noBackground
  523. on tick:yield 60185.185185*Cruiseship Cash
  524. show earned
  525. tags:counter counters
  526.  
  527. *Oilrig
  528. name:Oilrig
  529. desc:Amount of Oilrigs you own.
  530. icon:icons[1,0]
  531. class:noBackground
  532. on tick:yield 303030.303030*Oilrig Cash
  533. show earned
  534. tags:counter counters
  535.  
  536. *Mine
  537. name:Mine
  538. desc:Amount of Mines you own.
  539. icon:icons[1,0]
  540. class:noBackground
  541. on tick:yield 1111111.111111*Mine Cash
  542. show earned
  543. tags:counter counters
  544.  
  545. *Electronics
  546. name:Electronics company
  547. desc:Amount of Electronics companies you own.
  548. icon:icons[1,0]
  549. class:noBackground
  550. on tick:yield 5555555.555555*Electronics Cash
  551. show earned
  552. tags:counter counters
  553.  
  554. *Drug
  555. name:Drug factory
  556. desc:Amount of Drug factories you own.
  557. icon:icons[1,0]
  558. class:noBackground
  559. on tick:yield 17361111.111111*Drug Cash
  560. show earned
  561. tags:counter counters
  562.  
  563. *Weapons
  564. name:Weapons factory
  565. desc:Amount of Weapons factories you own.
  566. icon:icons[1,0]
  567. class:noBackground
  568. on tick:yield 79365079.365079*Weapons Cash
  569. show earned
  570. tags:counter counters
  571.  
  572. *Asteroid
  573. name:Asteroid mine
  574. desc:Amount of Asteroid mines you own.
  575. icon:icons[1,0]
  576. class:noBackground
  577. on tick:yield 2314814814.814814*Asteroid Cash
  578. show earned
  579. tags:counter counters
  580.  
  581. *Dyson
  582. name:Dysonsphere
  583. desc:Amount of Dysonspheres you own.
  584. icon:icons[1,0]
  585. class:noBackground
  586. on tick:yield 111111111111.111111*Dyson Cash
  587. show earned
  588. tags:counter counters
  589.  
  590.  
  591. //FUNCTIONS
  592.  
  593. *AutoClickActive
  594. name:Auto Click Active
  595. desc:Decides if Autoclicker is on or off.
  596. class:noBackground
  597. always hidden
  598. tags:counter counters
  599.  
  600. *AutoClicker
  601. name:AutoClicker
  602. desc:Autoclicks on the "Make Money" button.
  603. class:noBackground
  604. on tick:if (MakeMoney:clicks>=1000 and AutoClicker=0) show AutoClickerUpg0
  605. on tick:if (AutoClickActive>=1) yield ((Potential/1000000)*AutoClicker) Cash
  606. always hidden
  607. tags:counter counters
  608.  
  609.  
  610. Shinies
  611.  
  612. //MIGHT ADD LATER
  613.  
  614.  
  615. Buildings
  616. *TEMPLATE
  617. on click:anim glow
  618.  
  619.  
  620.  
  621. *Sand
  622. name:Sand
  623. desc:Sand.<.>Requires <b>$[100000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Sand earns <b>[10000]</b> Potential per hour.<.>Your [Sand] Sands earn <b>[Sand*10000]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  624. icon:icons[1,2]
  625. cost:100000 Cash
  626. on tick:yield 2.777777 Potential
  627. req:Cash:earned>=100000
  628. tags:nugget
  629. //10.0 hours
  630.  
  631. *Rock
  632. name:Rock
  633. desc:Rock.<.>Requires <b>$[250000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Rock earns <b>[25252]</b> Potential per hour.<.>Your [Rock] Rock earn <b>[Rock*25252]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  634. icon:icons[1,2]
  635. cost:250000 Cash
  636. on tick:yield 7.014444 Potential
  637. req:Cash:earned>=250000
  638. tags:nugget
  639. //9.9 hours
  640.  
  641. *Copper
  642. name:Copper
  643. desc:Copper.<.>Requires <b>$[1000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Copper earns <b>[102040]</b> Potential per hour.<.>Your [Copper] Copper earn <b>[Copper*102040]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  644. icon:icons[1,2]
  645. cost:1000000 Cash
  646. on tick:yield 28.344671 Potential
  647. req:Cash:earned>=1000000
  648. tags:nugget
  649. //9.8 hours
  650.  
  651. *Pearl
  652. name:Pearl
  653. desc:Pearl.<.>Requires <b>$[3000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Pearl earns <b>[309278]</b> Potential per hour.<.>Your [Pearl] Pearl earn <b>[Pearl*309278]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  654. icon:icons[1,2]
  655. cost:3000000 Cash
  656. on tick:yield 85.910652 Potential
  657. req:Cash:earned>=3000000
  658. tags:nugget
  659. //9.7 hours
  660.  
  661. *Iron
  662. name:Iron
  663. desc:Iron.<.>Requires <b>$[12000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Iron earns <b>[1250000]</b> Potential per hour.<.>Your [Iron] Iron earn <b>[Iron*1250000]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  664. icon:icons[1,2]
  665. cost:12000000 Cash
  666. on tick:yield 347.222222 Potential
  667. req:Cash:earned>=12000000
  668. tags:nugget
  669. //9.6 hours
  670.  
  671. *Opal
  672. name:Opal
  673. desc:Opal.<.>Requires <b>$[55000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Opal earns <b>[5789473]</b> Potential per hour.<.>Your [Opal] Opal earn <b>[Opal*5789473]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  674. icon:icons[1,2]
  675. cost:55000000 Cash
  676. on tick:yield 1608.187134 Potential
  677. req:Cash:earned>=55000000
  678. tags:nugget
  679. //9.5 hours
  680.  
  681. *Bronze
  682. name:Bronze
  683. desc:Bronze.<.>Requires <b>$[180000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Bronze earns <b>[19148936]</b> Potential per hour.<.>Your [Bronze] Bronze earn <b>[Bronze*19148936]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  684. icon:icons[1,2]
  685. cost:180000000 Cash
  686. on tick:yield 5319.148936 Potential
  687. req:Cash:earned>=180000000
  688. tags:nugget
  689. //9.4 hours
  690.  
  691. *Sapphire
  692. name:Sapphire
  693. desc:Sapphire.<.>Requires <b>$[630000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Sapphire earns <b>[67741935]</b> Potential per hour.<.>Your [Sapphire] Sapphire earn <b>[Sapphire*67741935]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  694. icon:icons[1,2]
  695. cost:630000000 Cash
  696. on tick:yield 18817.204301 Potential
  697. req:Cash:earned>=630000000
  698. tags:nugget
  699. //9.3 hours
  700.  
  701. *Steel
  702. name:Steel
  703. desc:Steel.<.>Requires <b>$[2100000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Steel earns <b>[228260869]</b> Potential per hour.<.>Your [Steel] Steel earn <b>[Steel*228260869]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  704. icon:icons[1,2]
  705. cost:2100000000 Cash
  706. on tick:yield 63405.797101 Potential
  707. req:Cash:earned>=2100000000
  708. tags:nugget
  709. //9.2 hours
  710.  
  711. *Emerald
  712. name:Emerald
  713. desc:Emerald.<.>Requires <b>$[8900000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Emerald earns <b>[978021978]</b> Potential per hour.<.>Your [Emerald] Emerald earn <b>[Emerald*978021978]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  714. icon:icons[1,2]
  715. cost:8900000000 Cash
  716. on tick:yield 271672.771672 Potential
  717. req:Cash:earned>=8900000000
  718. tags:nugget
  719. //9.1 hours
  720.  
  721. *Silver
  722. name:Silver
  723. desc:Silver.<.>Requires <b>$[24000000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Silver earns <b>[2666666666]</b> Potential per hour.<.>Your [Silver] Silver earn <b>[Silver*2666666666]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  724. icon:icons[1,2]
  725. cost:24000000000 Cash
  726. on tick:yield 740740.740740 Potential
  727. req:Cash:earned>=24000000000
  728. tags:nugget
  729. //9.0 hours
  730.  
  731. *Ruby
  732. name:Ruby
  733. desc:Ruby.<.>Requires <b>$[101000000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Ruby earns <b>[11348314606]</b> Potential per hour.<.>Your [Ruby] Ruby earn <b>[Ruby*11348314606]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  734. icon:icons[1,2]
  735. cost:101000000000 Cash
  736. on tick:yield 3152309.612983 Potential
  737. req:Cash:earned>=101000000000
  738. tags:nugget
  739. //8.9 hours
  740.  
  741. *Gold
  742. name:Gold
  743. desc:Gold.<.>Requires <b>$[444000000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Gold earns <b>[50454545454]</b> Potential per hour.<.>Your [Gold] Gold earn <b>[Gold*50454545454]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  744. icon:icons[1,2]
  745. cost:444000000000 Cash
  746. on tick:yield 14015151.515151 Potential
  747. req:Cash:earned>=444000000000
  748. tags:nugget
  749. //8.8 hours
  750.  
  751. *Diamond
  752. name:Diamond
  753. desc:Diamond.<.>Requires <b>$[2145000000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Diamond earns <b>[246551724137]</b> Potential per hour.<.>Your [Diamond] Diamond earn <b>[Diamond*246551724137]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  754. icon:icons[1,2]
  755. cost:2145000000000 Cash
  756. on tick:yield 68486590.038314 Potential
  757. req:Cash:earned>=2145000000000
  758. tags:nugget
  759. //8.7 hours
  760.  
  761. *Onyx
  762. name:Onyx
  763. desc:Onyx.<.>Requires <b>$[8750000000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Onyx earns <b>[1017441860465]</b> Potential per hour.<.>Your [Onyx] Onyx earn <b>[Onyx*1017441860465]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  764. icon:icons[1,2]
  765. cost:8750000000000 Cash
  766. on tick:yield 282622739.018087 Potential
  767. req:Cash:earned>=8750000000000
  768. tags:nugget
  769. //8.6 hours
  770.  
  771. *Meteorite
  772. name:Meteorite
  773. desc:Meteorite.<.>Requires <b>$[50000000000000]</b> in total cash earned.<//><b>Potential earning:</b><.>Each Meteorite earns <b>[5882352941176]</b> Potential per hour.<.>Your [Meteorite] Meteorite earn <b>[Meteorite*5882352941176]</b> Potential per hour.<.>All your Nuggets earn <b>[Potential:ps*3600]</b> Potential per hour.
  774. icon:icons[1,2]
  775. cost:50000000000000 Cash
  776. on tick:yield 1633986928.104575 Potential
  777. req:Cash:earned>=50000000000000
  778. tags:nugget
  779. //8.5 hours
  780.  
  781.  
  782.  
  783. Upgrades
  784. *TEMPLATE
  785. on click:anim glow
  786.  
  787. //PROPERTY
  788.  
  789. /*
  790. Time to make ALL money back:
  791. Lemonade stands: 10 hours (36,000 seconds)
  792. Kiosks: 9.7 hours (34,920 seconds)
  793. Cafes: 9.4 hours (33,840 seconds)
  794. Pizzerias: 9 hours (32,400 seconds)
  795. Supermarkets: 8.7 hours (31,320 seconds)
  796. Clothing stores: 8.4 hours (30,240 seconds)
  797. Cinema: 8 hours (28,800 seconds)
  798. Hardware store: 7.7 hours (27,720 seconds)
  799. Brewery: 7.4 hours (26,640 seconds)
  800. Car dealership: 7 hours (25,200 seconds)
  801. Mall: 6.5 hours (23,400 seconds)
  802. Cruiseship: 6 hours (21,600 seconds)
  803. Oilrig: 5.5 hours (19,800 seconds)
  804. Mine: 5 hours (18,000 seconds)
  805. Electronics company: 4.5 hours (16,200 seconds)
  806. Drug factory: 4 hours (14,400 seconds)
  807. Weapons factory: 3.5 hours (12,600 seconds)
  808. Asteroid mine: 3 hours (10,800 seconds)
  809. Dysonsphere: 2.5 hours (9,000 seconds)
  810.  
  811.  
  812.  
  813. */
  814.  
  815. *LemonadeStand1
  816. name:Buy 1 Lemonade Stand
  817. desc:<b><#00ff80>BUY</#> [1]</b> Lemonade Stand.<//><.>Cost: <b>$[200]</b><.>Each lemonade stand makes <b>$[20]</b> per hour.<//><.>You have <b>[Lemonade]</b> Lemonade Stands.<.>You make <b>$[20*Lemonade]</b> per hour from all lemonade stands.
  818. icon:icons[1,4]
  819. on click:if (Cash<200) toast You can't afford this.
  820. on click:if (Cash>=200) yield 1 Lemonade
  821. on click:if (Cash>=200) lose 200 Cash
  822. owned
  823. tags:property property1
  824.  
  825. *Kiosk1
  826. name:Buy 1 Kiosk
  827. desc:<b><#00ff80>BUY</#> [1]</b> Kiosk.<//><.>Cost: <b>$[4000]</b><.>Each kiosk makes <b>$[412]</b> per hour.<//><.>You have <b>[Kiosk]</b> Kiosks.<.>You make <b>$[412*Kiosk]</b> per hour from all kiosks.
  828. icon:icons[1,4]
  829. on click:if (Cash<4000) toast You can't afford this.
  830. on click:if (Cash>=4000) yield 1 Kiosk
  831. on click:if (Cash>=4000) lose 4000 Cash
  832. on tick:if (Cash:earned>=6000) show Kiosk1
  833. owned
  834. hidden
  835. tags:property property1
  836.  
  837. *Cafe1
  838. name:Buy 1 Cafe
  839. desc:<b><#00ff80>BUY</#> [1]</b> Cafe.<//><.>Cost: <b>$[30000]</b><.>Each cafe makes <b>$[3191]</b> per hour.<//><.>You have <b>[Cafe]</b> Cafes.<.>You make <b>$[3191*Cafe]</b> per hour from all cafes.
  840. icon:icons[1,4]
  841. on click:if (Cash<30000) toast You can't afford this.
  842. on click:if (Cash>=30000) yield 1 Cafe
  843. on click:if (Cash>=30000) lose 30000 Cash
  844. on tick:if (Cash:earned>=45000) show Cafe1
  845. owned
  846. hidden
  847. tags:property property1
  848.  
  849. *Pizzeria1
  850. name:Buy 1 Pizzeria
  851. desc:<b><#00ff80>BUY</#> [1]</b> Pizzeria.<//><.>Cost: <b>$[200000]</b><.>Each pizzeria makes <b>$[22222]</b> per hour.<//><.>You have <b>[Pizzeria]</b> Pizzerias.<.>You make <b>$[22222*Pizzeria]</b> per hour from all pizzerias.
  852. icon:icons[1,4]
  853. on click:if (Cash<200000) toast You can't afford this.
  854. on click:if (Cash>=200000) yield 1 Pizzeria
  855. on click:if (Cash>=200000) lose 200000 Cash
  856. on tick:if (Cash:earned>=300000) show Pizzeria1
  857. owned
  858. hidden
  859. tags:property property1
  860.  
  861. *Supermarket1
  862. name:Buy 1 Supermarket
  863. desc:<b><#00ff80>BUY</#> [1]</b> Supermarket.<//><.>Cost: <b>$[1500000]</b><.>Each supermarket makes <b>$[172413]</b> per hour.<//><.>You have <b>[Supermarket]</b> Supermarkets.<.>You make <b>$[172413*Supermarket]</b> per hour from all supermarkets.
  864. icon:icons[1,4]
  865. on click:if (Cash<1500000) toast You can't afford this.
  866. on click:if (Cash>=1500000) yield 1 Supermarket
  867. on click:if (Cash>=1500000) lose 1500000 Cash
  868. on tick:if (Cash:earned>=2250000) show Supermarket1
  869. owned
  870. hidden
  871. tags:property property1
  872. req:2250000 Cash:earned
  873.  
  874. *Clothing1
  875. name:Buy 1 Clothing store
  876. desc:<b><#00ff80>BUY</#> [1]</b> Clothing store.<//><.>Cost: <b>$[5000000]</b><.>Each clothing store makes <b>$[595238]</b> per hour.<//><.>You have <b>[Clothing]</b> Clothing stores.<.>You make <b>$[595238*Clothing]</b> per hour from all clothing stores.
  877. icon:icons[1,4]
  878. on click:if (Cash<5000000) toast You can't afford this.
  879. on click:if (Cash>=5000000) yield 1 Clothing
  880. on click:if (Cash>=5000000) lose 5000000 Cash
  881. owned
  882. hidden
  883. tags:property property1
  884.  
  885. *Cinema1
  886. name:Buy 1 Cinema
  887. desc:<b><#00ff80>BUY</#> [1]</b> Cinema.<//><.>Cost: <b>$[10000000]</b><.>Each cinema makes <b>$[1250000]</b> per hour.<//><.>You have <b>[Cinema]</b> Cinemas.<.>You make <b>$[1250000*Cinema]</b> per hour from all cinemas.
  888. icon:icons[1,4]
  889. on click:if (Cash<10000000) toast You can't afford this.
  890. on click:if (Cash>=10000000) yield 1 Cinema
  891. on click:if (Cash>=10000000) lose 10000000 Cash
  892. on tick:if (Cash:earned>=15000000) show Cinema1
  893. owned
  894. hidden
  895. tags:property property1
  896.  
  897. *Hardware1
  898. name:Buy 1 Hardware store
  899. desc:<b><#00ff80>BUY</#> [1]</b> Hardware store.<//><.>Cost: <b>$[25000000]</b><.>Each hardware store makes <b>$[3246753]</b> per hour.<//><.>You have <b>[Hardware]</b> Hardware stores.<.>You make <b>$[3246753*Hardware]</b> per hour from all hardware stores.
  900. icon:icons[1,4]
  901. on click:if (Cash<25000000) toast You can't afford this.
  902. on click:if (Cash>=25000000) yield 1 Hardware
  903. on click:if (Cash>=25000000) lose 25000000 Cash
  904. on tick:if (Cash:earned>=37500000) show Hardware1
  905. owned
  906. hidden
  907. tags:property property1
  908.  
  909. *Brewery1
  910. name:Buy 1 Brewery
  911. desc:<b><#00ff80>BUY</#> [1]</b> Brewery.<//><.>Cost: <b>$[60000000]</b><.>Each brewery makes <b>$[8108108]</b> per hour.<//><.>You have <b>[Brewery]</b> Breweries.<.>You make <b>$[8108108*Brewery]</b> per hour from all breweries.
  912. icon:icons[1,4]
  913. on click:if (Cash<60000000) toast You can't afford this.
  914. on click:if (Cash>=60000000) yield 1 Brewery
  915. on click:if (Cash>=60000000) lose 60000000 Cash
  916. on tick:if (Cash:earned>=90000000) show Brewery1
  917. owned
  918. hidden
  919. tags:property property1
  920.  
  921. *Car1
  922. name:Buy 1 Car dealership
  923. desc:<b><#00ff80>BUY</#> [1]</b> Car dealership.<//><.>Cost: <b>$[145000000]</b><.>Each car dealership makes <b>$[20714285]</b> per hour.<//><.>You have <b>[Car]</b> Car dealerships.<.>You make <b>$[20714285*Car]</b> per hour from all car dealerships.
  924. icon:icons[1,4]
  925. on click:if (Cash<145000000) toast You can't afford this.
  926. on click:if (Cash>=145000000) yield 1 Car
  927. on click:if (Cash>=145000000) lose 145000000 Cash
  928. on tick:if (Cash:earned>=217500000) show Car1
  929. owned
  930. hidden
  931. tags:property property1
  932.  
  933. *Mall1
  934. name:Buy 1 Mall
  935. desc:<b><#00ff80>BUY</#> [1]</b> Mall.<//><.>Cost: <b>$[480000000]</b><.>Each mall makes <b>$[73846153]</b> per hour.<//><.>You have <b>[Mall]</b> Malls.<.>You make <b>$[73846153*Mall]</b> per hour from all malls.
  936. icon:icons[1,4]
  937. on click:if (Cash<480000000) toast You can't afford this.
  938. on click:if (Cash>=480000000) yield 1 Mall
  939. on click:if (Cash>=480000000) lose 480000000 Cash
  940. on tick:if (Cash:earned>=720000000) show Mall1
  941. owned
  942. hidden
  943. tags:property property1
  944.  
  945. *Cruiseship1
  946. name:Buy 1 Cruiseship
  947. desc:<b><#00ff80>BUY</#> [1]</b> Cruiseship.<//><.>Cost: <b>$[1300000000]</b><.>Each cruiseship makes <b>$[2166666666]</b> per hour.<//><.>You have <b>[Cruiseship]</b> Cruiseships.<.>You make <b>$[2166666666*Cruiseship]</b> per hour from all cruiseships.
  948. icon:icons[1,4]
  949. on click:if (Cash<1300000000) toast You can't afford this.
  950. on click:if (Cash>=1300000000) yield 1 Cruiseship
  951. on click:if (Cash>=1300000000) lose 1300000000 Cash
  952. on tick:if (Cash:earned>=1950000000) show Cruiseship1
  953. owned
  954. hidden
  955. tags:property property1
  956.  
  957. *Oilrig1
  958. name:Buy 1 Oilrig
  959. desc:<b><#00ff80>BUY</#> [1]</b> Oilrig.<//><.>Cost: <b>$[6000000000]</b><.>Each oilrig makes <b>$[1090909090]</b> per hour.<//><.>You have <b>[Oilrig]</b> Oilrigs.<.>You make <b>$[1090909090*Oilrig]</b> per hour from all oilrigs.
  960. icon:icons[1,4]
  961. on click:if (Cash<6000000000) toast You can't afford this.
  962. on click:if (Cash>=6000000000) yield 1 Oilrig
  963. on click:if (Cash>=6000000000) lose 6000000000 Cash
  964. on tick:if (Cash:earned>=9000000000) show Oilrig1
  965. owned
  966. hidden
  967. tags:property property1
  968.  
  969. *Mine1
  970. name:Buy 1 Mine
  971. desc:<b><#00ff80>BUY</#> [1]</b> Mine.<//><.>Cost: <b>$[20000000000]</b><.>Each mine makes <b>$[4000000000]</b> per hour.<//><.>You have <b>[Mine]</b> Mines.<.>You make <b>$[4000000000*Mine]</b> per hour from all mines.
  972. icon:icons[1,4]
  973. on click:if (Cash<20000000000) toast You can't afford this.
  974. on click:if (Cash>=20000000000) yield 1 Mine
  975. on click:if (Cash>=20000000000) lose 20000000000 Cash
  976. on tick:if (Cash:earned>=30000000000) show Mine1
  977. owned
  978. hidden
  979. tags:property property1
  980.  
  981. *Electronics1
  982. name:Buy 1 Electronics company
  983. desc:<b><#00ff80>BUY</#> [1]</b> Electronics company.<//><.>Cost: <b>$[90000000000]</b><.>Each electronics company makes <b>$[20000000000]</b> per hour.<//><.>You have <b>[Electronics]</b> Electronics companies.<.>You make <b>$[20000000000*Electronics]</b> per hour from all electronics companies.
  984. on click:if (Cash<90000000000) toast You can't afford this.
  985. on click:if (Cash>=90000000000) yield 1 Electronics
  986. on click:if (Cash>=90000000000) lose 90000000000 Cash
  987. on tick:if (Cash:earned>=135000000000) show Electronics1
  988. owned
  989. hidden
  990. tags:property property1
  991.  
  992. *Drug1
  993. name:Buy 1 Drug factory
  994. desc:<b><#00ff80>BUY</#> [1]</b> Drug factory.<//><.>Cost: <b>$[250000000000]</b><.>Each drug factory makes <b>$[62500000000]</b> per hour.<//><.>You have <b>[Drug]</b> Drug factories.<.>You make <b>$[62500000000*Drug]</b> per hour from all drug factories.
  995. on click:if (Cash<250000000000) toast You can't afford this.
  996. on click:if (Cash>=250000000000) yield 1 Drug
  997. on click:if (Cash>=250000000000) lose 250000000000 Cash
  998. on tick:if (Cash:earned>=375000000000) show Drug1
  999. owned
  1000. hidden
  1001. tags:property property1
  1002.  
  1003. *Weapons1
  1004. name:Buy 1 Weapons factory
  1005. desc:<b><#00ff80>BUY</#> [1]</b> Weapons factory.<//><.>Cost: <b>$[1000000000000]</b><.>Each weapons factory makes <b>$[285714285714]</b> per hour.<//><.>You have <b>[Weapons]</b> Weapons factories.<.>You make <b>$[285714285714*Weapons]</b> per hour from all weapons factories.
  1006. on click:if (Cash<1000000000000) toast You can't afford this.
  1007. on click:if (Cash>=1000000000000) yield 1 Weapons
  1008. on click:if (Cash>=1000000000000) lose 1000000000000 Cash
  1009. on tick:if (Cash:earned>=1500000000000) show Weapons1
  1010. owned
  1011. hidden
  1012. tags:property property1
  1013.  
  1014. *Asteroid1
  1015. name:Buy 1 Asteroid mine
  1016. desc:<b><#00ff80>BUY</#> [1]</b> Asteroid mine.<//><.>Cost: <b>$[25000000000000]</b><.>Each Asteroid mine makes <b>$[8333333333333]</b> per hour.<//><.>You have <b>[Asteroid]</b> Asteroid mines.<.>You make <b>$[8333333333333*Asteroid]</b> per hour from all asteroid mines.
  1017. on click:if (Cash<25000000000000) toast You can't afford this.
  1018. on click:if (Cash>=25000000000000) yield 1 Asteroid
  1019. on click:if (Cash>=25000000000000) lose 1000000000000 Cash
  1020. on tick:if (Cash:earned>=37500000000000) show Asteroid1
  1021. owned
  1022. hidden
  1023. tags:property property1
  1024.  
  1025. *Dyson1
  1026. name:Buy 1 Dysonsphere
  1027. desc:<b><#00ff80>BUY</#> [1]</b> Dysonsphere.<//><.>Cost: <b>$[1000000000000000]</b><.>Each Dysonsphere makes <b>$[400000000000000]</b> per hour.<//><.>You have <b>[Dyson]</b> Dysonspheres.<.>You make <b>$[400000000000*Dyson]</b> per hour from all dysonspheres.
  1028. on click:if (Cash<1000000000000000) toast You can't afford this.
  1029. on click:if (Cash>=1000000000000000) yield 1 Dyson
  1030. on click:if (Cash>=1000000000000000) lose 1000000000000000 Cash
  1031. on tick:if (Cash:earned>=1500000000000000) show Dyson1
  1032. owned
  1033. hidden
  1034. tags:property property1
  1035.  
  1036.  
  1037.  
  1038. //UPGRADES
  1039.  
  1040. *AutoClickerUpg0
  1041. name:Autoclicker
  1042. desc:<b>Autoclicker</b><//><b>Current Effect:</b><.><b>None.</b><//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>1</b> time per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1043. icon:icons[4,9]
  1044. hidden
  1045. cost:10 Cash
  1046. on click:if (Cash<10) toast You can't afford this.
  1047. on earn:yield 1 AutoClicker
  1048. on earn:show AutoClickToggle2
  1049. on earn:hide AutoClickerUpg0
  1050. on earn:show AutoClickerUpg1
  1051. tags:upgrade upgrades
  1052.  
  1053. *AutoClickerUpg1
  1054. name:Autoclicker I
  1055. desc:<b>Autoclicker I</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>1</b> time per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>2</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1056. icon:icons[5,9]
  1057. hidden
  1058. cost:100 Cash
  1059. on click:if (Cash<100) toast You can't afford this.
  1060. on earn:yield 1 AutoClicker
  1061. on earn:hide AutoClickerUpg1
  1062. on earn:show AutoClickerUpg2
  1063. tags:upgrade upgrades
  1064.  
  1065. *AutoClickerUpg2
  1066. name:Autoclicker II
  1067. desc:<b>Autoclicker II</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>2</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>3</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1068. icon:icons[6,9]
  1069. hidden
  1070. cost:1000 Cash
  1071. on click:if (Cash<1000) toast You can't afford this.
  1072. on earn:yield 1 AutoClicker
  1073. on earn:hide AutoClickerUpg2
  1074. on earn:show AutoClickerUpg3
  1075. tags:upgrade upgrades
  1076.  
  1077. *AutoClickerUpg3
  1078. name:Autoclicker III
  1079. desc:<b>Autoclicker III</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>3</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>5</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1080. icon:icons[7,9]
  1081. hidden
  1082. cost:10000 Cash
  1083. on click:if (Cash<10000) toast You can't afford this.
  1084. on earn:yield 2 AutoClicker
  1085. on earn:hide AutoClickerUpg3
  1086. on earn:show AutoClickerUpg4
  1087. tags:upgrade upgrades
  1088.  
  1089. *AutoClickerUpg4
  1090. name:Autoclicker IV
  1091. desc:<b>Autoclicker IV</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>5</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>7</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1092. icon:icons[8,9]
  1093. hidden
  1094. cost:100000 Cash
  1095. on click:if (Cash<100000) toast You can't afford this.
  1096. on earn:yield 2 AutoClicker
  1097. on earn:hide AutoClickerUpg4
  1098. on earn:show AutoClickerUpg5
  1099. tags:upgrade upgrades
  1100.  
  1101. *AutoClickerUpg5
  1102. name:Autoclicker V
  1103. desc:<b>Autoclicker V</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>7</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>10</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1104. icon:icons[9,9]
  1105. hidden
  1106. cost:1000000 Cash
  1107. on click:if (Cash<1000000) toast You can't afford this.
  1108. on earn:yield 3 AutoClicker
  1109. on earn:hide AutoClickerUpg5
  1110. on earn:show AutoClickerUpg6
  1111. tags:upgrade upgrades
  1112.  
  1113. *AutoClickerUpg6
  1114. name:Autoclicker VI
  1115. desc:<b>Autoclicker VI</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>10</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>15</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1116. icon:icons[10,9]
  1117. hidden
  1118. cost:10000000 Cash
  1119. on click:if (Cash<10000000) toast You can't afford this.
  1120. on earn:yield 5 AutoClicker
  1121. on earn:hide AutoClickerUpg6
  1122. on earn:show AutoClickerUpg7
  1123. tags:upgrade upgrades
  1124.  
  1125. *AutoClickerUpg7
  1126. name:Autoclicker VII
  1127. desc:<b>Autoclicker VII</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>15</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>20</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1128. icon:icons[11,9]
  1129. hidden
  1130. cost:100000000 Cash
  1131. on click:if (Cash<100000000) toast You can't afford this.
  1132. on earn:yield 5 AutoClicker
  1133. on earn:hide AutoClickerUpg7
  1134. on earn:show AutoClickerUpg8
  1135. tags:upgrade upgrades
  1136.  
  1137. *AutoClickerUpg8
  1138. name:Autoclicker VIII
  1139. desc:<b>Autoclicker VIII</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>20</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>25</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1140. icon:icons[12,9]
  1141. hidden
  1142. cost:1000000000 Cash
  1143. on click:if (Cash<1000000000) toast You can't afford this.
  1144. on earn:yield 5 AutoClicker
  1145. on earn:hide AutoClickerUpg8
  1146. on earn:show AutoClickerUpg9
  1147. tags:upgrade upgrades
  1148.  
  1149. *AutoClickerUpg9
  1150. name:Autoclicker IX
  1151. desc:<b>Autoclicker IX</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>25</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>30</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1152. icon:icons[13,9]
  1153. hidden
  1154. cost:10000000000 Cash
  1155. on click:if (Cash<10000000000) toast You can't afford this.
  1156. on earn:yield 5 AutoClicker
  1157. on earn:hide AutoClickerUpg9
  1158. on earn:show AutoClickerUpg10
  1159. tags:upgrade upgrades
  1160.  
  1161. *AutoClickerUpg10
  1162. name:Autoclicker X
  1163. desc:<b>Autoclicker X</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>30</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>35</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1164. icon:icons[14,9]
  1165. hidden
  1166. cost:100000000000 Cash
  1167. on click:if (Cash<100000000000) toast You can't afford this.
  1168. on earn:yield 5 AutoClicker
  1169. on earn:hide AutoClickerUpg10
  1170. on earn:show AutoClickerUpg11
  1171. tags:upgrade upgrades
  1172.  
  1173. *AutoClickerUpg11
  1174. name:Autoclicker XI
  1175. desc:<b>Autoclicker XI</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>35</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>40</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1176. icon:icons[15,9]
  1177. hidden
  1178. cost:1000000000000 Cash
  1179. on click:if (Cash<1000000000000) toast You can't afford this.
  1180. on earn:yield 5 AutoClicker
  1181. on earn:hide AutoClickerUpg11
  1182. on earn:show AutoClickerUpg12
  1183. tags:upgrade upgrades
  1184.  
  1185. *AutoClickerUpg12
  1186. name:Autoclicker XII
  1187. desc:<b>Autoclicker XII</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>40</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>45</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1188. icon:icons[16,9]
  1189. hidden
  1190. cost:10000000000000 Cash
  1191. on click:if (Cash<10000000000000) toast You can't afford this.
  1192. on earn:yield 5 AutoClicker
  1193. on earn:hide AutoClickerUpg12
  1194. on earn:show AutoClickerUpg13
  1195. tags:upgrade upgrades
  1196.  
  1197. *AutoClickerUpg13
  1198. name:Autoclicker XIII
  1199. desc:<b>Autoclicker XIII</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>45</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><.>Ability to activate an autoclicker that clicks <b>50</b> times per second on the "Make Money" button.<//><b>CLICK TO UPGRADE.</b>
  1200. icon:icons[17,9]
  1201. hidden
  1202. cost:100000000000000 Cash
  1203. on click:if (Cash<100000000000000) toast You can't afford this.
  1204. on earn:yield 5 AutoClicker
  1205. on earn:hide AutoClickerUpg13
  1206. on earn:show AutoClickerUpg14
  1207. tags:upgrade upgrades
  1208.  
  1209. *AutoClickerUpg14
  1210. name:Autoclicker XIV
  1211. desc:<b>Autoclicker XIV</b><//><b>Current Effect:</b><.>Ability to activate an autoclicker that clicks <b>50</b> times per second on the "Make Money" button.<//><b>Next Upgrade:</b><//><b>FULLY UPGRADED.</b>
  1212. icon:icons[18,9]
  1213. hidden
  1214. owned
  1215. on click:toast <b>This is fully upgraded already!</b>
  1216. tags:upgrade upgrades
  1217.  
  1218. /*
  1219. *PumpUpg1
  1220. name:Pump I
  1221. desc:<b>Pump I</b><//><b>Current Effect:</b><.><b>[1*PumpXX]</b> Pump per click. <//><b>Next Upgrade:</b><.><b>[2*PumpXX]</b> Pump per click.<//><b>CLICK TO UPGRADE.</b>
  1222. icon:icons[1,8]
  1223. cost:10 USDC
  1224. on click:if (USDC<10) toast <b><#ff4d4d>You dont have enough USDC to make this transaction.</#></b>
  1225. on earn:lose PumpX PumpX
  1226. on earn:yield 2 PumpX
  1227. on earn:hide PumpUpg1
  1228. on earn:show PumpUpg2
  1229. tags:upgrade upgrades
  1230.  
  1231.  
  1232. *PumpUpg2
  1233. name:Pump II
  1234. desc:<b>Pump II</b><//><b>Current Effect:</b><.><b>[2*PumpXX]</b> Pump per click. <//><b>Next Upgrade:</b><.><b>[3*PumpXX]</b> Pump per click.<//><b>CLICK TO UPGRADE.</b>
  1235. icon:icons[2,8]
  1236. hidden
  1237. cost:100 USDC
  1238. on click:if (USDC<100) toast <b><#ff4d4d>You dont have enough USDC to make this transaction.</#></b>
  1239. on earn:lose PumpX PumpX
  1240. on earn:yield 3 PumpX
  1241. on earn:hide PumpUpg2
  1242. on earn:show PumpUpg3
  1243. tags:upgrade upgrades
  1244.  
  1245. *PumpUpg3
  1246. name:Pump III
  1247. desc:<b>Pump III</b><//><b>Current Effect:</b><.><b>[1000*PumpXX]</b> Pump per click.<//><b>FULLY UPGRADED.</b>
  1248. icon:icons[11,8]
  1249. owned
  1250. hidden
  1251. on click:toast <b>This is fully upgraded already!</b>
  1252. tags:upgrade upgrades
  1253. */
  1254.  
  1255. //ITEMS
  1256.  
  1257. /*
  1258. *BadgeMillionaire
  1259. name:Millionaire Badge
  1260. desc:<b>Millionaire Badge</b><//>You have earned this badge by holding 1 million USDC.<//><b>Perks:</b><.><b>5%</b> more Pump per click on "Pump It Up" button.<.><b>2.5%</b> more Pump per Pumper.
  1261. icon:icons[1,14]
  1262. owned
  1263. hidden
  1264. tags:badge
  1265. */
  1266.  
  1267.  
  1268. //TOGGLES
  1269.  
  1270.  
  1271. *AutoClickToggle
  1272. name:Turn OFF Autoclicker
  1273. desc:Click to turn OFF your autoclicker. You are currently autoclicking [AutoClicker] times per second on the "Make Money" button.
  1274. icon:icons[15,17]
  1275. on click:lose AutoClickActive AutoClickActive
  1276. on click:show AutoClickToggle2
  1277. on click:hide AutoClickToggle
  1278. hidden
  1279. owned
  1280. tags:toggle toggles
  1281.  
  1282. *AutoClickToggle2
  1283. name:Turn ON Autoclicker
  1284. desc:Click to turn ON your AutoClicker for [AutoClicker] clicks per second on the "Make Money" button. When your autoclicker is ON you can not make money by manually clicking the "Make Money" button.
  1285. icon:icons[16,17]
  1286. on click:yield 1 AutoClickActive
  1287. on click:show AutoClickToggle
  1288. on click:hide AutoClickToggle2
  1289. hidden
  1290. owned
  1291. tags:toggle toggles
  1292.  
  1293.  
  1294. *playtimeToggle
  1295. name:Hide Playtime
  1296. desc:Click to hide your playtime
  1297. icon:icons[1,17]
  1298. on click:hide tag:playtime
  1299. on click:show playtimeToggle2
  1300. on click:hide playtimeToggle
  1301. owned
  1302. tags:toggle toggles
  1303.  
  1304. *playtimeToggle2
  1305. name:Show Playtime
  1306. desc:Click to show your playtime
  1307. icon:icons[2,17]
  1308. on click:show tag:playtime
  1309. on click:show playtimeToggle
  1310. on click:hide playtimeToggle2
  1311. hidden
  1312. owned
  1313. tags:toggle toggles
  1314.  
  1315. /*
  1316. *property1toggle1
  1317. name:Hide Buy 1
  1318. desc:Click to hide all "Buy 1" options.
  1319. icon:icons[1,17]
  1320. on click:hide tag:property1
  1321. on click:show property1toggle2
  1322. on click:hide property1toggle1
  1323. owned
  1324. tags:toggle toggles
  1325.  
  1326. *property1toggle2
  1327. name:Show Buy 1
  1328. desc:Click to show all "Buy 1" options.
  1329. icon:icons[2,17]
  1330. on click:show tag:property1
  1331. on click:show property1toggle1
  1332. on click:hide property1toggle2
  1333. hidden
  1334. owned
  1335. tags:toggle toggles
  1336.  
  1337. *property2toggle1
  1338. name:Hide Buy 10
  1339. desc:Click to hide all "Buy 10" options.
  1340. icon:icons[1,17]
  1341. on click:hide tag:property2
  1342. on click:show property2toggle2
  1343. on click:hide property2toggle1
  1344. owned
  1345. tags:toggle toggles
  1346.  
  1347. *property2toggle2
  1348. name:Show Buy 10
  1349. desc:Click to show all "Buy 10" options.
  1350. icon:icons[2,17]
  1351. on click:show tag:property2
  1352. on click:show property2toggle1
  1353. on click:hide property2toggle2
  1354. hidden
  1355. owned
  1356. tags:toggle toggles
  1357.  
  1358. *property3toggle1
  1359. name:Hide Buy 100
  1360. desc:Click to hide all "Buy 100" options.
  1361. icon:icons[1,17]
  1362. on click:hide tag:property3
  1363. on click:show property3toggle2
  1364. on click:hide property3toggle1
  1365. owned
  1366. tags:toggle toggles
  1367.  
  1368. *property3toggle2
  1369. name:Show Buy 100
  1370. desc:Click to show all "Buy 100" options.
  1371. icon:icons[2,17]
  1372. on click:show tag:property3
  1373. on click:show property3toggle1
  1374. on click:hide property3toggle2
  1375. hidden
  1376. owned
  1377. tags:toggle toggles
  1378. */
  1379.  
  1380.  
  1381.  
  1382. Achievements
  1383. *TEMPLATE
  1384. on click:anim glow
  1385. /*
  1386. *AchMillionaire
  1387. name:Millionaire Achievement
  1388. desc:Have <b>[1000000]$</b> worth in USDC.<//><b>Reward:</b><.><b>5%</b> more Pump per click from the "Pump it up" button<.><b>2.5%</b> more Pump from all your Pumpers.
  1389. on earn:yield 1 allAchiev
  1390. on earn:yield (PumpXX*0.05) PumpXX
  1391. on earn:yield (PumperX*0.025) PumperX
  1392. on earn:show BadgeMillionaire
  1393. req:1000000 USDC
  1394. */
Add Comment
Please, Sign In to add comment