Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Misc stats
- numbertext = 0
- --Player stats
- PlayerGold = 0
- PlayerName = ("Player")
- PlayerArmor = 0
- PlayerSword = 0
- PlayerHealth = 100
- PlayerDamage = 5
- PlayerWeapon = ("Fists")
- PlayerArmorType = ("None")
- Block = 0
- rouge = {
- }
- playerokaya = {
- " (o o) ",
- "()||[=]|| ",
- " | | "
- }
- playerhappy = {
- " (o o) /",
- "()||[=]||/ ",
- " | | "
- }
- playerokay = {
- " (o o) /",
- " ||( )||/ ",
- " | | "
- }
- playersad = {
- " (o o) ",
- " ||( )|| ",
- " | | "
- }
- --Npcs
- shopkeeper = {
- " _____ ",
- " |O O| ",
- " | U | ",
- " |_____| ",
- " Shopkeeper"
- }
- --items
- sword = {
- " ___ ",
- "| /|",
- "|-/-|",
- "|/ |",
- "|---|"
- }
- armor = {
- " ___ ",
- "| _ |",
- "|/ \|",
- "||_||",
- "|---|"
- }
- potion = {
- " ___ ",
- "|/^\|",
- "|| ||",
- "||_||",
- "|---|"
- }
- bow = {
- " ___ ",
- "||\ |",
- "|==>|",
- "||/ |",
- "|---|"
- }
- nextpage = {
- " ___ ",
- "| |",
- "|==>|",
- "| |",
- "|---|"
- }
- prevpage = {
- " ___ ",
- "| |",
- "|<==|",
- "| |",
- "|---|"
- }
- --Creature Features
- CurrentCreatureGold = 0
- CurrentCreatureHealth = 0
- CurrentCreatureAttack = 0
- spider = {
- ". (o-o) .",
- ". // \\\\ .",
- ". // \\\\ .",
- ". .",
- ". Spider .",
- "Spider"
- }
- slime = {
- " ___ ",
- " [o.o] ",
- " [___] ",
- " ",
- " Slime ",
- "Slime"
- }
- magmacube = {
- " ^___^ ",
- " ^[o.o]^ ",
- " ^[___]^ ",
- " ^ ^ ",
- " Magma Cube",
- "Magmacube"
- }
- ghast = {
- " ___ ",
- " [-.-] ",
- " [_O_] ",
- " \\\\\\\\ ",
- " Ghast ",
- "Ghast"
- }
- enderdragon = {
- " ^_^ ",
- "- [=.=] --",
- "X- [ - ]-XX",
- "XX--||--XXX",
- "EnderDragon",
- "EnderDragon"
- }
- spiderhp = math.random(5,30)
- slimehp = math.random(2,20)
- spiderattack = 5
- slimeattack = 10
- --drawing functions
- function drawClasses()
- term.setCursorPos(1,4)
- print(string.rep("X",w-13))
- term.setCursorPos(1,h-4)
- print(string.rep("X",w-13))
- for i = 1,3 do
- end
- end
- function drawShopItems(name,name2,type,num,num2,gold)
- -- in each
- --37total
- for i = 1, 5 do
- term.setCursorPos(1 + ((num-1)*5),3+num2 + i)
- print(type[i])
- end
- term.setCursorPos(1 + ((num-1)*5),3+num2 + 6)
- print(name)
- term.setCursorPos(1 + ((num-1)*5),3+num2 + 7)
- print(name2)
- term.setCursorPos(1 + ((num-1)*5),3+num2)
- print(" " .. gold .. "G")
- resetCursor()
- end
- function drawShopOutline()
- term.setCursorPos(1,2)
- print(string.rep("-",w-13))
- term.setCursorPos(1,(h-5))
- print(string.rep("-",w-13))
- end
- w,h = term.getSize()
- function drawscreen()
- term.clear()
- end
- function resetCursor()
- term.setCursorPos(1,h)
- end
- function text(input)
- if numbertext > 6 then
- draw()
- numbertext = 0
- term.setCursorPos(1,(numbertext + 1))
- print(input)
- numbertext = numbertext + 1
- else
- term.setCursorPos(1,(numbertext + 1))
- print(input)
- numbertext = numbertext + 1
- end
- term.setCursorPos(1,h)
- end
- function draw()
- term.clear()
- term.setCursorPos(1,1)
- print(string.rep("=",w))
- term.setCursorPos(1,(h-1))
- print(string.rep("=",w))
- for i = 1,h do
- term.setCursorPos(w-12,i)
- print("|")
- end
- term.setCursorPos(1,(h-4))
- print("attack,block")
- resetCursor()
- end
- function drawBlank()
- term.clear()
- term.setCursorPos(1,1)
- print(string.rep("=",w))
- term.setCursorPos(1,(h-1))
- print(string.rep("=",w))
- for i = 1,h do
- term.setCursorPos(w-12,i)
- print("|")
- end
- term.setCursorPos(1,(h-4))
- print(" ")
- resetCursor()
- end
- function drawWalk()
- term.clear()
- term.setCursorPos(1,1)
- print(string.rep("=",w))
- term.setCursorPos(1,(h-1))
- print(string.rep("=",w))
- for i = 1,h do
- term.setCursorPos(w-12,i)
- print("|")
- end
- term.setCursorPos(1,(h-3))
- print("forward,left,right")
- resetCursor()
- end
- function drawShop(page)
- term.clear()
- term.setCursorPos(1,1)
- print(string.rep("=",w))
- term.setCursorPos(1,(h-1))
- print(string.rep("=",w-13))
- for i = 1,h do
- term.setCursorPos(w-12,i)
- print("|")
- end
- term.setCursorPos(1,(h-3))
- print("purchase,leave,page " .. page)
- resetCursor()
- end
- function displayFunctions(func)
- for i = 1, 5 do
- term.setCursorPos((w-11), i)
- local textdisplay = func[i]
- print(textdisplay)
- end
- resetCursor()
- displayPlayerStats()
- end
- function Reset(C)
- draw()
- displayFunctions(C)
- displayStats(CurrentCreatureHealth)
- displayPlayerStats()
- resetCursor()
- numbertext = 0
- end
- function reset()
- draw()
- displayPlayerStats()
- numbertext = 0
- end
- function resetWalk()
- drawWalk()
- displayPlayerStats()
- numbertext = 0
- end
- function displayStats(func)
- --for i = 1, #func do
- term.setCursorPos((w-11), 6)
- --local textdisplay = func[i]
- print("Health:" .. func .. " ")
- --end
- resetCursor()
- end
- function displayPlayerStats()
- if PlayerSword == 1 and PlayerArmor > 0 then
- for i = 1, 3 do
- term.setCursorPos((w-11), 7+i-1)
- local textdisplay = playerhappy[i]
- print(textdisplay)
- end
- else if PlayerSword == 1 then
- for i = 1, 3 do
- term.setCursorPos((w-11), 7+i-1)
- local textdisplay = playerokay[i]
- print(textdisplay)
- end
- else if PlayerArmor > 0 then
- for i = 1, 3 do
- term.setCursorPos((w-11), 7+i-1)
- local textdisplay = playerokaya[i]
- print(textdisplay)
- end
- else
- for i = 1, 3 do
- term.setCursorPos((w-11), 7+i-1)
- local textdisplay = playersad[i]
- print(textdisplay)
- end
- end end end
- term.setCursorPos((w-11), 10)
- print(PlayerName)
- term.setCursorPos((w-11), 11)
- print("Health: " .. PlayerHealth .. " ")
- term.setCursorPos((w-11), 12)
- print("Dmg/Hit: " .. PlayerDamage)
- term.setCursorPos((w-11), 13)
- print("Weapon: ")
- term.setCursorPos((w-11), 14)
- print(PlayerWeapon)
- term.setCursorPos((w-11), 15)
- print("Gold:" .. PlayerGold)
- term.setCursorPos((w-11), 16)
- print("Armor:")
- term.setCursorPos((w-11), 17)
- print(PlayerArmorType)
- resetCursor()
- end
- --^^ Uses table of monster created upon start of fight
- --{health: {name:
- --game reloads
- function Walk()
- text("Action:")
- command = io.read()
- resetCursor()
- if command == ("forward") then
- resetWalk()
- text("You walk forward through some brush")
- else if command == ("left") then
- resetWalk()
- text("You turn left and continue on")
- else if command == ("right") then
- resetWalk()
- text("You turn right and continue")
- else
- resetWalk()
- Walk()
- end end end
- resetCursor()
- sleep(2)
- random()
- end
- function WalkShop()
- text("Action:")
- command = io.read()
- resetCursor()
- if command == ("forward") then
- resetWalk()
- text("You walk forward through some brush")
- else if command == ("left") then
- resetWalk()
- text("You turn left and enter the shop")
- sleep(1)
- shop()
- else if command == ("right") then
- resetWalk()
- text("You turn right and continue")
- else
- resetWalk()
- Walk()
- end end end
- resetCursor()
- sleep(2)
- random()
- end
- function WalkCave()
- text("Action:")
- command = io.read()
- resetCursor()
- if command == ("forward") then
- resetWalk()
- text("You walk forward pass the cave")
- else if command == ("left") then
- resetWalk()
- text("You pass by the cave and turn left")
- sleep(1)
- else if command == ("right") then
- resetWalk()
- text("You turn right and enter the cave")
- sleep(1)
- resetWalk()
- text("Upon entrance you see a shiny chest, open?")
- text("yes/no")
- open = io.read()
- if open == ("yes") then
- randomvar = math.random(1,3)
- if randomvar == 1 then
- NewGold = math.random(1,100)
- text("You found "..NewGold.." gold!")
- PlayerGold = PlayerGold + NewGold
- else
- text("The chest was empty...")
- if math.random(1,5) == 5 then
- text("A spider appears from the shadows!")
- sleep(1)
- CurrentCreatureGold = 12
- CurrentCreatureHealth = 25
- CurrentCreatureAttack = 5
- battle(spider)
- end
- end
- elseif open == ("no") then
- text("You hear coming further in the cave and leave")
- random()
- else
- text("Not a valid action!")
- end
- else
- resetWalk()
- Walk()
- end end end
- resetCursor()
- sleep(2)
- random()
- end
- function pageone()
- term.clear()
- drawShop("two")
- drawShopOutline()
- displayFunctions(shopkeeper)
- term.setCursorPos(1,1)
- text("Welcome to my store!")
- drawShopItems("Wood","Sword",sword,1,1,15)
- drawShopItems("Leath.","Armor",armor,2,1,15)
- drawShopItems("Iron","Sword",sword,3,1,60)
- drawShopItems("Iron","Armor",armor,4,1,60)
- drawShopItems("Gold","Sword",sword,5,1,85)
- drawShopItems("Gold","Armor",armor,6,1,85)
- drawShopItems("Next","Page",nextpage,7,1,0)
- end
- function pagetwo()
- drawShop("one")
- drawShopOutline()
- displayFunctions(shopkeeper)
- term.setCursorPos(1,1)
- text("Welcome to my store!")
- drawShopItems("Dia.","Sword",sword,1,1,120)
- drawShopItems("Dia.","Armor",armor,2,1,120)
- drawShopItems("Health","Potion",potion,3,1,10)
- drawShopItems("Prev.","Page",prevpage,4,1,0)
- end
- function bought(name,page)
- if page == 1 then
- term.clear()
- drawShop("two")
- drawShopOutline()
- displayFunctions(shopkeeper)
- term.setCursorPos(1,1)
- text("You bought a " .. name)
- drawShopItems("Wood","Sword",sword,1,1,15)
- drawShopItems("Leath.","Armor",armor,2,1,15)
- drawShopItems("Iron","Sword",sword,3,1,60)
- drawShopItems("Iron","Armor",armor,4,1,60)
- drawShopItems("Gold","Sword",sword,5,1,85)
- drawShopItems("Gold","Armor",armor,6,1,85)
- drawShopItems("Next","Page",nextpage,7,1,0)
- else if page == 2 then
- drawShop("one")
- drawShopOutline()
- displayFunctions(shopkeeper)
- term.setCursorPos(1,1)
- text("You bought a " .. name)
- drawShopItems("Dia.","Sword",sword,1,1,120)
- drawShopItems("Dia.","Armor",armor,2,1,120)
- drawShopItems("Health","Potion",potion,3,1,10)
- drawShopItems("Prev.","Page",prevpage,4,1,0)
- else
- end end
- end
- function shop()
- pageone()
- while true do
- numbertext = 0
- command = io.read()
- command = string.lower(command)
- if command == ("leave") then
- drawBlank()
- text("Leaving Shop")
- resetWalk()
- numbertext = 0
- sleep(2)
- text("You left the shop")
- text("You are in the middle of a meadow")
- text("There is a shop to the left")
- WalkShop()
- else if command == ("page one") then
- pageone()
- else if command == ("page two") then
- pagetwo()
- else if command == ("purchase wood sword") then
- if PlayerGold >= 15 then
- PlayerGold = PlayerGold - 15
- PlayerDamage = PBD + 8
- PlayerWeapon = ("Wooden Sword")
- PlayerSword = 1
- bought("Wooden Sword", 1)
- displayPlayerStats()
- elseif debug == true then
- PlayerWeapon = ("Wooden Sword")
- PlayerSword = 1
- bought("Wooden Sword", 1)
- end
- else if command == ("purchase iron sword") then
- if PlayerGold >= 60 then
- PlayerGold = PlayerGold - 60
- PlayerDamage = PBD + 12
- bought("Iron Sword", 1)
- PlayerWeapon = ("Iron Sword")
- PlayerSword = 1
- displayPlayerStats()
- else end
- else if command == ("purchase gold sword") then
- if PlayerGold >= 85 then
- PlayerGold = PlayerGold - 85
- PlayerDamage = PBD + 16
- bought("Gold Sword", 1)
- PlayerWeapon = ("Gold Sword")
- PlayerSword = 1
- displayPlayerStats()
- else end
- else if command == ("purchase diamond sword") then
- if PlayerGold >= 120 then
- PlayerGold = PlayerGold - 120
- PlayerDamage = PBD + 20
- bought("Diamond Sword", 2)
- PlayerWeapon = ("Dia. Sword")
- PlayerSword = 1
- displayPlayerStats()
- else end
- else if command == ("purchase leather armor") then
- if PlayerGold >= 15 then
- PlayerGold = PlayerGold - 15
- bought("Leather Armor", 1)
- PlayerArmor = 1
- PlayerArmorType = ("Leather")
- displayPlayerStats()
- else end
- else if command == ("purchase iron armor") then
- if PlayerGold >= 60 then
- PlayerGold = PlayerGold - 60
- bought("Iron Armor", 1)
- PlayerArmor = 3
- PlayerArmorType = ("Iron")
- displayPlayerStats()
- else end
- else if command == ("purchase gold armor") then
- if PlayerGold >= 85 then
- PlayerGold = PlayerGold - 85
- bought("Gold Armor", 1)
- PlayerArmor = 5
- PlayerArmorType = ("Gold")
- displayPlayerStats()
- else end
- else if command == ("purchase diamond armor") then
- if PlayerGold >= 120 then
- PlayerGold = PlayerGold - 120
- bought("Diamond Armor", 2)
- PlayerArmorType = ("Diamond")
- PlayerArmor = 7
- displayPlayerStats()
- else end
- else if command == ("purchase health potion") then
- if PlayerGold >= 10 then
- PlayerGold = PlayerGold - 10
- bought("Health Potion", 2)
- PlayerHealth = PHM
- displayPlayerStats()
- else end
- else
- pageone()
- end end end
- end end end end end end end end end
- end
- end
- function gameOver()
- drawBlank()
- term.setCursorPos((w/2)-7,(h/2))
- print("YOU HAVE DIED")
- term.setCursorPos((w/2)-5,(h/2)+1)
- print("GAME OVER")
- sleep(3)
- local running = shell.getRunningProgram()
- shell.run(running)
- end
- --fighting
- function battle(creature)
- draw()
- while true do
- displayFunctions(creature)
- displayStats(CurrentCreatureHealth)
- if PlayerHealth <= 0 then
- gameOver()
- else
- end
- if CurrentCreatureHealth < 1 then
- text("You have slain the " .. creature[6])
- PlayerGold = PlayerGold + CurrentCreatureGold
- sleep(3)
- CurrentCreatureGold = 0
- reset()
- random()
- else
- Block = 0
- term.setCursorPos(1,1)
- text("Action:")
- reaction = io.read()
- if reaction == ("attack") then
- Reset(creature)
- text("You swing your " .. PlayerWeapon .. " at the " .. creature[6])
- randomvar = math.random(1,2)
- if randomvar == 1 then
- randomvar = math.random(-1 * (PBD/3), PBD/3)
- if randomvar == PBD/3 then print("Critical hit!") else end
- CurrentCreatureHealth = CurrentCreatureHealth - PlayerDamage - randomvar
- CPD = PlayerDamage + randomvar
- text("You hit the " .. creature[6] .. " for " .. CPD .. " damage")
- else text("It dodges your attack!")
- end
- else if reaction == ("block") then
- Reset(creature)
- text("Using your " .. PlayerWeapon .. " you block")
- randomvar = math.random(1,3)
- if randomvar < 2 then
- Block = 2
- else
- Block = 1
- end
- else
- resetCursor()
- text("That is not a valid action!")
- draw()
- Reset(creature)
- end end
- sleep(2)
- --creature attacks player
- if Block == 0 then
- randomvar = math.random(1, 3)
- if randomvar > 1 then
- text("The " .. creature[6] .. " missed its attack!")
- else if randomvar < 2 then
- randomvar = math.random(-2,2)
- PlayerHealth = PlayerHealth - CurrentCreatureAttack - randomvar + PlayerArmor
- text("The " .. creature[6] .. " hit you for " .. (CurrentCreatureAttack + randomvar - PlayerArmor) .. " damage")
- else
- end end
- else if Block == 1 then
- randomvar = math.random(1, 7)
- if randomvar > 1 then
- text("You successfully blocked the " .. creature[6] .. "'s attack!")
- else if randomvar < 2 then
- randomvar = math.random(-2,2)
- PlayerHealth = PlayerHealth - CurrentCreatureAttack - randomvar + PlayerArmor
- text("Your block failed, you received " .. (CurrentCreatureAttack + randomvar - PlayerArmor) .. " dmg")
- end end
- else
- end end
- end
- end
- end
- --random events
- count = 0
- function random()
- count = count + 1
- randomevent = math.random(1,7)
- if count == 5 or count == 15 or count == 25 or count == 35 or count == 45 or count == 55 or count == 65 or count == 75 or count == 85 then
- shop()
- elseif randomevent == 1 then
- CurrentCreatureGold = 5
- CurrentCreatureHealth = 15
- CurrentCreatureAttack = 10
- battle(slime)
- elseif randomevent == 2 then
- CurrentCreatureGold = 7
- CurrentCreatureHealth = 25
- CurrentCreatureAttack = 5
- battle(spider)
- elseif randomevent == 3 then
- resetWalk()
- text("You are in the middle of a meadow")
- RandomShop = math.random(1,10)
- if RandomShop == 9 then
- text("There is a shop to the left")
- WalkShop()
- elseif RandomShop == 10 then
- text("There is a cave to the right")
- WalkCave()
- else
- text("There is nothing much around you")
- Walk()
- end
- elseif randomevent == 4 then
- resetWalk()
- text("You are in a small forest")
- RandomShop = math.random(1,10)
- if RandomShop == 9 then
- text("To your left you see a small shop")
- WalkShop()
- elseif RandomShop == 10 then
- text("You see a dark cave to your right")
- WalkCave()
- else
- text("There is nothing of interest here")
- Walk()
- end
- elseif randomevent == 5 and count > 35 then
- CurrentCreatureGold = 15
- CurrentCreatureHealth = 50
- CurrentCreatureAttack = 15
- battle(magmacube)
- elseif randomevent == 6 and count > 80 then
- CurrentCreatureGold = 40
- CurrentCreatureHealth = 40
- CurrentCreatureAttack = 35
- battle(ghast)
- elseif randomevent == 7 and count > 110 then
- CurrentCreatureGold = 100
- CurrentCreatureHealth = 100
- CurrentCreatureAttack = 25
- battle(enderdragon)
- else
- random()
- end
- end
- --mastercontrol
- --start
- numbertext = 0
- drawBlank()
- text("Hello adventurer!")
- text("Choose a class to continue!")
- text("Barbarian,Rouge,RoyalGuard,Adventurer")
- class = io.read()
- class = string.lower(class)
- if class == ("barbarian") then
- PHM = 85
- PBD = 13
- PlayerHealth = 85
- PlayerDamage = 13
- elseif class == ("rouge") then
- PHM = 60
- PBD = 20
- PlayerHealth = 60
- PlayerDamage = 20
- elseif class == ("royalguard") then
- PHM = 120
- PBD = 7
- PlayerHealth = 120
- PlayerDamage = 7
- elseif class == ("adventurer") then
- PHM = 90
- PBD = 15
- PlayerHealth = 90
- PlayerDamage = 15
- elseif class == ("debugger") then
- PHM = 999
- PBD = 999
- PlayerHealth = 999
- PlayerDamage = 999
- PlayerGold = 9999999
- debug = true
- end
- resetWalk()
- Walk()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement