Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Let's make a game!
- name:Life Tycoon
- by:Omtegu#0234
- desc:A game about managing your health, hunger, thirst, happiness, and gaining skills to get money.
- Settings
- building cost increase:110%
- background-color:blue
- Resources
- *Age
- Name:Age
- desc:Your age as a number, try to live a happy life!
- on earn:if (Age ==80) toast You have died!
- on earn:if (Age ==80) Age=0
- show earned
- *Money
- name:Money
- desc:Your money
- show earned
- *Health
- name:Health
- desc:Your Health. 100 is death
- show earned
- *hunger
- name:Hunger
- desc:Your hunger. Keep this below 100 or you'll die!
- show earned
- *Thirst
- name:Thirst
- desc:Your Thirst. Keep this below 100 or you'll die!
- show earned
- *Happiness
- name:Happiness
- desc:Your Happiness. If this gets to 0, you will no longer have the will to live. You will die...
- on tick:if (Happiness == 0) toast You have died!
- on tick:if (Happiness == 0) Age=0
- start with:10
- show earned
- *up
- name:Up
- desc:Tracks forward
- always hidden
- can be negative
- on earn:
- if (up == 1) toast "You can not move that way."
- if (up == 1) lose 1 up
- if (up == -1) toast "You can not move that way."
- if (up == -1) yield 1 up
- end
- Buttons
- *foward
- name:Move Foward
- desc:Move foward on the map
- on click:yield 1 up
- *backward
- name:Move Backward
- desc:Move Backward on the map
- on click:lose 1 up
Add Comment
Please, Sign In to add comment