Agentperson

unused Mobile Beta Pancake Maker

Sep 19th, 2020 (edited)
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*Please ask before copying code
  2. Warning: Spoilers Ahead*/
  3. Let's make a game!
  4. name:Pancake Maker Demo (Mobile)
  5. desc:Things to test as of 10.15.2020:<.>Challenge Mode<.>Not really a thing to test, but I need ideas for rotational events.<//></>Fun Fact: Press "Description On Box" 10 times to unlock a stat menu. This applies to the other versions (Vers. 2 and above)
  6. author:Agentperson
  7. created:11/11/19
  8. updated:5/4/20
  9. version:1
  10.  
  11. Settings
  12. building cost increase:100%
  13. building cost refund:100%
  14. tiling background:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/BackgroundPM.png
  15. spritesheet:Vers2, 48 by 48, https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PMIconsVers1.png
  16. spritesheet:Vers2B, 256 by 256, https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PMButtons.png
  17. no particles
  18. no bulk particles
  19.  
  20. Layout
  21. *main
  22. contains:buttonA, buttonB, res, cookmenu, Qwerty
  23. *res
  24. contains:Resources
  25. *buttonA
  26. contains:tag:buttonAB
  27. *buttonB
  28. contains:tag:buttonBA
  29. *cookmenu
  30. contains:table, stove, list, toppings, drinks, switch
  31. *table
  32. contains:tag:TableMenu
  33. *stove
  34. contains:tag:CookingMenu
  35. *list
  36. contains:tag:List
  37. *toppings
  38. contains:tag:toppings
  39. names:hide
  40. *drinks
  41. contains:tag:Drinks, tag:OrangeJuiceM, tag:DrinkResults
  42. *switch
  43. contains:tag:switch
  44. *Qwerty
  45. contains:tag:E
  46. *store
  47. contains:shop, ownedstuff
  48. *shop
  49. contains:tag:LayoutThings
  50. no tooltip
  51. *ownedstuff
  52. contains:tag:story, tag:ACHTAG, tag:achieves, tag:Shop, tag:ShopOwned, tag:Recipes, tag:Debug, updates
  53. *updates
  54. contains:log
  55. *log
  56. contains:Log
  57.  
  58. CSS
  59. #box-log
  60. {
  61. height: 200px;
  62. border: 1px solid black;
  63. padding: 3px
  64. margin:0px;
  65. background:rgba(0,0,0,0.9);
  66. }
  67. .thing
  68. {
  69. border-radius:8px;
  70. background:rgba(255,255,255,0.5);
  71. }
  72. #game
  73. {
  74. background:#fff;
  75. font-size:12px;
  76. color:rgba(0,0,0,0.9);
  77. text-shadow:none;
  78. }
  79.  
  80.  
  81. .box
  82. {
  83. text-align:center;
  84. padding:0px;
  85. box-shadow:none;
  86. }
  87. .thing,.box-header,.box-footer,.box-bit
  88. {
  89. background:rgba(255,255,255,0.5);
  90. border:1px solid rgba(0,0,0,0.9);
  91. margin:1px;
  92. }
  93. .thing:hover
  94. {
  95. background:rgba(255,255,255,0.75);
  96. }
  97.  
  98. .box-header
  99. {
  100. margin-bottom:4px;
  101. }
  102. .box-footer
  103. {
  104. margin-top:4px;
  105. }
  106.  
  107. .title
  108. {
  109. text-decoration:underline;
  110. }
  111.  
  112. #box-main
  113. {
  114. left:0px;
  115. top:0px;
  116. bottom:0px;
  117. overflow:hidden;
  118. width:60%;
  119. position:absolute;
  120. }
  121. #box-res
  122. {
  123. width:100%;
  124. height:15%;
  125. top:85%;
  126. display:block;
  127. min-height:32px;
  128. overflow-x:hidden;
  129. overflow-y:scroll;
  130. z-index:100;
  131. position:absolute;
  132. background:rgba(0,125,0,0.9);
  133. border:1px solid rgba(0,0,0,0.9);
  134. }
  135. #box-buttons
  136. {
  137. top:0px;
  138. right:0px;
  139. bottom:0px;
  140. left:0px;
  141. position:absolute;
  142. }
  143. #box-store
  144. {
  145. right:0px;
  146. top:0px;
  147. bottom:0px;
  148. width:40%;
  149. position:absolute;
  150. }
  151. #bulkDisplay
  152. {
  153. margin:-20px 24px 6px 24px;
  154. border:none;
  155. background:transparent;
  156. }
  157.  
  158.  
  159. .thing
  160. {
  161. display:inline-block;
  162. padding:0px;
  163. cursor:pointer;
  164. }
  165. .thing:active
  166. {
  167. opacity:0.5;
  168. }
  169. .upgrade.owned,.achiev.owned
  170. {
  171. box-shadow:0px 0px 0px 2px rgba(0,0,0,0.5) inset;
  172. }
  173. .thing.cantAfford
  174. {
  175. opacity:0.65;
  176. }
  177. .upgrade.cantAfford
  178. {
  179. border:none;
  180. }
  181.  
  182. .thing-costs{font-weight:bold;text-shadow:1px 1px 0px rgba(0,0,0,0.5);}
  183. .cost.hasEnough{color:#0f0;}
  184. .cost.notEnough{color:#f00;}
  185.  
  186.  
  187. .button>.thing-text
  188. {
  189. text-decoration:underline;
  190. }
  191.  
  192. .building
  193. {
  194. display:block;
  195. margin-right:0px;
  196. font-size:14px;
  197. }
  198.  
  199. .fullWidth
  200. {
  201. display:block;
  202. margin-left:0px;
  203. margin-right:0px;
  204. z-index:10;
  205. }
  206. #game .fullWidth
  207. {
  208. height:auto;
  209. min-height:auto;
  210. }
  211. .fullWidth,.fullWidth:hover
  212. {
  213. background:rgba(0,0,0,0.75);
  214. box-shadow:none;
  215. color:#fff;
  216. }
  217. .fullWidth:before,.fullWidth:after
  218. {
  219. content:'';
  220. height:1px;
  221. background:rgba(255,255,255,0.75);
  222. position:absolute;
  223. left:0px;
  224. right:0px;
  225. z-index:-1;
  226. }
  227. .fullWidth:before{top:-1px;}
  228. .fullWidth:after{bottom:-1px;}
  229.  
  230. .fullWidth .thing-icon
  231. {
  232. margin-top:-10px;
  233. margin-bottom:-10px;
  234. }
  235. .fullWidth .thing-text
  236. {
  237. margin-top:-4px;
  238. margin-bottom:-4px;
  239. }
  240.  
  241. .listing
  242. {
  243. font-weight:normal;
  244. }
  245.  
  246. #game.filtersOn .thing-icon{filter:drop-shadow(3px 3px 1px rgba(0,0,0,0.5));}
  247.  
  248. #box-buttonA
  249. {
  250. top:20%;
  251. left:20%;
  252. position:absolute;
  253. }
  254. #box-buttonB
  255. {
  256. left:20%;
  257. position:absolute;
  258. }
  259. #box-buttonB
  260. {top:65%;}
  261. #box-Qwerty
  262. {
  263. top:0.5%;
  264. height:0.5%;
  265. min-height:1px;
  266. position:absolute;
  267. }
  268. #box-shop
  269. {
  270. top:0px;
  271. bottom:0px;
  272. width:100%;
  273. height:15%;
  274. right:0%;
  275. overflow-x:hidden;
  276. overflow-y:scroll;
  277. position:absolute;
  278. background:rgba(0,125,0,1);
  279. border:1px solid rgba(0,0,0,0.9);
  280. }
  281. #box-ownedstuff
  282. {
  283. top:15%;
  284. bottom:0px;
  285. width:100%;
  286. height:90%;
  287. right:0%;
  288. overflow-x:hidden;
  289. overflow-y:scroll;
  290. padding-bottom:48px;
  291. position:absolute;
  292. background:rgba(0,125,0,1);
  293. border:1px solid rgba(0,0,0,0.9);
  294. }
  295. #box-updates
  296. {
  297. width:100%;
  298. height:6%;
  299. right:0%;
  300. position:absolute;
  301. padding-bottom:48px;
  302. background:rgba(0,125,0,0.4);
  303. border:1px solid rgba(0,0,0,0.9);
  304. }
  305. #box-shop>.box-header
  306. {
  307. padding-bottom:16px;
  308. }
  309. #box-cookmenu
  310. {
  311. width:60%;
  312. top:0%;
  313. left:40%;
  314. height:85%;
  315. }
  316. #box-stove
  317. {
  318. width:50%;
  319. height:50%;
  320. top:-50%;
  321. background:rgba(128,128,128,0.9);
  322. overflow-y:scroll;
  323. border:1px solid rgba(0,0,0,0.9);
  324. }
  325. #box-list
  326. {
  327. width:66.5%;
  328. height:25%;
  329. top:-50%;
  330. background:rgba(0,255,0,0.9);
  331. overflow-y:scroll;
  332. border:1px solid rgba(0,0,0,0.9);
  333. }
  334. #box-list
  335. {left:28.5%;}
  336. #box-table
  337. {
  338. width:28.5%;
  339. height:50%;
  340. bottom:-50%;
  341. background:rgba(255,255,0,0.6);
  342. overflow-y:scroll;
  343. border:1px solid rgba(0,0,0,0.9);
  344. }
  345. #box-table
  346. {left:0%;}
  347. #box-toppings
  348. {
  349. width:66.5%;
  350. height:25%;
  351. background:rgba(0,255,0,0.9);
  352. overflow-y:scroll;
  353. border:1px solid rgba(0,0,0,0.9);
  354. top:-50%;
  355. }
  356. #box-toppings
  357. {left:28.5%;}
  358. #box-drinks
  359. {
  360. width:50%;
  361. height:50%;
  362. background:rgba(255,0,255,0.5);
  363. overflow-y:hidden;
  364. border:1px solid rgba(0,0,0,0.9);
  365. position:absolute;
  366. top:0%;
  367. }
  368. #box-drinks
  369. {left:50%;}
  370. #box-res.thing-icon
  371. {
  372. width:32px;
  373. height:32px;
  374. }
  375. #box-switch
  376. {
  377. width:5%;
  378. height:50%;
  379. background:rgba(0,255,0, 1.0);
  380. overflow-y:hidden;
  381. overflow-x:hidden;
  382. border:1px solid rgba(0,0,0,0.9);
  383. top:-100%;
  384. }
  385. #box-switch
  386. {left:95%;}
  387.  
  388. Buttons
  389. *SellButton
  390. name:Sell All Finished Products
  391. no tooltip
  392. class:bigButton hasFlares
  393. icon:Vers2B[0,0]
  394. on click:if (Stack=0) toast <b><#ff0000>No Pancakes to sell. (Error 1)</#></b>
  395. on click:if (Stack>=2) yield (10+Stack) Cash
  396. on click:if (Stack>=2 and ChallengeS>=1) yield (9+Stack) Cash
  397. on click:if (Stack>=2 and chance(75%)) yield 1 Quarter
  398. on click:if (Stack>=2 and Timer1>0.99) yield 5 Ingredients
  399. on click:if (Stack>=2 and Timer2>0.99) yield 5 Cash
  400. on click:if (Stack>=2 and ClassicA=1 and chance(20%)) yield 1 VIce
  401. on click:if (Stack>=2 and ClassicA=1 and chance(20%)) yield 1 CIce
  402. on click:if (Stack>=2 and ClassicA=1 and chance(20%)) yield 1 SIce
  403. on click:if (Stack>=2) lose tag:TableMenu
  404. on click:if (Stack>=2) lose (Stack) OverPancakes
  405. on click:if (Stack>=2) lose (Stack) Stack
  406. on click:if (1=Stack) toast <b><#ff0000>You can't do that. (Error 16)</#></b>
  407. tag:buttonBA
  408. *MakeButton
  409. name:Make A Pancake
  410. no tooltip
  411. class:bigButton hasFlares
  412. icon:Vers2B[0,1]
  413. on click:if (Ingredients>0 and OverPancakes=0) yield 1 StoveSlot1
  414. on click:if (Ingredients>0 and OverPancakes=1) yield 1 StoveSlot2
  415. on click:if (Ingredients>0 and OverPancakes=2) yield 1 StoveSlot3
  416. on click:if (Ingredients>0 and OverPancakes=3) yield 1 StoveSlot4
  417. on click:if (Ingredients>0 and OverPancakes=4) yield 1 StoveSlot5
  418. on click:if (Ingredients>0 and OverPancakes=5) yield 1 StoveSlot6
  419. on click:if (Ingredients>0 and OverPancakes=6) yield 1 StoveSlot7
  420. on click:if (Ingredients>0 and OverPancakes=7) yield 1 StoveSlot8
  421. on click:if (Ingredients>0 and OverPancakes=8) yield 1 StoveSlot9
  422. on click:if (Ingredients>0 and OverPancakes=9) yield 1 StoveSlot10
  423. on click:if (Ingredients>0 and OverPancakes=10) yield 1 StoveSlot11
  424. on click:if (Ingredients>0 and OverPancakes=11) yield 1 StoveSlot12
  425. on click:if (Ingredients>0) lose 1 Ingredients
  426. on click:if (Ingredients>0 and 11>=OverPancakes) yield 1 OverPancakes
  427. on click:if (Ingredients=0) toast <b><#ff0000>No Ingredients to use</#></b>
  428. on click:if (Ingredients=0 and 4>=Cash) yield NoIngredients
  429. on click:if (OverPancakes>=12) toast <b><#ff0000>No more room for pancakes. Remove or sell some pancakes to cook more. (Error 2)</b></#>
  430. on click:if (OverPancakes>=12) yield 1 Ingredients
  431. on click:if (OverPancakes>12) lose 1 OverPancakes
  432. tag:buttonAB
  433. *Uncensored
  434. no tooltip
  435. no text
  436. tag:E
  437. on click:yield 1 Error69
  438. on click:yield 1 TickClick
  439. on click:if (PopUp=1) toast <b><#ff0000>(Insert Meme Here) (Error 69)</b></#>
  440. on tick:
  441. if (chance(1%) and PopUp=1)
  442. $randomValue=random(1,22)
  443. if ($randomValue=1) toast What are the chances of you getting this message?
  444. if ($randomValue=2) toast Why am I stealing features from other games?
  445. if ($randomValue=3) toast Is this annoying you?
  446. if ($randomValue=4) toast There's this one song that was so good there was already a place named after it.
  447. if ($randomValue=5) toast You probably got nothing else to do.
  448. if ($randomValue=6) toast Have you heard of this one IGM game? It has a lot of features and gets update once in a while.
  449. if ($randomValue=7) toast This only exists so I can have filler lines.
  450. if ($randomValue=8) toast At least this doesn't block the stove.
  451. if ($randomValue=9) toast This is a message.
  452. if ($randomValue=10) toast Game Was Not Saved.
  453. if ($randomValue=11) toast She was selling seashells by the seashore... wait that's not right.
  454. if ($randomValue=12) toast The message that was here before wasn't good, so I got rid of it.
  455. if ($randomValue=13) toast This is message 13. Nothing special about it, just wanted to say that.
  456. if ($randomValue=14) toast Hey all, A Message here.
  457. if ($randomValue=15) toast 9wsbEZpP
  458. if ($randomValue=16) toast <b>Someone</b> left the chat.
  459. if ($randomValue=17) toast Fun Fact:146+ Lines are dedicated to losing something.
  460. if ($randomValue=18) toast I had released a game before this. It was.... okay at best.
  461. if ($randomValue=19) toast I can tell you haven't turned off these things.
  462. if ($randomValue=20) toast These were a horrible idea. Why did I think these were good?
  463. if ($randomValue=21) toast I want some cookies.
  464. if ($randomValue=22) toast Hey! Look at my new house that I definitely didn't steal from an emoji list. -->🏡
  465. if ($randomValue=23) toast Toast
  466. if ($randomValue=24) toast Please read the pins. 📌
  467. if ($randomValue=25) toast heehee
  468. //if ($randomValue=26) toast w
  469. end
  470. end
  471. Resources
  472. *TEMPLATE
  473. on click:anim wobble
  474. *Cheat
  475. name:BETA(ss)
  476. no tooltip
  477. start with:1
  478. *Cash
  479. name:Cash
  480. desc:Used to purchase goods.
  481. icon:Vers2[1,0]
  482. *Ingredients
  483. name:Ingredients
  484. desc:Used to make Pancakes
  485. start with:15
  486. icon:Vers2[2,0]
  487. *OverPancakes
  488. always hidden
  489. *Stack
  490. start with:1
  491. always hidden
  492. *TickClick
  493. always hidden
  494. on tick:if (TickClick>=421) lose 1 TickClick
  495. //Items
  496. *TEMPLATE
  497. on click:anim wobble
  498. hidden when 0
  499. *Blueberries|BlueBerries
  500. name:Blueberries
  501. desc:Used for blueberry related things.
  502. icon:Vers2[7,4]
  503. *Quarter|Quarters
  504. name:Coin|Coins
  505. desc:Used to purchase collectibles and turn into other coin forms.<//></><b>Fun Fact:</b> These were going to be called Quarters, but it's name changed as the thing it was going to be used on (Which were Capsule Machines) was cut and I wanted them to no longer only be related to it. This is still referred as Quarters in this game's code along side all of Coin Achievements and the Coin Converter.
  506. icon:Vers2[3,0]
  507. *TEMPLATE
  508. on click:anim wobble
  509. hidden when 0
  510. tag:ShopOwned
  511. *BlueberryCoin
  512. name:Blueberry Coin|Blueberry Coins
  513. text: : [BlueberryCoin]
  514. desc:Used to purchase blueberry related things
  515. icon:Vers2[8,6]
  516. *MapleCoin
  517. name:Maple Coin|Maple Coins
  518. text: : [MapleCoin]
  519. desc:Used to purchase other syrup forms.
  520. icon:Vers2[2,7]
  521. //Event
  522. *VIce
  523. name:Vanilla Ice Cream
  524. text: : [VIce]
  525. desc:Plain and Simple.</></>To unlock the Vanilla Milkshake, get 10 of these during any Ice Cream Event.
  526. icon:Vers2[1,4]
  527. *CIce
  528. name:Chocolate Ice Cream
  529. text: : [CIce]
  530. desc:A great sweat flavor to please anyone..</></>To unlock the Chocolate Milkshake, get 10 of these during any Ice Cream Event.
  531. icon:Vers2[2,4]
  532. *SIce
  533. name:Strawberry Ice Cream
  534. text: : [SIce]
  535. desc:Something more Natural. (Not really)</></>To unlock the Strawberry Milkshake, get 10 of these during any Ice Cream Event.
  536. icon:Vers2[3,4]
  537. //Timers
  538. *TEMPLATE
  539. always hidden
  540. *StoveTime1
  541. on tick:if (StoveSlot1=1) yield 1 StoveTime1
  542. on tick:if (0>=StoveSlot1) lose (StoveTime1) StoveTime1
  543. *StoveTime2
  544. on tick:if (StoveSlot2=1) yield 1 StoveTime2
  545. on tick:if (0>=StoveSlot2) lose (StoveTime2) StoveTime2
  546. *StoveTime3
  547. on tick:if (StoveSlot3=1) yield 1 StoveTime3
  548. on tick:if (0>=StoveSlot3) lose (StoveTime3) StoveTime3
  549. *StoveTime4
  550. on tick:if (StoveSlot4=1) yield 1 StoveTime4
  551. on tick:if (0>=StoveSlot4) lose (StoveTime4) StoveTime4
  552. *StoveTime5
  553. on tick:if (StoveSlot5=1) yield 1 StoveTime5
  554. on tick:if (0>=StoveSlot5) lose (StoveTime5) StoveTime5
  555. *StoveTime6
  556. on tick:if (StoveSlot6=1) yield 1 StoveTime6
  557. on tick:if (0>=StoveSlot6) lose (StoveTime6) StoveTime6
  558. *StoveTime7
  559. on tick:if (StoveSlot7=1) yield 1 StoveTime7
  560. on tick:if (0>=StoveSlot7) lose (StoveTime7) StoveTime7
  561. *StoveTime8
  562. on tick:if (StoveSlot8=1) yield 1 StoveTime8
  563. on tick:if (0>=StoveSlot8) lose (StoveTime8) StoveTime8
  564. *StoveTime9
  565. on tick:if (StoveSlot9=1) yield 1 StoveTime9
  566. on tick:if (0>=StoveSlot9) lose (StoveTime9) StoveTime9
  567. *StoveTime10
  568. on tick:if (StoveSlot10=1) yield 1 StoveTime10
  569. on tick:if (0>=StoveSlot10) lose (StoveTime10) StoveTime10
  570. *StoveTime11
  571. on tick:if (StoveSlot11=1) yield 1 StoveTime11
  572. on tick:if (0>=StoveSlot11) lose (StoveTime11) StoveTime11
  573. *StoveTime12
  574. on tick:if (StoveSlot12=1) yield 1 StoveTime12
  575. on tick:if (0>=StoveSlot12) lose (StoveTime12) StoveTime12
  576. *PlayTime
  577. on tick:yield 1 PlayTime
  578. *EventTime
  579. on tick:lose 1 EventTime
  580. start with:1199
  581. on tick:if (0>=EventTime) yield 1800 EventTime
  582. on earn:
  583. if (EventTime>=1799 and ChallengeS=0)
  584. $randomValue=random(1,2)
  585. if ($randomValue=1) yield 600 EventTime1
  586. if ($randomValue=2) yield 600 EventTime2
  587. else if (EventTime>=1799 and ChallengeS>=1)
  588. $randomValue=random(1,3)
  589. if ($randomValue=1) yield 600 EventTime1
  590. if ($randomValue=2) yield 600 EventTime2
  591. if ($randomValue=2) yield 600 EventTime2
  592. end
  593. end
  594. *EventTime1
  595. *EventTime2
  596. *TEMPLATE
  597. hidden when 0
  598. *Timer1
  599. name:Ingredient Boost Timer
  600. icon:Vers2[4,12]
  601. on tick:lose 1 Timer1
  602. *Timer2
  603. name:Cash Boost Timer
  604. icon:Vers2[4,12]
  605. on tick:lose 1 Timer2
  606. //Cooking Thing
  607. *PancakeNumber
  608. name:Pancakes
  609. text:[PancakeNumber]
  610. desc:The Number of pancakes you have. Currently doesn't work.
  611. tag:List
  612. //Drink Numbers
  613. *DrinksCoolDown
  614. text:On Cooldown
  615. tag:Drinks
  616. no buy
  617. no tooltip
  618. start with:45
  619. on tick:yield 1 DrinksCoolDown
  620. on tick:if (DrinksCoolDown>=45) hide DrinksCoolDown
  621. on tick:if (44>=DrinksCoolDown) show DrinksCoolDown
  622. on tick:if (DrinksCoolDown>=47) lose 1 DrinksCoolDown
  623. *OJMeter
  624. on tick:if (OJMeter>=1) yield (random(5,10)) OJMeter
  625. on tick:if (OJMeter>100) lose (OJMeter-100) OJMeter
  626. tag:OrangeJuiceM
  627. on click:if (10>=OJMeter) yield 1 OJBad
  628. on click:if (OJMeter>=11) yield 1 OJOk
  629. on click:if (OJMeter>=26) yield 1 OJGood
  630. on click:if (OJMeter>=26) lose 1 OJOk
  631. on click:if (OJMeter>=46) yield 1 OJPerfect
  632. on click:if (OJMeter>=46) lose 1 OJGood
  633. on click:if (OJMeter=50) yield PerfectDrink1
  634. on click:if (OJMeter>=56) yield 1 OJGood
  635. on click:if (OJMeter>=56) lose 1 OJPerfect
  636. on click:if (OJMeter>=76) yield 1 OJOK
  637. on click:if (OJMeter>=76) lose 1 OJGood
  638. on click:if (OJMeter>89) yield 1 OJBad
  639. on click:if (OJMeter>89) lose 1 OJOK
  640. on click:lose (OJMeter) OJMeter
  641. on click:yield 1 SellDrinks
  642. on click:hide tag:OrangeJuiceM
  643. on click:show tag:DrinkResults
  644. //Misc
  645. *TEMPLATE
  646. *Tick
  647. on tick:if (0>=Tick) yield 1 Tick
  648. on tick:if (Tick=0) log <t><#404040>Version 0 - Demo</#><//><.>Pancake Maker is now available as a demo.</>(1/10/2020)<//></><t><#404040>Version 0 Update 1 - Fixing Stuff</#><//><.>Fixed some Grammar and Spelling errors.<.>Added the titles for the Tasks as text.</>(1/11/2020)<//></><t><#404040>Version 0 Update 2 - You're Not Stuck Anymore Update</#><//><.>You can no longer get stuck with 0 ingredients and less than 10 Cash.<.>Some images should work now.</>(1/22/2020)</><.>Added a new bottom screen message. (It was actually there since release, but I forgot to change a value)</>(1/26/2020)<//></><t><#404040>Version 0 Update 3 - I Was So Dumb That I Forgot A Thing Update</#><//><.>Prevented Free Ingredient Generation from the item "Letter From AgentPerson" unless all requirements are met.</>(2/14/2020)<//></><t><#404040>Version 0 Update 4 - Does the Name Matter?</#><//><.>Important Items will now show up first in the shop (This is mainly for the next version update (There's only 1 important item anyway)).</>(3/21/2020)<//></><t><#404040>Version 0 Update 5 - Hopefully this will be the last Pre-Version 1 update.</#><//><.>The Dedicated Trash Button now properly deletes pancakes (Still buggy though)<.>Ingredients now cost 5 Cash instead of 10.<.>There's no viruses in this game. I think...</>(4/5/2020)<.>Increased earn amount for making pancakes by 4. This should now allow actual progression. (Shoutouts to ʐ̈ MANNNNNNN#2006)</>(4/5/2020)<//></><t><#404040>Version 1 - Welcome to Pancake Maker</#><//><.>3 New Currencies<.>Drinks (will be expanded eventually)<.>3 New Tasks<.>23 New Achievements<.>2 New Toppings<.>Redesigned the Side Stuff to make it more organized<.>Settings has been added. This is where you change some things.<.>You can now buy multiple ingredients with one click. (Up to 50)<.>Introducing the Cook Book. This will show you how far you've gone on your recipes. It will have more features soon, I promise.<.>I have a background now.<.>The game is no longer in a really incomplete state.<.>Next Version update will add new, non-blurry icons</>(5/4/2020)<//></><t><#404040>Version 1 Update 1 - Fixing Stuff Again</#><//><.>Fixed some style sheet problems.</>(5/16/2020)<//></>
  649. on load:lose 1 Tick
  650. always hidden
  651. *GameStatProgress
  652. always hidden
  653. on load:lose (GameStatProgress) GameStatProgress
  654. *BAResource
  655. always hidden
  656. start with:1
  657. on tick:multiply cost of tag:ShopMulti by BAResource
  658. on tick:if (BAResource>50) lose 50 BAResource
  659. *QuestCheckBlue3
  660. always hidden
  661. on earn:if (QuestCheckBlue3>1.99) lose (QuestCheckBlue3-1) QuestCheckBlue3
  662. *ACHPoints
  663. always hidden
  664. *ACH
  665. text:<b>[ACHPoints]/31 (~[((ACHPoints/31)*100)]%) earned</>
  666. tag:ACHTAG
  667. no tooltip
  668. *RecipePoints
  669. always hidden
  670. Shinies
  671. *BoxShiny
  672. frequency:60
  673. frequency variation:60
  674. duration:15
  675. icon:Vers2[3,10]
  676. movement:wiggle anywhere
  677. class:hasFlares
  678. on click:
  679. $randomValue=random(1,4)
  680. if ($randomValue=1 and ClassicA=1)
  681. yield 30 Timer1
  682. toast Ingredient Boost Received (Lasts for 30 Seconds). Sell some pancakes to receive 5 Ingredients
  683. else if ($randomValue=2 and ClassicA=1)
  684. yield 30 Timer2
  685. toast Cash Boost Received (Lasts for 30 Seconds). Sell some pancakes to receive 5 bonus Cash.
  686. else if (ChallengeS>=1)
  687. toast Box is empty. :(
  688. else
  689. yield 3 Ingredients
  690. toast 3 Ingredients Received.
  691. end
  692. end
  693. Achievements
  694. *TEMPLATE
  695. on earn:yield ACHPoints
  696. on click:anim wobble
  697. tag:achieves
  698. hidden when 0
  699. //Story
  700. *Completed
  701. name:The Beginning
  702. desc:Congrats, you have sold 1 stack of pancakes.</></>This Achievement unlocks - <.>Basically Everything you have yet use.
  703. req:8 Cash
  704. *ClassicA
  705. name:Rise and Shine
  706. desc:You Learned the Classic Stack Recipe.
  707. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/Sun.png
  708. *BlueBerryA
  709. name:Blue for Blueberries
  710. desc:You learned the Blueberry Stack Recipe.</></>This Achievement unlocks - <.>Blueberries<.>Additional Tasks to do.
  711. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  712. *SyrupVar
  713. name:Syrup Variant
  714. desc:Achieve a syrup variant.</></>This Achievement unlocks - <.>Blueberry Syrup<.>Additional Tasks to do (Coming Soon).
  715. //Side Quests
  716. *CapMachineTaskA
  717. name:Fixed
  718. desc:You had fixed the Capsule machine.</></>This Achievement unlocks - <.>Nothing for now.
  719. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Quest/ToolBox.png
  720. //Cooking
  721. *BurntAchieve
  722. name:Extra Crispy
  723. desc:I couldn't think of a cool description to put here.</></>Burn a Pancake (+50 Seconds).
  724. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Burnt.png
  725. *PerfectDrink1
  726. name:Perfect Orange Juice
  727. desc:You must of have gotten lucky to achieve this.</></>Get a 50 on Orange Juice.
  728. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Orange.png
  729. //Resources
  730. *IngredientHoarder1
  731. name:Ingredient Saver
  732. desc:You're going need more to make a profit.</></>Own 25 Ingredients.
  733. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/png.png
  734. req:25 Ingredients
  735. *IngredientHoarder2
  736. name:Ingredient Collector
  737. desc:It's a long process but it's worth it.</></>Own 50 Ingredients.
  738. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/png.png
  739. req:50 Ingredients
  740. *IngredientHoarder3
  741. name:Ingredient Hoarder
  742. desc:Congrats on the achievement! You really wanted to waste your cash.</></>Own 100 Ingredients.
  743. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/png.png
  744. req:100 Ingredients
  745. *IngredientHoarder4
  746. name:TOO MUCH
  747. desc:When I said that you needed more ingredients, <b>this</b> is not what I meant.</></>Own 200 Ingredients.
  748. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/png.png
  749. req:200 Ingredients
  750. *BlueberryHoarder1
  751. name:Blueberry Saver
  752. desc:Seems simple, right?</></>Own 1000 Blueberries.
  753. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  754. req:1000 Blueberries
  755. *BlueberryHoarder2
  756. name:Blueberry Collector
  757. desc:Don't ask why this isn't 2000.</></>Own 2250 Blueberries.
  758. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  759. req:2250 Blueberries
  760. *BlueberryHoarder3
  761. name:Blueberry Hoarder
  762. desc:Goodluck on the next one.</></>Own 4500 Ingredients.
  763. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  764. req:4500 Blueberries
  765. *BlueberryHoarder4
  766. name:Blueberry Master
  767. desc:9,000 would of been easier, but for some reason I really wanted to make this 10,000.</></>Own 10,000 Blueberries.
  768. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  769. req:10000 Blueberries
  770. *Quarters1
  771. name:$10 in Coins
  772. desc:Basically extra profit.</></>Own 40 Coins.
  773. req:40 Quarters
  774. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/CoinBasic.png
  775. *Quarters2
  776. name:$25 in Coins
  777. desc:If you do the math, a coin in this game is worth 25¢ in USD. I just realized that I should of mentioned that these achievements were using USD. oops</></>Own 100 Coins.
  778. req:100 Quarters
  779. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/CoinBasic.png
  780. *Quarters3
  781. name:$50 in Coins
  782. desc:Let's be honest, How long did this take you to do?</></>Own 200 Coins.
  783. req:200 Quarters
  784. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/CoinBasic.png
  785. *Quarters4
  786. name:$100 in Coins
  787. desc:I don't have a description. Sorry.</></>Own 400 Coins.</><b>This achievement unlocks the Coin to Cash converter</b>
  788. req:400 Quarters
  789. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/CoinBasic.png
  790. *BlueCoins1
  791. name:A small box of Blueberry Coins
  792. desc:Let's see how long this description can be.</></>Own 50 Blueberry Coins</></>So how's your day been? Mine has been pretty fine. I preformed Cellular Respiration as I normally do. If you don't know what that is, look it up. So this game wasn't actually my first game, but my third game. My first game was a game called A Ice Cream Clicker. In that game you click on a button produce Vanilla Ice Cream and Cash. Those items would of been used to purchase the Chocolate and Strawberry flavors. Now, this concept may seem like a normal first game, but you could combine ice creams to get new flavors. You could also evolve ice creams into new flavors as well. The game itself was okay. Basically the same quality as other first games. When I was switching image hosting sites, I decided not switch over the ones for this game, so they are lost forever. The game went with it. I did release it on DashNet forums (When that was still a thing. RIP DashNet Forums). Now that I think about it, I really want to try this concept again, especially now when I have more experience on the IGM platform. So what was my second game? I never released in any form, and there's only 1 image on the internet. Well, I was making an attempt to make an RPG game. I no real way to explain it, but if you are familiar with RPG games with only one playable character, it would be similar. I didn't have ideas to progress the story and the HP function didn't work properly so I cancelled the project. I still have all of the icons that would of been used. In fact, the icon for the achievement "Rise and Shine" is one of those icons that would of been used to tell whether it's day or night. I'm definitely not trying to be story heavy ever again. The first mention of Pancake Maker was in a Discord message in the Idle Game Maker Channel of the DashNet Discord. Development on this game started on November 11th, 2019. I won't reveal too much as I'm saving most of this for a thing on an upcoming IGM Fan Guide. The first image of this game was revealed on December 1st, 2019 and the first playable release was on January 10th, 2020. I don't have much more to say about this topic.</></>
  793. req:50 BlueberryCoin
  794. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/BlueberryCoin.png
  795. *BlueCoins2
  796. name:A Larger Box of Blueberry Coins
  797. desc:The Small Box of Blueberry Coins description would of gotten cut off on my screen, so I gave up and moved on to making this one. I promise this description will be shorter.</></>Own 100 Blueberry Coins.</></>I don't know why I gave a summary of my IGM development history there.
  798. req:100 BlueberryCoin
  799. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/BlueberryCoin.png
  800. *MapleCoins1
  801. name:A Bottle of Maple Coins
  802. desc:See what I did there?</></>Own 50 Maple Coins.
  803. req:50 MapleCoin
  804. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/MapleCoin.png
  805. *MapleCoins2
  806. name:A Semi-Clear Container Holding Metal Currency Based On a Thick Fluid Most Famous In Canada.
  807. desc:No, this item is not a copy of the "Bottle of Maple Coins" achievement.</></>You have to achieve One Hundred Metal Currency based of a Thick Fluid most famous in Canada.
  808. req:100 MapleCoin
  809. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/MapleCoin.png
  810. //Shops
  811. //Shinies
  812. //Misc
  813. *Error69
  814. name:Error 69
  815. desc:How did you even find this?
  816. *Clicker
  817. name:Get Error 69, 420 times.
  818. desc:Okay, I'll stop.
  819. req:420 TickClick
  820. *GameStatAchieve
  821. name:Not Again...
  822. desc:Please stop clicking things that don't do anything.
  823. req:101 GameStatProgress
  824. *PlayTimeA1
  825. name:10 Mintutes
  826. desc:You can leave now.
  827. req:600 PlayTime
  828. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/TheTime.png
  829. *PlayTimeA2
  830. name:1 Hour
  831. desc:I know this is the only cooking game made with Idle Game Maker, but there are better games made on this engine. Just play those instead.
  832. req:3600 PlayTime
  833. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/TheTime.png
  834. *PlayTimeA3
  835. name:6 Hours
  836. desc:There's a game on engine where you can grow fricking Dragons, and you're over here still playing this game.
  837. req:21600 PlayTime
  838. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/TheTime.png
  839. *PlayTimeA4
  840. name:12 Hours
  841. desc:*PlayTimeA4</>name:12 Hours</>desc:Why are you still playing this game?</>req:43200 PlayTime</>icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/TheTime.png
  842. req:43200 PlayTime
  843. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/TheTime.png
  844. *PlayTimeA5
  845. name:1 Day
  846. desc:...</></><i>You should of left by now, but...</>You decided to play for 24 Hours...</>Why?</i>
  847. req:86400 PlayTime
  848. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/TheTime.png
  849. Upgrades
  850. //Layout Buttons
  851. *TEMPLATE
  852. tag:LayoutThings
  853. no buy
  854. on click:hide tag:ACHTAG
  855. on click:hide tag:achieves
  856. on click:hide tag:Shop
  857. on click:hide tag:ShopOwned
  858. on click:hide tag:Recipes
  859. on click:hide tag:story
  860. on click:hide tag:Debug
  861. *TasksL
  862. name:Tasks
  863. on click:show tag:story:notOwned
  864. *ShopL
  865. name:Shop
  866. on click:show tag:Shop:notOwned
  867. *ShopOwnedL
  868. name:Owned Stuff
  869. on click:show tag:ShopOwned
  870. *RecipesL
  871. name:Recipes
  872. on click:show tag:Recipes
  873. *AchL
  874. name:Achievements
  875. on click:show tag:ACHTAG
  876. on click:show tag:achieves
  877. *SettingsL
  878. name:Settings
  879. on click:show tag:Debug
  880. //Products
  881. //Single Purchase
  882. *TEMPLATE
  883. on earn:hide this
  884. tag:Shop
  885. *BlueberrySyrupStore
  886. name:Blueberry Syrup Recipe Piece
  887. desc:This is a recipe piece. Recipe pieces are used to unlock the other toppings used for the Pancake Recipe.
  888. text:[?(have DescriptionOnBox)|Blueberry Syrup Recipe Piece</>This is a recipe piece. Recipe pieces are used to unlock the other toppings used for the Pancake Recipe.|Blueberry Syrup Recipe Piece]
  889. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Blue.png
  890. req:BlueBerry3
  891. cost:25 BlueberryCoin, 50 MapleCoin
  892. *CookBookR
  893. name:Cook Book
  894. desc:A place to store your recipes. Why you don't already have this already is beyond me.
  895. text:[?(have DescriptionOnBox)|Cook Book</>A place to store your recipes. Why you don't already have this already is beyond me.|Cook Book]
  896. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/Book.png
  897. cost:100 Cash
  898. req:1 Classic
  899. on earn:yield Guide
  900. *ToolBox
  901. name:Tool Box
  902. desc:A box to store all of your tools. Comes with some of the stuff you need to fix something.
  903. text:[?(have DescriptionOnBox)|Tool Box</>A box to store all of your tools. Comes with some of the stuff you need to fix something.|Tool Box]
  904. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Quest/ToolBox.png
  905. cost:75 Cash
  906. req:1 Classic2
  907. on earn:yield ToolBoxR
  908. //Recipes
  909. *TEMPLATE
  910. on earn:hide this
  911. tag:Shop
  912. *ClassicR
  913. name:Classic Stack Recipe
  914. desc:This is a piece of paper with important info on it. Required to complete the Classic Stack Task.
  915. text:[?(have DescriptionOnBox)|Classic Stack Recipe</>This is a piece of paper with important info on it. Required to complete the Classic Stack Task.|Classic Stack Recipe]
  916. cost:150 Cash
  917. req:1 Classic
  918. on earn:yield ClassicRR
  919. on earn:hide this
  920. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/CPancake.png
  921. *BlueberryR
  922. name:Blueberry Stack Recipe
  923. desc:This is another piece of paper containing important info on it. Required to continue the Blueberry Task.
  924. text:[?(have DescriptionOnBox)|Blueberry Stack Recipe</>This is another piece of paper containing important info on it. Required to continue the Blueberry Task.|Blueberry Stack Recipe]
  925. cost:200 Cash
  926. req:1 BlueBerry1
  927. on earn:yield BlueberryRR
  928. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/BBPancake.png
  929. *OrangeJuiceR
  930. name:Orange Juice Recipe
  931. desc:This only exists to increase the game's length. Required to complete the Drinks Task.
  932. text:[?(have DescriptionOnBox)|Orange Juice Recipe</>This only exists to increase the game's length. Required to complete the Drinks Task.|Orange Juice Recipe]
  933. cost:300 Cash
  934. req:1 BlueBerryA
  935. on earn:yield OrangeJuiceRR
  936. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/Orange.png
  937. //Multi-Purchase
  938. *TEMPLATE
  939. on earn:lose this
  940. tags:Shop ShopMulti
  941. *BuyAmountButton
  942. text:--------------------Buying [BAResource]--------------------
  943. no tooltip
  944. no buy
  945. on click:
  946. if (BAResource=1)
  947. yield 4 BAResource
  948. else if (BAResource=5)
  949. yield 5 BAResource
  950. else if (BAResource=10)
  951. yield 15 BAResource
  952. else if (BAResource=25)
  953. yield 25 BAResource
  954. else if (BAResource=50)
  955. yield 1 BAResource
  956. end
  957. end
  958. *BuyIngredients
  959. name:Buy Ingredients
  960. desc:Does the <b>exact thing</b> the name of this item says.
  961. text:[?(have DescriptionOnBox)|Buy Ingredients</>Does the <b>exact thing</b> the name of this item says.|Buy Ingredients]
  962. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/png.png
  963. cost:5 Cash
  964. req:1 Completed
  965. on earn:yield (BAResource) Ingredients
  966. *BuyBlueberries
  967. name:Buy Blueberries
  968. desc:You won't believe it, but this also does the <b>exact thing</b> the name of this item says.
  969. text:[?(have DescriptionOnBox)|Buy Blueberries</>You won't believe it, but this also does the <b>exact thing</b> the name of this item says.|Buy Blueberries]
  970. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  971. cost:10 Cash
  972. req:1 BlueBerry2
  973. on earn:if (ChallengeS=0) yield (random(45,65)*BAResource) Blueberries
  974. on earn:if (ChallengeS>=1) yield (random(25,45)*BAResource) Blueberries
  975. *QuarterToCash
  976. name:Coins to Cash Converter
  977. desc:Coverts Coins into Cash at 40 Coins.</></>40 Coins = 10 (5 in Challenge Mode) Cash. Works with Multi-Buying.
  978. text:[?(have DescriptionOnBox)|Coins to Cash Converter</>Coverts Coins into Cash at 40 Coins.</></>40 Coins = 10 (5 in Challenge Mode) Cash. Works with Multi-Buying.|Coins to Cash Converter]
  979. cost:40 Quarters
  980. on earn:if (ChallengeS=0) yield (10*BAResource) Cash
  981. on earn:if (ChallengeS>=1) yield (5*BAResource) Cash
  982. req:Quarters4
  983. *CoinToMaple
  984. name:Coins to Maple Coins Converter
  985. desc:Converts Coins to Maple Coins at 10 Coins.</></>4 Coins = 1 Maple Coin. Works with Multi-Buying.
  986. text:[?(have DescriptionOnBox)|Coins to Maple Coins Converter</>Converts Coins to Maple Coins at 10 Coins.</></>10 Coins = 1 Maple Coin. Works with Multi-Buying.|Coins to Maple Coins Converter]
  987. cost:4 Quarters
  988. on earn:yield (BAResource) MapleCoin
  989. req:1 MapleCoin:earned
  990. *CoinToBlue
  991. name:Coins to Blueberry Coins Converter
  992. desc:Converts Coins to Blueberry Coins at 10 Coins.</></>4 Coins = 1 Blueberry Coin. Works with Multi-Buying.
  993. text:[?(have DescriptionOnBox)|Coins to Blueberry Coins Converter</>Converts Coins to Blueberry Coins at 10 Coins.</></>10 Coins = 1 Blueberry Coin. Works with Multi-Buying.|Coins to Blueberry Coins Converter]
  994. cost:4 Quarters
  995. on earn:yield (BAResource) BlueberryCoin
  996. req:1 BlueberryCoin:earned
  997. //Items REPEAT
  998. *TEMPLATE
  999. no text
  1000. tag:ShopOwned
  1001. on click:anim wobble
  1002. *CookBook
  1003. name:Guide to The Blue Pancake
  1004. desc:<b><#ff0000>Warning: This guide is kinda inaccurate to how to make a pancake in this game (There used to be a flipping mechanic but it didn't work). It's better to learn on your own.</#></><//>Welcome to your new job at <b>The Blue Pancake</b>! We are happy to have you part of our business or something. This piece of paper will tell you how to make a pancake.</><b>Step 1</b><//>Mix the milk, eggs, etc into a bowl. The Ingredients to do this are listed above. You may add other contents to the pancake, but for now just go to the next step.</><b>Step 2</b><//>Add the batter to the stove. Make sure it is shape like a circle. After that, wait 2 minutes, and then flip them. Wait another minute, then take it out of the stove</><b>Step 3</b><//>Add pancakes to a plate. The maximum amount of pancakes you can stack is 4 (Will originally did 5, but due to health standards in the area, we were forced to lower it). Add additional items if you please and then you are done.</></>This clearly shows this is a terrible job, but you do get good payment.
  1005. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/Guide.png
  1006. owned
  1007. *Guide
  1008. name:Cook Book
  1009. desc:A place to store your recipes.</></>Unlocked [RecipePoints+ClassicR]/3</>You have <b>[(((RecipePoints+ClassicR)/3)*100)]%</b> of the collection.
  1010. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/Book.png
  1011. hidden when 0
  1012. tags:ShopOwned Recipes
  1013. *NoIngredients
  1014. name:Letter from AgentPerson
  1015. desc:Dear <b>Random Player</b>,</>I like to congratulate you for hard locking yourself. Whether you didn't mean to do it, or you were just looking for achievements, you're stuck now. There's nothing you can do at this point. If you had thought twice about this, you probably wouldn't be seeing this right now. Anyway, that's all I have to say. By the way, this item gives 5 ingredients. All you need to do is click it once. I did this so you didn't have to start over. Your welcome. - From, <b>AgentPerson</b>
  1016. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/Letter.png
  1017. on click:if (Ingredients=0 and 4>=Cash) yield 5 Ingredients
  1018. hidden when 0
  1019. //Quest Items
  1020. *TEMPLATE
  1021. no buy
  1022. hidden when 0
  1023. tag:ShopOwned
  1024. on click:anim wobble
  1025. no text
  1026. *ToolBoxR
  1027. name:Tool Box
  1028. desc:A box to store all of your tools. Comes with some of the stuff you need to fix something.
  1029. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Quest/ToolBox.png
  1030. //Recipes REPEAT
  1031. *TEMPLATE
  1032. no buy
  1033. hidden when 0
  1034. tag:Recipes
  1035. on click:anim wobble
  1036. no text
  1037. *ClassicRR
  1038. name:Classic Stack Recipe
  1039. desc:This is a piece of paper with important info on it.
  1040. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/CPancake.png
  1041. *BlueberryRR
  1042. name:Blueberry Recipe
  1043. desc:This is another piece of paper containing important info on it.
  1044. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/BBPancake.png
  1045. *OrangeJuiceRR
  1046. name:Orange Juice Recipe
  1047. desc:This only exists to increase the game's length.<//></>To get the most cash out of this drink, you need to click the box when it's the closest to 50.
  1048. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/Orange.png
  1049. //Tasks
  1050. *TEMPLATE
  1051. tag:story
  1052. no buy
  1053. on earn:hide this
  1054. on click:anim wobble
  1055. *Event
  1056. name:Current Event
  1057. text:Current Event: [?EventTime1>=1|Milkshake Frenzy|][?EventTime2>=1|Test|][?1200>=EventTime|None|]
  1058. desc:[?EventTime1>=1|Test 1|][?EventTime2>=1|Test 2|]</></><b>Time Til Next Event</b>:[EventTime]</><b>Time left in Current Event</b>:[?EventTime>=1201|[EventTime-1200]|Over]
  1059. *Classic
  1060. name:Classic Stack (1)
  1061. desc:Great, you made 1 Stack. Now you need to continue selling them.<//></><b>Own 50 Dollars.</b>
  1062. text:[?(have DescriptionOnBox)|Classic Stack (1)</>Great, you made 1 Stack. Now you need to continue selling them.<//></><b>Own 50 Dollars.</b>|Classic Stack (1)]
  1063. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/CPancake.png
  1064. on click:if (Cash>=50) yield Classic
  1065. req:1 Completed
  1066. *Classic2
  1067. name:Classic Stack (2)
  1068. desc:During your previous task, you got a letter.</></>Dear Manager<//>I see that you are taking care of this business now. Maybe even doing better than the previous guy. I don't know what else to put here so goodbye.</>From, Unknown.</></> Who is this guy? Let's just get to the task.</><b>Own The Classic Stack Recipe</b>
  1069. text:[?(have DescriptionOnBox)|Classic Stack (2)</>During your previous task, you got a letter.</></>Dear <b>Manager</b><//>I see that you are taking care of this business now. Maybe even doing better than the previous guy. I don't know what else to put here so goodbye.</>From, <b>Unknown</b>.</></> Who is this guy? Let's just get to the task.</><b>Own The Classic Stack Recipe.|Classic Stack (2)]
  1070. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/CPancake.png
  1071. on click:if (ClassicR=1) yield Classic2
  1072. on click:if (ClassicR=1) yield ClassicA
  1073. req:1 Classic
  1074. *BlueBerry1
  1075. name:Blueberry Task (1)
  1076. desc:So, you have completed the Classic Stack task. The variety is pretty low though. You can continue selling Pancakes with maple syrup and butter, but there's more we can do with this business. Before we do anything else, let's just start the first objective.<//></><b>Own 100 Dollars and 25 Ingredients.</b>
  1077. text:[?(have DescriptionOnBox)|Blueberry Task (1)</>So, you have completed the Classic Stack task. The variety is pretty low though. You can continue selling Pancakes with maple syrup and butter, but there's more we can do with this business. Before we do anything else, let's just start the first objective.<//></><b>Own 100 Dollars and 25 Ingredients.</b>|Blueberry Task (1)]
  1078. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1079. on click:if (Cash>=100 and Ingredients>=25) yield BlueBerry1
  1080. req:1 Classic2
  1081. *BlueBerry2
  1082. name:Blueberry Task (2)
  1083. desc:Next Objective.<//></><b>Own the Blueberry Stack Recipe.</b><//></>I could of done the icon a little better honestly. It just doesn't look right.
  1084. text:[?(have DescriptionOnBox)|Blueberry Task (2)</>Next Objective.<//></><b>Own the Blue Berry Stack Recipe.</b><//></>I could of done the icon a little better honestly. It just doesn't look right.|Blueberry Task (2)]
  1085. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1086. on click:if (BlueberryR>=1) yield BlueBerry2
  1087. on click:if (BlueberryR>=1) yield BlueBerryA
  1088. req:BlueBerry1
  1089. *BlueBerry3
  1090. name:Blueberry Task (3)
  1091. desc:We now own the Blueberry recipe. Congrats, but you can't make it. Anyway, this task has multiple objectives. Here's each one.<//></><.>Own some Blueberries:[?(BlueBerries>0)|<b>Completed</b>|In Progress]<.>Add Blueberries to a pancake:[?(QuestCheckBlue3>0)|<b>Completed</b>|In Progress]<.>Own Something:[?(BlueberryCoin>0)|<b>Completed</b>|In Progress]
  1092. text:[?(have DescriptionOnBox)|Blueberry Task (3)</>We now own the Blueberry recipe. Congrats, but you can't make it. Anyway, this task has multiple objectives. View the description to see the objectives.|Blueberry Task (3)]
  1093. on click:if (BlueBerries>0 and QuestCheckBlue3>0 and BlueberryCoin>0) yield BlueBerry3
  1094. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1095. req:BlueBerry2
  1096. *BlueBerry4
  1097. name:Blueberry Task (4)
  1098. desc:How about we make out blueberries into Blueberry Syrup? No? Well we don't get to the good stuff til later on so just do this. <b>Learn how to make blueberry syrup please. Thanks.</b>
  1099. text:[?(have DescriptionOnBox)|Blueberry Task (4)</>How about we make out blueberries into Blueberry Syrup? No? Well we don't get to the good stuff til later on so just do this. <b>Learn how to make blueberry syrup please. Thanks.</b>|Blueberry Task (4)]
  1100. on click:if (BlueberrySyrupStore=1) yield BlueBerry4
  1101. on click:if (BlueberrySyrupStore=1) yield SyrupVar
  1102. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1103. req:BlueBerry3
  1104. *CoinQuest1
  1105. name:Coin Quest (1)
  1106. desc:Since when were other coins a thing? Well, I would put lore here, but I'm too lazy to think of something that will be tolerable. Plus this game isn't really a story heavy game. Anyway, collect the following.</></><.>25 Blueberry Coins[?(BlueberryCoin>=25)|<b>Completed</b>|In Progress]<.>Collect 25 Maple Coins:[?(MapleCoin>=25)|<b>Completed</b>|In Progress]
  1107. text:[?(have DescriptionOnBox)|Coin Quest (1)</>Since when were other coins a thing? Well, I would put lore here, but I'm too lazy to think of something that will be tolerable. Plus this game isn't really a story heavy game. Anyway, collect the following in this item's description.|Coin Quest (1)]
  1108. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Coins/CoinBasic.png
  1109. on click:if (BlueberryCoin>=25 and MapleCoin>=25) yield CoinQuest1
  1110. req:BlueBerry3
  1111. *DrinksTask1
  1112. name:Drinks Task (1)
  1113. desc:Now that we have another recipe, let's focus now on drinks, which is the only thing left to do at this time. It's time to make Orange Juice! It's really the only thing we can make right now since the other stuff for the other drinks are currently broken. You already know the objective.<//></><b>Own the Orange Juice Recipe.</b>
  1114. text:[?(have DescriptionOnBox)|Drinks Task (1)</>Now that we have another recipe, let's focus now on drinks, which is the only thing left to do at this time. It's time to make Orange Juice! It's really the only thing we can make right now since the other stuff for the other drinks are currently broken. You already know the objective.<//></><b>Own the Orange Juice Recipe.</b>|Drinks Task (1)]
  1115. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Recipes/Orange.png
  1116. on click:if (OrangeJuiceR>=1) yield DrinksTask1
  1117. req:BlueBerry2
  1118. //Side Quests
  1119. *CapMachineTask
  1120. name:Old Capsule Machine
  1121. desc:Dear <b>Manager</b>,<//>Hey it's me, that unknown dude that you don't care about. I sent you a old Capsule Machine for no reason. It used to be owned by the last manager, but now I got it from him to give it you. Hope you like it.</>From, <b>Unknown</b></q></></> You looked at the machine at closer inspection, it's unusable. This is your first optional task, so feel free to do this one whenever you want.<//></><b>Fix the machine.</b>
  1122. text:[?(have DescriptionOnBox)|Old Capsule Machine</>Dear <b>Manager</b>,<//>Hey it's me, that unknown dude that you don't care about. I sent you a old Capsule Machine for no reason. It used to be owned by the last manager, but now I got it from him to give it you. Hope you like it.</>From, <b>Unknown</b></q></></> You looked at the machine at closer inspection, it's unusable. This is your first optional task, so feel free to do this one whenever you want.<//></><b>Fix the machine.</b>|Old Capsule Machine]
  1123. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Capsule.png
  1124. on click:if (ToolBox=1) yield CapMachineTask
  1125. on click:if (ToolBox=1) yield CapMachineTaskA
  1126. req:1 Classic2
  1127. //Pancake Mechanics
  1128. *TEMPLATE
  1129. tag:CookingMenu
  1130. hidden when 0
  1131. on click:if (this=0) yield 1 this
  1132. on click:if (this=1) lose this
  1133. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/Uncooked.png
  1134. on click:anim wobble
  1135. *StoveSlot1
  1136. on click:if (StoveTime1>=1) yield 1 UCPancake1
  1137. on click:if (StoveTime1>=15) yield 1 Pancake1
  1138. on click:if (StoveTime1>=15) lose 1 UCPancake1
  1139. on click:if (StoveTime1>=20 and ChallengeS=0) yield 1 OCPancake1
  1140. on click:if (StoveTime1>=20 and ChallengeS=0) lose 1 Pancake1
  1141. on click:if (StoveTime1>=17 and ChallengeS>=1) yield 1 OCPancake1
  1142. on click:if (StoveTime1>=17 and ChallengeS>=1) lose 1 Pancake1
  1143. on click:if (StoveTime1>=50) yield 1 BurntAchieve
  1144. desc:Cooking Time:<b>[StoveTime1]</b>
  1145. *StoveSlot2
  1146. on click:if (StoveTime2>=1) yield 1 UCPancake2
  1147. on click:if (StoveTime2>=15) yield 1 Pancake2
  1148. on click:if (StoveTime2>=15) lose 1 UCPancake2
  1149. on click:if (StoveTime2>=20 and ChallengeS=0) yield 1 OCPancake2
  1150. on click:if (StoveTime2>=20 and ChallengeS=0) lose 1 Pancake2
  1151. on click:if (StoveTime2>=17 and ChallengeS>=1) yield 1 OCPancake2
  1152. on click:if (StoveTime2>=17 and ChallengeS>=1) lose 1 Pancake2
  1153. on click:if (StoveTime2>=50) yield 1 BurntAchieve
  1154. desc:Cooking Time:<b>[StoveTime2]</b>
  1155. *StoveSlot3
  1156. on click:if (StoveTime3>=1) yield 1 UCPancake3
  1157. on click:if (StoveTime3>=15) yield 1 Pancake3
  1158. on click:if (StoveTime3>=15) lose 1 UCPancake3
  1159. on click:if (StoveTime3>=20 and ChallengeS=0) yield 1 OCPancake3
  1160. on click:if (StoveTime3>=20 and ChallengeS=0) lose 1 Pancake3
  1161. on click:if (StoveTime3>=17 and ChallengeS>=1) yield 1 OCPancake3
  1162. on click:if (StoveTime3>=17 and ChallengeS>=1) lose 1 Pancake3
  1163. on click:if (StoveTime3>=50) yield 1 BurntAchieve
  1164. desc:Cooking Time:<b>[StoveTime3]</b>
  1165. *StoveSlot4
  1166. on click:if (StoveTime4>=1) yield 1 UCPancake4
  1167. on click:if (StoveTime4>=15) yield 1 Pancake4
  1168. on click:if (StoveTime4>=15) lose 1 UCPancake4
  1169. on click:if (StoveTime4>=20 and ChallengeS=0) yield 1 OCPancake4
  1170. on click:if (StoveTime4>=20 and ChallengeS=0) lose 1 Pancake4
  1171. on click:if (StoveTime4>=17 and ChallengeS>=1) yield 1 OCPancake4
  1172. on click:if (StoveTime4>=17 and ChallengeS>=1) lose 1 Pancake4
  1173. on click:if (StoveTime4>=50) yield 1 BurntAchieve
  1174. desc:Cooking Time:<b>[StoveTime4]</b>
  1175. *StoveSlot5
  1176. on click:if (StoveTime5>=1) yield 1 UCPancake5
  1177. on click:if (StoveTime5>=15) yield 1 Pancake5
  1178. on click:if (StoveTime5>=15) lose 1 UCPancake5
  1179. on click:if (StoveTime5>=20 and ChallengeS=0) yield 1 OCPancake5
  1180. on click:if (StoveTime5>=20 and ChallengeS=0) lose 1 Pancake5
  1181. on click:if (StoveTime5>=17 and ChallengeS>=1) yield 1 OCPancake5
  1182. on click:if (StoveTime5>=17 and ChallengeS>=1) lose 1 Pancake5
  1183. on click:if (StoveTime5>=50) yield 1 BurntAchieve
  1184. desc:Cooking Time:<b>[StoveTime5]</b>
  1185. *StoveSlot6
  1186. on click:if (StoveTime6>=1) yield 1 UCPancake6
  1187. on click:if (StoveTime6>=15) yield 1 Pancake6
  1188. on click:if (StoveTime6>=15) lose 1 UCPancake6
  1189. on click:if (StoveTime6>=20 and ChallengeS=0) yield 1 OCPancake6
  1190. on click:if (StoveTime6>=20 and ChallengeS=0) lose 1 Pancake6
  1191. on click:if (StoveTime6>=17 and ChallengeS>=1) yield 1 OCPancake6
  1192. on click:if (StoveTime6>=17 and ChallengeS>=1) lose 1 Pancake6
  1193. on click:if (StoveTime6>=50) yield 1 BurntAchieve
  1194. desc:Cooking Time:<b>[StoveTime6]</b>
  1195. *StoveSlot7
  1196. on click:if (StoveTime7>=1) yield 1 UCPancake7
  1197. on click:if (StoveTime7>=15) yield 1 Pancake7
  1198. on click:if (StoveTime7>=15) lose 1 UCPancake7
  1199. on click:if (StoveTime7>=20 and ChallengeS=0) yield 1 OCPancake7
  1200. on click:if (StoveTime7>=20 and ChallengeS=0) lose 1 Pancake7
  1201. on click:if (StoveTime7>=17 and ChallengeS>=1) yield 1 OCPancake7
  1202. on click:if (StoveTime7>=17 and ChallengeS>=1) lose 1 Pancake7
  1203. on click:if (StoveTime7>=50) yield 1 BurntAchieve
  1204. desc:Cooking Time:<b>[StoveTime7]</b>
  1205. *StoveSlot8
  1206. on click:if (StoveTime8>=1) yield 1 UCPancake8
  1207. on click:if (StoveTime8>=15) yield 1 Pancake8
  1208. on click:if (StoveTime8>=15) lose 1 UCPancake8
  1209. on click:if (StoveTime8>=20 and ChallengeS=0) yield 1 OCPancake8
  1210. on click:if (StoveTime8>=20 and ChallengeS=0) lose 1 Pancake8
  1211. on click:if (StoveTime8>=17 and ChallengeS>=1) yield 1 OCPancake8
  1212. on click:if (StoveTime8>=17 and ChallengeS>=1) lose 1 Pancake8
  1213. on click:if (StoveTime8>=50) yield 1 BurntAchieve
  1214. desc:Cooking Time:<b>[StoveTime8]</b>
  1215. *StoveSlot9
  1216. on click:if (StoveTime9>=1) yield 1 UCPancake9
  1217. on click:if (StoveTime9>=15) yield 1 Pancake9
  1218. on click:if (StoveTime9>=15) lose 1 UCPancake9
  1219. on click:if (StoveTime9>=20 and ChallengeS=0) yield 1 OCPancake9
  1220. on click:if (StoveTime9>=20 and ChallengeS=0) lose 1 Pancake9
  1221. on click:if (StoveTime9>=17 and ChallengeS>=1) yield 1 OCPancake9
  1222. on click:if (StoveTime9>=17 and ChallengeS>=1) lose 1 Pancake9
  1223. on click:if (StoveTime9>=50) yield 1 BurntAchieve
  1224. desc:Cooking Time:<b>[StoveTime9]</b>
  1225. *StoveSlot10
  1226. on click:if (StoveTime10>=1) yield 1 UCPancake10
  1227. on click:if (StoveTime10>=15) yield 1 Pancake10
  1228. on click:if (StoveTime10>=15) lose 1 UCPancake10
  1229. on click:if (StoveTime10>=20 and ChallengeS=0) yield 1 OCPancake10
  1230. on click:if (StoveTime10>=20 and ChallengeS=0) lose 1 Pancake10
  1231. on click:if (StoveTime10>=17 and ChallengeS>=1) yield 1 OCPancake10
  1232. on click:if (StoveTime10>=17 and ChallengeS>=1) lose 1 Pancake10
  1233. on click:if (StoveTime10>=50) yield 1 BurntAchieve
  1234. desc:Cooking Time:<b>[StoveTime10]</b>
  1235. *StoveSlot11
  1236. on click:if (StoveTime11>=1) yield 1 UCPancake11
  1237. on click:if (StoveTime11>=15) yield 1 Pancake11
  1238. on click:if (StoveTime11>=15) lose 1 UCPancake11
  1239. on click:if (StoveTime11>=20 and ChallengeS=0) yield 1 OCPancake11
  1240. on click:if (StoveTime11>=20 and ChallengeS=0) lose 1 Pancake11
  1241. on click:if (StoveTime11>=17 and ChallengeS>=1) yield 1 OCPancake11
  1242. on click:if (StoveTime11>=17 and ChallengeS>=1) lose 1 Pancake11
  1243. on click:if (StoveTime11>=50) yield 1 BurntAchieve
  1244. desc:Cooking Time:<b>[StoveTime11]</b>
  1245. *StoveSlot12
  1246. on click:if (StoveTime12>=1) yield 1 UCPancake12
  1247. on click:if (StoveTime12>=15) yield 1 Pancake12
  1248. on click:if (StoveTime12>=15) lose 1 UCPancake12
  1249. on click:if (StoveTime12>=20 and ChallengeS=0) yield 1 OCPancake12
  1250. on click:if (StoveTime12>=20 and ChallengeS=0) lose 1 Pancake12
  1251. on click:if (StoveTime12>=17 and ChallengeS>=1) yield 1 OCPancake12
  1252. on click:if (StoveTime12>=17 and ChallengeS>=1) lose 1 Pancake12
  1253. on click:if (StoveTime12>=50) yield 1 BurntAchieve
  1254. desc:Cooking Time:<b>[StoveTime12]</b>
  1255.  
  1256. *TEMPLATE
  1257. tag:List
  1258. name:Cooked Pancake
  1259. no tooltip
  1260. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Pancake.png
  1261. hidden when 0
  1262. no text
  1263. on click:anim wobble
  1264. on click:
  1265. if (5>=Stack)
  1266. yield 1 Stack
  1267. else if (6=Stack)
  1268. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 3)</b></#>
  1269. end
  1270. end
  1271. *Pancake1
  1272. on click:
  1273. if (1=Stack)
  1274. yield 1 Stack1P1
  1275. lose Pancake1
  1276. else if (2=Stack)
  1277. yield 1 Stack2P1
  1278. lose Pancake1
  1279. else if (3=Stack)
  1280. yield 1 Stack3P1
  1281. lose Pancake1
  1282. else if (4=Stack)
  1283. yield 1 Stack4P1
  1284. lose Pancake1
  1285. else if (5=Stack)
  1286. yield 1 Stack5P1
  1287. lose Pancake1
  1288. else if (6=Stack)
  1289. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 15)</b></#>
  1290. end
  1291. end
  1292. *Pancake2
  1293. on click:
  1294. if (Stack=1)
  1295. yield 1 Stack1P2
  1296. lose Pancake2
  1297. else if (Stack=2)
  1298. yield 1 Stack2P2
  1299. lose Pancake2
  1300. else if (Stack=3)
  1301. yield 1 Stack3P2
  1302. lose Pancake2
  1303. else if (Stack=4)
  1304. yield 1 Stack4P2
  1305. lose Pancake2
  1306. else if (Stack=5)
  1307. yield 1 Stack5P2
  1308. lose Pancake2
  1309. else if (Stack=6)
  1310. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 4)</b></#>
  1311. end
  1312. end
  1313. *Pancake3
  1314. on click:
  1315. if (Stack=1)
  1316. yield 1 Stack1P3
  1317. lose Pancake3
  1318. else if (Stack=2)
  1319. yield 1 Stack2P3
  1320. lose Pancake3
  1321. else if (Stack=3)
  1322. yield 1 Stack3P3
  1323. lose Pancake3
  1324. else if (Stack=4)
  1325. yield 1 Stack4P3
  1326. lose Pancake3
  1327. else if (Stack=5)
  1328. yield 1 Stack5P3
  1329. lose Pancake3
  1330. else if (Stack=6)
  1331. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 5)</b></#>
  1332. end
  1333. end
  1334. *Pancake4
  1335. on click:
  1336. if (Stack=1)
  1337. yield 1 Stack1P4
  1338. lose Pancake4
  1339. else if (Stack=2)
  1340. yield 1 Stack2P4
  1341. lose Pancake4
  1342. else if (Stack=3)
  1343. yield 1 Stack3P4
  1344. lose Pancake4
  1345. else if (Stack=4)
  1346. yield 1 Stack4P4
  1347. lose Pancake4
  1348. else if (Stack=5)
  1349. yield 1 Stack5P4
  1350. lose Pancake4
  1351. else if (Stack=6)
  1352. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 6)</b></#>
  1353. end
  1354. end
  1355. *Pancake5
  1356. on click:
  1357. if (Stack=1)
  1358. yield 1 Stack1P5
  1359. lose Pancake5
  1360. else if (Stack=2)
  1361. yield 1 Stack2P5
  1362. lose Pancake5
  1363. else if (Stack=3)
  1364. yield 1 Stack3P5
  1365. lose Pancake5
  1366. else if (Stack=4)
  1367. yield 1 Stack4P5
  1368. lose Pancake5
  1369. else if (Stack=5)
  1370. yield 1 Stack5P5
  1371. lose Pancake5
  1372. else if (Stack=6)
  1373. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 7)</b></#>
  1374. end
  1375. end
  1376. *Pancake6
  1377. on click:
  1378. if (Stack=1)
  1379. yield 1 Stack1P6
  1380. lose Pancake6
  1381. else if (Stack=2)
  1382. yield 1 Stack2P6
  1383. lose Pancake6
  1384. else if (Stack=3)
  1385. yield 1 Stack3P6
  1386. lose Pancake6
  1387. else if (Stack=4)
  1388. yield 1 Stack4P6
  1389. lose Pancake6
  1390. else if (Stack=5)
  1391. yield 1 Stack5P6
  1392. lose Pancake6
  1393. else if (Stack=6)
  1394. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 8)</b></#>
  1395. end
  1396. end
  1397. *Pancake7
  1398. on click:
  1399. if (Stack=1)
  1400. yield 1 Stack1P7
  1401. lose Pancake7
  1402. else if (Stack=2)
  1403. yield 1 Stack2P7
  1404. lose Pancake7
  1405. else if (Stack=3)
  1406. yield 1 Stack3P7
  1407. lose Pancake7
  1408. else if (Stack=4)
  1409. yield 1 Stack4P7
  1410. lose Pancake7
  1411. else if (Stack=5)
  1412. yield 1 Stack5P7
  1413. lose Pancake7
  1414. else if (Stack=6)
  1415. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 9)</b></#>
  1416. end
  1417. end
  1418. *Pancake8
  1419. on click:
  1420. if (Stack=1)
  1421. yield 1 Stack1P8
  1422. lose Pancake8
  1423. else if (Stack=2)
  1424. yield 1 Stack2P8
  1425. lose Pancake8
  1426. else if (Stack=3)
  1427. yield 1 Stack3P8
  1428. lose Pancake8
  1429. else if (Stack=4)
  1430. yield 1 Stack4P8
  1431. lose Pancake8
  1432. else if (Stack=5)
  1433. yield 1 Stack5P8
  1434. lose Pancake8
  1435. else if (Stack=6)
  1436. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 10)</b></#>
  1437. end
  1438. end
  1439. *Pancake9
  1440. on click:
  1441. if (Stack=1)
  1442. yield 1 Stack1P9
  1443. lose Pancake9
  1444. else if (Stack=2)
  1445. yield 1 Stack2P9
  1446. lose Pancake9
  1447. else if (Stack=3)
  1448. yield 1 Stack3P9
  1449. lose Pancake9
  1450. else if (Stack=4)
  1451. yield 1 Stack4P9
  1452. lose Pancake9
  1453. else if (Stack=5)
  1454. yield 1 Stack5P9
  1455. lose Pancake9
  1456. else if (Stack=6)
  1457. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some.(Error 11)</b></#>
  1458. end
  1459. end
  1460. *Pancake10
  1461. on click:
  1462. if (Stack=1)
  1463. yield 1 Stack1P10
  1464. lose Pancake10
  1465. else if (Stack=2)
  1466. yield 1 Stack2P10
  1467. lose Pancake10
  1468. else if (Stack=3)
  1469. yield 1 Stack3P10
  1470. lose Pancake10
  1471. else if (Stack=4)
  1472. yield 1 Stack4P10
  1473. lose Pancake10
  1474. else if (Stack=5)
  1475. yield 1 Stack5P10
  1476. lose Pancake10
  1477. else if (Stack=6)
  1478. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 12)</b></#>
  1479. end
  1480. end
  1481. *Pancake11
  1482. on click:
  1483. if (Stack=1)
  1484. yield 1 Stack1P11
  1485. lose Pancake11
  1486. else if (Stack=2)
  1487. yield 1 Stack2P11
  1488. lose Pancake11
  1489. else if (Stack=3)
  1490. yield 1 Stack3P11
  1491. lose Pancake11
  1492. else if (Stack=4)
  1493. yield 1 Stack4P11
  1494. lose Pancake11
  1495. else if (Stack=5)
  1496. yield 1 Stack5P11
  1497. lose Pancake11
  1498. else if (Stack=6)
  1499. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 13)</b></#>
  1500. end
  1501. end
  1502. *Pancake12
  1503. on click:
  1504. if (Stack=1)
  1505. yield 1 Stack1P12
  1506. lose Pancake12
  1507. else if (Stack=2)
  1508. yield 1 Stack2P12
  1509. lose Pancake12
  1510. else if (Stack=3)
  1511. yield 1 Stack3P12
  1512. lose Pancake12
  1513. else if (Stack=4)
  1514. yield 1 Stack4P12
  1515. lose Pancake12
  1516. else if (Stack=5)
  1517. yield 1 Stack5P12
  1518. lose Pancake12
  1519. else if (Stack=6)
  1520. toast <b><#ff0000>Pancake Limit Reached. Sell Pancakes to continue adding some. (Error 14)</b></#>
  1521. end
  1522. end
  1523. *TEMPLATE
  1524. name:Under Cooked Pancake
  1525. desc:You just want to fail this game.</><b>Cannot Be Sold and can only be removed by using the Dedicated Trash Button found in the Table Menu</b>
  1526. tags:List UCPancakes
  1527. hidden when 0
  1528. no text
  1529. on click:anim wobble
  1530. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/UnderCooked.png
  1531. *UCPancake1
  1532. *UCPancake2
  1533. *UCPancake3
  1534. *UCPancake4
  1535. *UCPancake5
  1536. *UCPancake6
  1537. *UCPancake7
  1538. *UCPancake8
  1539. *UCPancake9
  1540. *UCPancake10
  1541. *UCPancake11
  1542. *UCPancake12
  1543. *TEMPLATE
  1544. name:Over Cooked Pancake
  1545. desc:You just want to fail this game.</><b>Cannot Be Sold and can only be removed by using the Dedicated Trash Button found in the Table Menu</b>
  1546. tags:List OCPancakes
  1547. hidden when 0
  1548. no text
  1549. on click:anim wobble
  1550. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Burnt.png
  1551. *OCPancake1
  1552. *OCPancake2
  1553. *OCPancake3
  1554. *OCPancake4
  1555. *OCPancake5
  1556. *OCPancake6
  1557. *OCPancake7
  1558. *OCPancake8
  1559. *OCPancake9
  1560. *OCPancake10
  1561. *OCPancake11
  1562. *OCPancake12
  1563.  
  1564. //Stack 5 Unused due to engine behavior?
  1565. *TEMPLATE
  1566. tag:TableMenu
  1567. no tooltip
  1568. hidden when 0
  1569. no text
  1570. on click:anim wobble
  1571. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Pancake.png
  1572. *Stack5B
  1573. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Butter.png
  1574. *Stack5Bl
  1575. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1576. on earn:yield 1 QuestCheckBlue3
  1577. on earn:if (Stack1Bl=0 and Stack2Bl=0 and Stack3Bl=0 and Stack4Bl=0) yield 2 Cash
  1578. on earn:if (Stack1Bl=0 and Stack2Bl=0 and Stack3Bl=0 and Stack4Bl=0 and chance(50%)) yield 1 BlueberryCoin
  1579. *Stack5BS
  1580. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Blue.png
  1581. on earn:if (Stack1BS=0 and Stack2BS=0 and Stack3BS=0 and Stack4BS=0) yield 2 Cash
  1582. on earn:if (Stack1BS=0 and Stack2BS=0 and Stack3BS=0 and Stack4BS=0 and chance(50%)) yield 1 BlueberryCoin
  1583. *Stack5M
  1584. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Maple.png
  1585. on earn:if (BlueBerry3>0 and Stack1M=0 and Stack2M=0 and Stack3M=0 and Stack4M=0 and chance(50%)) yield 1 MapleCoin
  1586. *Stack5P12
  1587. *Stack5P11
  1588. *Stack5P10
  1589. *Stack5P9
  1590. *Stack5P8
  1591. *Stack5P7
  1592. *Stack5P6
  1593. *Stack5P5
  1594. *Stack5P4
  1595. *Stack5P3
  1596. *Stack5P2
  1597. *Stack5P1
  1598. //Stack 4
  1599. *Stack4B
  1600. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Butter.png
  1601. *Stack4Bl
  1602. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1603. on earn:yield 1 QuestCheckBlue3
  1604. on earn:if (Stack1Bl=0 and Stack2Bl=0 and Stack3Bl=0) yield 2 Cash
  1605. on earn:if (Stack1Bl=0 and Stack2Bl=0 and Stack3Bl=0 and chance(40%)) yield 1 BlueberryCoin
  1606. *Stack4BS
  1607. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Blue.png
  1608. on earn:if (Stack1BS=0 and Stack2BS=0 and Stack3BS=0) yield 2 Cash
  1609. on earn:if (Stack1BS=0 and Stack2BS=0 and Stack3BS=0 and chance(40%)) yield 1 BlueberryCoin
  1610. *Stack4M
  1611. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Maple.png
  1612. on earn:if (BlueBerry3>0 and Stack1M=0 and Stack2M=0 and Stack3M=0 and chance(40%)) yield 1 MapleCoin
  1613. *Stack4P12
  1614. *Stack4P11
  1615. *Stack4P10
  1616. *Stack4P9
  1617. *Stack4P8
  1618. *Stack4P7
  1619. *Stack4P6
  1620. *Stack4P5
  1621. *Stack4P4
  1622. *Stack4P3
  1623. *Stack4P2
  1624. *Stack4P1
  1625. //Stack 3
  1626. *Stack3B
  1627. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Butter.png
  1628. *Stack3Bl
  1629. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1630. on earn:yield 1 QuestCheckBlue3
  1631. on earn:if (Stack1Bl=0 and Stack2Bl=0) yield 2 Cash
  1632. on earn:if (Stack1Bl=0 and Stack2Bl=0 and chance(40%)) yield 1 BlueberryCoin
  1633. *Stack3BS
  1634. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Blue.png
  1635. on earn:if (Stack1BS=0 and Stack2BS=0) yield 2 Cash
  1636. on earn:if (Stack1BS=0 and Stack2BS=0 and chance(40%)) yield 1 BlueberryCoin
  1637. *Stack3M
  1638. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Maple.png
  1639. on earn:if (BlueBerry3>0 and Stack1M=0 and Stack2M=0 and chance(40%)) yield 1 MapleCoin
  1640. *Stack3P12
  1641. *Stack3P11
  1642. *Stack3P10
  1643. *Stack3P9
  1644. *Stack3P8
  1645. *Stack3P7
  1646. *Stack3P6
  1647. *Stack3P5
  1648. *Stack3P4
  1649. *Stack3P3
  1650. *Stack3P2
  1651. *Stack3P1
  1652. //Stack 2
  1653. *Stack2B
  1654. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Butter.png
  1655. *Stack2Bl
  1656. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1657. on earn:yield 1 QuestCheckBlue3
  1658. on earn:if (Stack1Bl=0) yield 2 Cash
  1659. on earn:if (Stack1Bl=0 and chance(35%)) yield 1 BlueberryCoin
  1660. *Stack2BS
  1661. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Blue.png
  1662. on earn:if (Stack1BS=0) yield 2 Cash
  1663. on earn:if (Stack1BS=0 and chance(35%)) yield 1 BlueberryCoin
  1664. *Stack2M
  1665. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Maple.png
  1666. on earn:if (BlueBerry3>0 and Stack1M=0 and chance(35%)) yield 1 MapleCoin
  1667. *Stack2P12
  1668. *Stack2P11
  1669. *Stack2P10
  1670. *Stack2P9
  1671. *Stack2P8
  1672. *Stack2P7
  1673. *Stack2P6
  1674. *Stack2P5
  1675. *Stack2P4
  1676. *Stack2P3
  1677. *Stack2P2
  1678. *Stack2P1
  1679. //Stack 1
  1680. *Stack1B
  1681. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Butter.png
  1682. *Stack1Bl
  1683. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1684. on earn:yield 1 QuestCheckBlue3
  1685. on earn:yield 2 Cash
  1686. on earn:if (chance(35%)) yield 1 BlueberryCoin
  1687. *Stack1BS
  1688. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Blue.png
  1689. on earn:yield 2 Cash
  1690. on earn:if (chance(35%)) yield 1 BlueberryCoin
  1691. *Stack1M
  1692. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Maple.png
  1693. on earn:if (BlueBerry3>0 and chance(35%)) yield 1 MapleCoin
  1694. *Stack1P12
  1695. *Stack1P11
  1696. *Stack1P10
  1697. *Stack1P9
  1698. *Stack1P8
  1699. *Stack1P7
  1700. *Stack1P6
  1701. *Stack1P5
  1702. *Stack1P4
  1703. *Stack1P3
  1704. *Stack1P2
  1705. *Stack1P1
  1706.  
  1707. *TEMPLATE
  1708. tag:toppings
  1709. on click:anim wobble
  1710. *Butter
  1711. name:Butter
  1712. desc:I can believe that this is definitely 100% butter.
  1713. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Butter.png
  1714. on click:
  1715. if (Stack=1 and Stack1B=0)
  1716. yield 1 Stack1B
  1717. else if (Stack=2 and Stack2B=0)
  1718. yield 1 Stack2B
  1719. else if (Stack=3 and Stack3B=0)
  1720. yield 1 Stack3B
  1721. else if (Stack=4 and Stack4B=0)
  1722. yield 1 Stack4B
  1723. else if (Stack=5 and Stack5B=0)
  1724. yield 1 Stack5B
  1725. else
  1726. toast <<b><#ff0000>You can't do that.(Error 17)</b></#>
  1727. end
  1728. end
  1729. *Maple
  1730. name:Maple Syrup
  1731. desc:The most basic syrup of all.
  1732. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Maple.png
  1733. on click:
  1734. if (Stack=1 and Stack1M=0)
  1735. yield 1 Stack1M
  1736. else if (Stack=2 and Stack2M=0)
  1737. yield 1 Stack2M
  1738. else if (Stack=3 and Stack3M=0)
  1739. yield 1 Stack3M
  1740. else if (Stack=4 and Stack4M=0)
  1741. yield 1 Stack4M
  1742. else if (Stack=5 and Stack5M=0)
  1743. yield 1 Stack5M
  1744. else
  1745. toast <<b><#ff0000>It's time to stop.(Error 18)</b></#>
  1746. end
  1747. end
  1748. *BlueberriesT
  1749. name:Blueberries
  1750. desc:Why is it blue?
  1751. req:12 Blueberries
  1752. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/BlueBerries.png
  1753. on click:
  1754. if (Stack=1 and Stack1Bl=0 and BlueBerries>=12)
  1755. yield 1 Stack1Bl
  1756. lose (random(9,12)) BlueBerries
  1757. else if (Stack=2 and Stack2Bl=0 and BlueBerries>=12)
  1758. yield 1 Stack2Bl
  1759. lose (random(9,12)) BlueBerries
  1760. else if (Stack=3 and Stack3Bl=0 and BlueBerries>=12)
  1761. yield 1 Stack3Bl
  1762. lose (random(9,12)) BlueBerries
  1763. else if (Stack=4 and Stack4Bl=0 and BlueBerries>=12)
  1764. yield 1 Stack4Bl
  1765. lose (random(9,12)) BlueBerries
  1766. else if (Stack=5 and Stack5Bl=0 and BlueBerries>=12)
  1767. yield 1 Stack5Bl
  1768. lose (random(9,12)) BlueBerries
  1769. else
  1770. toast <b><#ff0000>I can't think of anything to put here. Hope you're fine with that.(Error 19)</b></#>
  1771. end
  1772. end
  1773. *BlueberriesSyrupT
  1774. name:Blueberry Sryup
  1775. desc:I could make a pun, but I don't want to.
  1776. req:12 Blueberries, 1 BlueberrySyrupStore
  1777. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Blue.png
  1778. on click:
  1779. if (Stack=1 and Stack1BS=0 and BlueBerries>=12)
  1780. yield 1 Stack1BS
  1781. lose (random(9,12)) BlueBerries
  1782. else if (Stack=2 and Stack2BS=0 and BlueBerries>=12)
  1783. yield 1 Stack2BS
  1784. lose (random(9,12)) BlueBerries
  1785. else if (Stack=3 and Stack3BS=0 and BlueBerries>=12)
  1786. yield 1 Stack3BS
  1787. lose (random(9,12)) BlueBerries
  1788. else if (Stack=4 and Stack4BS=0 and BlueBerries>=12)
  1789. yield 1 Stack4BS
  1790. lose (random(9,12)) BlueBerries
  1791. else if (Stack=5 and Stack5BS=0 and BlueBerries>=12)
  1792. yield 1 Stack5BS
  1793. lose (random(9,12)) BlueBerries
  1794. else
  1795. toast <b><#ff0000>You don't <b>need</b> that much syrup.(Error 20)</b></#>
  1796. end
  1797. end
  1798. //Drinks Menu
  1799. *TEMPLATE
  1800. tag:Drinks
  1801. no buy
  1802. no tooltip
  1803. no text
  1804. on tick:show this
  1805. req:45 DrinksCoolDown
  1806. *OrangeJuice
  1807. name:Orange Juice
  1808. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Orange.png
  1809. req:1 OrangeJuiceR
  1810. on click:yield 5 OJMeter
  1811. on click:show tag:OrangeJuiceM
  1812. on click:hide tag:Drinks
  1813. //Drink Results
  1814. *TEMPLATE
  1815. hidden when 0
  1816. tag:DrinkResults
  1817. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Items/Orange.png
  1818. no buy
  1819. *OJBad
  1820. name:Bad Orange Juice
  1821. *OJOk|OJOK
  1822. name:Okay Orange Juice
  1823. *OJGood
  1824. name:Good Orange Juice
  1825. *OJPerfect
  1826. name:Perfect Orange Juice
  1827. *TEMPLATE
  1828. on click:anim wobble
  1829. no buy
  1830. *SellDrinks
  1831. name:Sell Drinks
  1832. on click:if (OJBad=1) yield 2 Cash
  1833. on click:if (OJOK=1) yield 3 Cash
  1834. on click:if (OJGood=1) yield 4 Cash
  1835. on click:if (OJPerfect=1) yield 5 Cash
  1836. on click:if (OJBad=1) lose 1 OJBad
  1837. on click:if (OJOK=1) lose 1 OJOK
  1838. on click:if (OJGood=1) lose 1 OJGood
  1839. on click:if (OJPerfect=1) lose 1 OJPerfect
  1840. on click:show tag:Drinks
  1841. on click:lose 50 DrinksCoolDown
  1842. on click:lose SellDrinks
  1843. hidden when 0
  1844. tag:DrinkResults
  1845. //Misc
  1846. *DedicatedTrash
  1847. name:Dedicated Trash Button
  1848. icon:https://pipe.miroware.io/5d2226f1989d575aefc9adfc/Pancake%20Maker/PM%20Icons/Delete.png
  1849. on click:lose tag:TableMenu
  1850. on click:lose tag:UCPancakes
  1851. on click:lose tag:OCPancakes
  1852. on click:lose 5 Stack
  1853. on click:lose OverPancakes
  1854. no text
  1855. tag:TableMenu
  1856. *Switch
  1857. name:Pancakes
  1858. desc:This will be used soon, but for now this section is filler.
  1859. no buy
  1860. tag:switch
  1861. //Debug
  1862. *TEMPLATE
  1863. tag:Debug
  1864. no buy
  1865. on click:anim wobble
  1866. *SettingsHeaderA
  1867. text:--------------------Game Options--------------------
  1868. no tooltip
  1869. *DescriptionOnBox
  1870. text:Show Description On Box (Set to <b>[?(have DescriptionOnBox)|True|False]</b>)
  1871. desc:This shows each items' description outside of the tooltip. Recommended when using a touch device.
  1872. on click:yield 1 GameStatProgress
  1873. *DescriptionOnBoxT
  1874. text:True
  1875. on click:if (DescriptionOnBox=0) yield 1 DescriptionOnBox
  1876. no tooltip
  1877. *DescriptionOnBoxF
  1878. text:False
  1879. on click:if (DescriptionOnBox=1) lose 1 DescriptionOnBox
  1880. no tooltip
  1881. *PopUp
  1882. text:Show Bottom Screen Messages (Set to <b>[?(have PopUp)|True|False]</b>)
  1883. desc:This shows bottom screen messages. Turning this off will disable (almost) all of them.
  1884. start with
  1885. *PopUpT
  1886. text:True
  1887. on click:if (PopUp=0) yield 1 PopUp
  1888. no tooltip
  1889. on tick:lose 1 PopUpT
  1890. *PopUpF
  1891. text:False
  1892. on click:if (PopUp=1) lose 1 PopUp
  1893. no tooltip
  1894. *ChallengeS
  1895. text:(Beta) Challenge Mode (Not for Beginners) (Set to <b>[?(have ChallengeS)|True|False]</b>)
  1896. desc:This will make the game more diffcult if you want to. This can be only be toggled On/Off as long as you don't own "The Beginning" achievement. What this does is...<.>Decrease yield of Cash by 1.<.>Double the chances of Unwanted Events (Coin Shortage)<.>Decreases the Time a pancake can be removed from the stove to be counted as a cooked pancake. In other words, pancakes burn more easily.<.>Box Shinies can yield nothing.<.>You get less blueberries per transaction. (Will expand as more of similar items release)<.>A certain coin converter gives less (I dont want to spoiler the converter in a descripion shown all game).<.>(Coming Soon) Dispite all of this, you can get some pretty cool completion achievements.<.>(Coming Soon) Once you complete the fist section of the game, you can purge your save to start over in or out of challenge mode without losing your achievements, levels, cash, coins, event items (Both Rotational Events and Game Wide Events), and notes. This is so you can 100% the game if you already started your game.
  1897. *ChallengeT
  1898. text:True
  1899. on click:if (ChallengeS=0 and Completed=0) yield 1 ChallengeS
  1900. on click:if (ChallengeS=0 and Completed=1) toast Cannot change once you start the game.
  1901. no tooltip
  1902. on tick:lose 1 ChallengeT
  1903. *ChallengeF
  1904. text:False
  1905. on click:if (ChallengeS=1 and Completed=0) lose 1 ChallengeS
  1906. on click:if (ChallengeS=1 and Completed=1) toast Cannot change once you start the game.
  1907. no tooltip
  1908. //Testing Purposes
  1909. *HiddenStats
  1910. name:Game Stats
  1911. desc:Shows the game's hidden values. Also includes values normally hidden inside of tooltips. Mainly for debugging proposes.
  1912. req:10 GameStatProgress
  1913. text::Game Stats<//></>OverPancakes Value:[OverPancakes]</>Stack Value:[Stack]</>Stove Time (1):[StoveTime1]</>Stove Time (2):[StoveTime2]</>Stove Time (3):[StoveTime3]</>Stove Time (4):[StoveTime4]</>Stove Time (5):[StoveTime5]</>Stove Time (6):[StoveTime6]</>Stove Time (7):[StoveTime7]</>Stove Time (8):[StoveTime8]</>Stove Time (9):[StoveTime9]</>Stove Time (10):[StoveTime10]</>Stove Time (11):[StoveTime11]</>Stove Time (12):[StoveTime12]<//></>OJMeter Value:[OJMeter]</>Drinks Cool Down Time:[DrinksCoolDown]<//></>Event Rotation:[EventTime]</>Good Event:[EventTime1]</>Bad Event:[EventTime2]<//></>TickClick Value:[TickClick]</>Game Stat Clicks:[GameStatProgress]</>Shiny Clicks:[BoxShiny:clicks]</>Play Time:[PlayTime]<//></>Challenge Mode:[ChallengeS]
  1914. *ClearLog
  1915. name:Clear Log
  1916. on click:clear log
  1917. on click:log Log Cleared
  1918. *CashTest
  1919. name:Cash Test
  1920. on click:yield 100 Cash
  1921. on click:log Cash Test used
  1922. *TimeTest
  1923. name:Time Test
  1924. on click:yield 2629746 PlayTime
  1925. on click:log Time Test used
  1926. *QuarterTest
  1927. name:Quarter Test
  1928. on click:yield 100 Quarters
  1929. on click:log Quarter Test used
  1930. *EventTest
  1931. name:Event Test
  1932. on click:lose 1800 EventTime1
  1933. on click:lose 1800 EventTime2
  1934. on click:lose 1700 EventTime
  1935. on click:log Event Test used
Advertisement
Add Comment
Please, Sign In to add comment