Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- PROGRAM CONFIGURATION:
- tickSpeed = 0.1 -- How fast the game goes. Lower the faster. 0.1 is the recommended speed.
- MPtickSpeed = 0.1 -- How fast the game goes in Multiplayer. This data will be sent to your opponent so you two will be at the same speed. 0.1 is the recommended speed.
- -- END OF CONFIGURATION
- version = "a1.2.2"
- function titleScreen()
- term.clear()
- term.setCursorPos(1, 1)
- print("")
- print(" $$$ Moneybags $$$ ")
- print(" Alpha 1.2.2 ")
- print("")
- print("")
- menuPos = 1
- while true do
- term.setCursorPos(1, 6)
- if menuPos == 1 then
- print(" > Single Player < ")
- else
- print(" Single Player ")
- end
- print("")
- if menuPos == 2 then
- print(" > Multiplayer < ")
- else
- print(" Multiplayer ")
- end
- print("")
- if menuPos == 3 then
- print(" > Quit Game < ")
- else
- print(" Quit Game ")
- end
- event, key = os.pullEvent("key")
- if (key == 17 or key == 200) and (menuPos >= 2) then
- menuPos = menuPos - 1
- elseif (key == 31 or key == 208) and (menuPos <= 2) then
- menuPos = menuPos + 1
- elseif key == 28 and menuPos == 1 then
- parallel.waitForAny(singlePlayer, singlePlayerKeyListener)
- term.setCursorPos(1, 5)
- print(" ----------------------------- ")
- print(" | You Lose! | ")
- print(" ----------------------------- ")
- print(" | $$ Game Data $$ | ")
- print(" |---------------------------| ")
- print(" | Score: "..score)
- term.setCursorPos(39, 10)
- print("|")
- print(" | Ticks: "..tickCount)
- term.setCursorPos(39, 11)
- print("|")
- print(" ----------------------------- ")
- sleep(1)
- print(" | Press any key to continue | ")
- print(" | to the Main Menu. | ")
- print(" ----------------------------- ")
- os.pullEvent("key")
- term.clear()
- term.setCursorPos(1, 1)
- print("")
- print(" $$$ Moneybags $$$ ")
- print(" Alpha 1.2.2 ")
- print("")
- print("")
- elseif key == 28 and menuPos == 2 then
- parallel.waitForAny(multiPlayer)
- elseif key == 28 and menuPos == 3 then
- term.clear()
- term.setCursorPos(1, 1)
- break
- end
- term.setCursorPos(1, 6)
- term.clearLine()
- term.clearLine()
- term.clearLine()
- end
- end
- function singlePlayer()
- -- Variable Definitions
- money = 300
- playerPos = 8
- score = 0
- lives = 3
- lose = false
- moneybagTimer = 0
- moneybagOne =
- {
- onScreen = false,
- xPos = 0
- }
- moneybagTwo =
- {
- onScreen = false,
- xPos = 0
- }
- moneybagThree =
- {
- onScreen = false,
- xPos = 0
- }
- moneybagFour =
- {
- onScreen = false,
- xPos = 0
- }
- moneybagFive =
- {
- onScreen = false,
- xPos = 0
- }
- moneybagSix =
- {
- onScreen = false,
- xPos = 0
- }
- moneybagSeven =
- {
- onScreen = false,
- xPos = 0
- }
- moneybagEight =
- {
- onScreen = false,
- xPos = 0
- }
- playerMove = false
- tickCount = 0
- -- End of Variable Definitions
- -- Tick Loop
- repeat
- if playerMove == true then
- if currentKey == "up" and playerPos > 1 then
- playerPos = playerPos - 1
- currentKey = false
- elseif currentKey == "down" and playerPos < 17 then
- playerPos = playerPos + 1
- currentKey = false
- end
- playerMove = false
- else
- playerMove = true
- end
- if moneybagTimer == 6 then
- moneybagTimer = 0
- if moneybagOne.onScreen == false then
- moneybagOne.onScreen = true
- moneybagOne.yPos = math.random(1, 17)
- elseif moneybagTwo.onScreen == false then
- moneybagTwo.onScreen = true
- moneybagTwo.yPos = math.random(1, 17)
- elseif moneybagThree.onScreen == false then
- moneybagThree.onScreen = true
- moneybagThree.yPos = math.random(1, 17)
- elseif moneybagFour.onScreen == false then
- moneybagFour.onScreen = true
- moneybagFour.yPos = math.random(1, 17)
- elseif moneybagFive.onScreen == false then
- moneybagFive.onScreen = true
- moneybagFive.yPos = math.random(1, 17)
- elseif moneybagSix.onScreen == false then
- moneybagSix.onScreen = true
- moneybagSix.yPos = math.random(1, 17)
- elseif moneybagSeven.onScreen == false then
- moneybagSeven.onScreen = true
- moneybagSeven.yPos = math.random(1, 17)
- elseif moneybagEight.onScreen == false then
- moneybagEight.onScreen = true
- moneybagEight.yPos = math.random(1, 17)
- end
- else
- moneybagTimer = moneybagTimer + 1
- end
- if moneybagOne.onScreen == true then
- if moneybagOne.xPos == 48 then
- moneybagOne.onScreen = false
- moneybagOne.xPos = 0
- score = score + 1
- else
- moneybagOne.xPos = moneybagOne.xPos + 1
- end
- end
- if moneybagTwo.onScreen == true then
- if moneybagTwo.xPos == 48 then
- moneybagTwo.onScreen = false
- moneybagTwo.xPos = 0
- score = score + 1
- else
- moneybagTwo.xPos = moneybagTwo.xPos + 1
- end
- end
- if moneybagThree.onScreen == true then
- if moneybagThree.xPos == 48 then
- moneybagThree.onScreen = false
- moneybagThree.xPos = 0
- score = score + 1
- else
- moneybagThree.xPos = moneybagThree.xPos + 1
- end
- end
- if moneybagFour.onScreen == true then
- if moneybagFour.xPos == 48 then
- moneybagFour.onScreen = false
- moneybagFour.xPos = 0
- score = score + 1
- else
- moneybagFour.xPos = moneybagFour.xPos + 1
- end
- end
- if moneybagFive.onScreen == true then
- if moneybagFive.xPos == 48 then
- moneybagFive.onScreen = false
- moneybagFive.xPos = 0
- score = score + 1
- else
- moneybagFive.xPos = moneybagFive.xPos + 1
- end
- end
- if moneybagSix.onScreen == true then
- if moneybagSix.xPos == 48 then
- moneybagSix.onScreen = false
- moneybagSix.xPos = 0
- score = score + 1
- else
- moneybagSix.xPos = moneybagSix.xPos + 1
- end
- end
- if moneybagSeven.onScreen == true then
- if moneybagSeven.xPos == 48 then
- moneybagSeven.onScreen = false
- moneybagSeven.xPos = 0
- score = score + 1
- else
- moneybagSeven.xPos = moneybagSeven.xPos + 1
- end
- end
- if moneybagEight.onScreen == true then
- if moneybagEight.xPos == 48 then
- moneybagEight.onScreen = false
- moneybagEight.xPos = 0
- score = score + 1
- else
- moneybagEight.xPos = moneybagEight.xPos + 1
- end
- end
- if (((moneybagOne.yPos == playerPos and moneybagOne.xPos == 47) or (moneybagTwo.yPos == playerPos and moneybagTwo.xPos == 47)) or ((moneybagThree.yPos == playerPos and moneybagThree.xPos == 47) or (moneybagFour.yPos == playerPos and moneybagFour.xPos == 47)) or ((moneybagFive.yPos == playerPos and moneybagFive.xPos == 47) or (moneybagSix.yPos == playerPos and moneybagSix.xPos == 47)) or ((moneybagSeven.yPos == playerPos and moneybagSeven.xPos == 47) or (moneybagEight.yPos == playerPos and moneybagEight.xPos == 47))) then
- lives = lives - 1
- end
- if lives == 0 then
- lose = true
- end
- tickCount = tickCount + 1
- refreshSinglePlayerGraphics()
- sleep(tickSpeed)
- until lose
- -- End of Tick Loop
- end
- function singlePlayerKeyListener()
- while true do
- event, key = os.pullEvent("key")
- if key == 17 or key == 200 then
- currentKey = "up"
- elseif key == 31 or key == 208 then
- currentKey = "down"
- elseif key == 1 then
- currentKey = "escape"
- end
- end
- end
- function refreshSinglePlayerGraphics()
- term.clear()
- term.setCursorPos(1, 1)
- print("Ticks: "..tickCount.." Score: "..score.." Lives: "..lives)
- term.setCursorPos(48, playerPos + 1)
- print("X")
- if moneybagOne.onScreen == true then
- term.setCursorPos(moneybagOne.xPos, moneybagOne.yPos + 1)
- print(">$")
- end
- if moneybagTwo.onScreen == true then
- term.setCursorPos(moneybagTwo.xPos, moneybagTwo.yPos + 1)
- print(">$")
- end
- if moneybagThree.onScreen == true then
- term.setCursorPos(moneybagThree.xPos, moneybagThree.yPos + 1)
- print(">$")
- end
- if moneybagFour.onScreen == true then
- term.setCursorPos(moneybagFour.xPos, moneybagFour.yPos + 1)
- print(">$")
- end
- if moneybagFive.onScreen == true then
- term.setCursorPos(moneybagFive.xPos, moneybagFive.yPos + 1)
- print(">$")
- end
- if moneybagSix.onScreen == true then
- term.setCursorPos(moneybagSix.xPos, moneybagSix.yPos + 1)
- print(">$")
- end
- if moneybagSeven.onScreen == true then
- term.setCursorPos(moneybagSeven.xPos, moneybagSeven.yPos + 1)
- print(">$")
- end
- if moneybagEight.onScreen == true then
- term.setCursorPos(moneybagEight.xPos, moneybagEight.yPos + 1)
- print(">$")
- end
- end
- titleScreen()
Add Comment
Please, Sign In to add comment