Advertisement
ReinMakesGames2

(in theory) Number Demo

Oct 21st, 2023 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. Let's make a game!
  2. // This is ALL for phone maker 3. yes.
  3. Resources
  4. *minprice
  5. hidden
  6. //on tick:minprice=((7segmentdisplay2)x25)+((1mhz2)x40)+((1kb2)x30)+((numpad2)x50)+((walkietalkie2)x60)
  7. on tick:minprice=100
  8. *price
  9. on load:price=minprice
  10. hidden
  11. tag:pricemaking
  12. name:Phone Price
  13. text:The price is $[price].
  14. Upgrades
  15. *minus1
  16. tag:pricemaking
  17. hidden
  18. name:-1
  19. on click:
  20. if (((price)-1)>(minprice))
  21. lose 1 price
  22. else
  23. toast Price is lower than price of components.
  24. *plus1
  25. tag:pricemaking
  26. hidden
  27. *minus2
  28. tag:pricemaking
  29. hidden
  30. *plus2
  31. tag:pricemaking
  32. hidden
  33. *minus10
  34. tag:pricemaking
  35. hidden
  36. *plus10
  37. tag:pricemaking
  38. hidden
  39. *minus25
  40. tag:pricemaking
  41. hidden
  42. *plus25
  43. tag:pricemaking
  44. hidden
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement