Advertisement
Mikee251

AdventureCraft

Feb 2nd, 2013
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 17.73 KB | None | 0 0
  1. --Misc stats
  2. numbertext = 0
  3. --Player stats
  4. PlayerGold = 0
  5. PlayerName = ("Player")
  6. PlayerArmor = 0
  7. PlayerSword = 0
  8. PlayerHealth = 100
  9. PlayerDamage = 5
  10. PlayerWeapon = ("Fists")
  11. PlayerArmorType = ("None")
  12. Block = 0
  13.  
  14. rouge = {
  15. }
  16.  
  17.  
  18.  
  19. playerokaya = {
  20. "   (o o)   ",
  21. "()||[=]||  ",
  22. "    | |    "
  23. }
  24. playerhappy = {
  25. "   (o o)  /",
  26. "()||[=]||/ ",
  27. "    | |    "
  28. }
  29. playerokay = {
  30. "   (o o)  /",
  31. "  ||( )||/ ",
  32. "    | |    "
  33. }
  34. playersad = {
  35. "   (o o)   ",
  36. "  ||( )||  ",
  37. "    | |    "
  38. }
  39.  
  40. --Npcs
  41. shopkeeper = {
  42. "   _____   ",
  43. "  |O   O|  ",
  44. "  |  U  |  ",
  45. "  |_____|  ",
  46. " Shopkeeper"
  47. }
  48. --items
  49. sword = {
  50. " ___ ",
  51. "|  /|",
  52. "|-/-|",
  53. "|/  |",
  54. "|---|"
  55. }
  56. armor = {
  57. " ___ ",
  58. "| _ |",
  59. "|/ \|",
  60. "||_||",
  61. "|---|"
  62. }
  63. potion = {
  64. " ___ ",
  65. "|/^\|",
  66. "|| ||",
  67. "||_||",
  68. "|---|"
  69. }
  70. bow = {
  71. " ___ ",
  72. "||\ |",
  73. "|==>|",
  74. "||/ |",
  75. "|---|"
  76. }
  77. nextpage = {
  78. " ___ ",
  79. "|   |",
  80. "|==>|",
  81. "|   |",
  82. "|---|"
  83. }
  84. prevpage = {
  85. " ___ ",
  86. "|   |",
  87. "|<==|",
  88. "|   |",
  89. "|---|"
  90. }
  91. --Creature Features
  92.  
  93. CurrentCreatureGold = 0
  94. CurrentCreatureHealth = 0
  95. CurrentCreatureAttack = 0
  96.  
  97. spider = {
  98. ".  (o-o)  .",
  99. ".  // \\\\  .",
  100. ". //   \\\\ .",
  101. ".         .",
  102. ". Spider  .",
  103. "Spider"
  104. }
  105.  
  106. slime = {
  107. "    ___    ",
  108. "   [o.o]   ",
  109. "   [___]   ",
  110. "           ",
  111. "   Slime   ",
  112. "Slime"
  113. }
  114. magmacube = {
  115. "   ^___^   ",
  116. "  ^[o.o]^  ",
  117. "  ^[___]^  ",
  118. "    ^  ^   ",
  119. " Magma Cube",
  120. "Magmacube"
  121. }
  122. ghast = {
  123. "    ___    ",
  124. "   [-.-]   ",
  125. "   [_O_]   ",
  126. "    \\\\\\\\   ",  
  127. "   Ghast   ",
  128. "Ghast"
  129. }
  130. enderdragon = {
  131. "    ^_^    ",
  132. "-  [=.=] --",
  133. "X- [ - ]-XX",
  134. "XX--||--XXX",  
  135. "EnderDragon",
  136. "EnderDragon"
  137. }
  138. spiderhp = math.random(5,30)
  139. slimehp = math.random(2,20)
  140. spiderattack = 5
  141. slimeattack = 10
  142.  
  143. --drawing functions
  144.  
  145. function drawClasses()
  146.     term.setCursorPos(1,4)
  147.     print(string.rep("X",w-13))
  148.     term.setCursorPos(1,h-4)
  149.     print(string.rep("X",w-13))
  150.     for i = 1,3 do
  151.     end
  152. end
  153.    
  154.  
  155.  
  156. function drawShopItems(name,name2,type,num,num2,gold)
  157. -- in each
  158. --37total
  159.     for i = 1, 5 do
  160.     term.setCursorPos(1 + ((num-1)*5),3+num2 + i)
  161.     print(type[i])
  162.     end
  163.     term.setCursorPos(1 + ((num-1)*5),3+num2 + 6)
  164.     print(name)
  165.         term.setCursorPos(1 + ((num-1)*5),3+num2 + 7)
  166.     print(name2)
  167.         term.setCursorPos(1 + ((num-1)*5),3+num2)
  168.         print(" " .. gold .. "G")
  169.     resetCursor()
  170.    
  171. end
  172.  
  173.  
  174. function drawShopOutline()
  175.     term.setCursorPos(1,2)
  176.     print(string.rep("-",w-13))
  177.     term.setCursorPos(1,(h-5))
  178.     print(string.rep("-",w-13))
  179. end
  180.  
  181.  
  182. w,h = term.getSize()
  183.  
  184. function drawscreen()
  185. term.clear()
  186. end
  187.  
  188. function resetCursor()
  189. term.setCursorPos(1,h)
  190. end
  191.  
  192. function text(input)
  193.     if numbertext > 6 then
  194.         draw()
  195.         numbertext = 0
  196.         term.setCursorPos(1,(numbertext + 1))
  197.         print(input)
  198.         numbertext = numbertext + 1
  199.     else
  200.         term.setCursorPos(1,(numbertext + 1))
  201.         print(input)
  202.         numbertext = numbertext + 1
  203.             end
  204.     term.setCursorPos(1,h)
  205. end
  206.  
  207. function draw()
  208. term.clear()
  209. term.setCursorPos(1,1)
  210. print(string.rep("=",w))
  211. term.setCursorPos(1,(h-1))
  212. print(string.rep("=",w))
  213. for i = 1,h do
  214. term.setCursorPos(w-12,i)
  215. print("|")
  216.   end
  217.   term.setCursorPos(1,(h-4))
  218.   print("attack,block")
  219. resetCursor()
  220. end
  221.  
  222. function drawBlank()
  223. term.clear()
  224. term.setCursorPos(1,1)
  225. print(string.rep("=",w))
  226. term.setCursorPos(1,(h-1))
  227. print(string.rep("=",w))
  228. for i = 1,h do
  229. term.setCursorPos(w-12,i)
  230. print("|")
  231.   end
  232.   term.setCursorPos(1,(h-4))
  233.   print(" ")
  234. resetCursor()
  235. end
  236.  
  237. function drawWalk()
  238. term.clear()
  239. term.setCursorPos(1,1)
  240. print(string.rep("=",w))
  241. term.setCursorPos(1,(h-1))
  242. print(string.rep("=",w))
  243. for i = 1,h do
  244. term.setCursorPos(w-12,i)
  245. print("|")
  246.   end
  247.   term.setCursorPos(1,(h-3))
  248.   print("forward,left,right")
  249. resetCursor()
  250. end
  251.  
  252. function drawShop(page)
  253. term.clear()
  254. term.setCursorPos(1,1)
  255. print(string.rep("=",w))
  256. term.setCursorPos(1,(h-1))
  257. print(string.rep("=",w-13))
  258. for i = 1,h do
  259. term.setCursorPos(w-12,i)
  260. print("|")
  261.   end
  262.   term.setCursorPos(1,(h-3))
  263.   print("purchase,leave,page " .. page)
  264. resetCursor()
  265. end
  266.  
  267. function displayFunctions(func)
  268. for i = 1, 5 do
  269. term.setCursorPos((w-11), i)
  270. local textdisplay = func[i]
  271. print(textdisplay)
  272. end
  273. resetCursor()
  274. displayPlayerStats()
  275. end
  276.  
  277. function Reset(C)
  278.     draw()
  279.     displayFunctions(C)
  280.     displayStats(CurrentCreatureHealth)
  281.     displayPlayerStats()
  282.     resetCursor()
  283.     numbertext = 0
  284. end
  285.  
  286. function reset()
  287. draw()
  288. displayPlayerStats()
  289. numbertext = 0
  290. end
  291.  
  292. function resetWalk()
  293. drawWalk()
  294. displayPlayerStats()
  295. numbertext = 0
  296. end
  297.  
  298. function displayStats(func)
  299. --for i = 1, #func do
  300. term.setCursorPos((w-11), 6)
  301. --local textdisplay = func[i]
  302. print("Health:" .. func .. " ")
  303. --end
  304. resetCursor()
  305. end
  306.  
  307. function displayPlayerStats()
  308.  
  309. if PlayerSword == 1 and PlayerArmor > 0 then
  310.     for i = 1, 3 do
  311.     term.setCursorPos((w-11), 7+i-1)
  312.     local textdisplay = playerhappy[i]
  313.     print(textdisplay)
  314.     end
  315. else if PlayerSword == 1 then
  316.     for i = 1, 3 do
  317.     term.setCursorPos((w-11), 7+i-1)
  318.     local textdisplay = playerokay[i]
  319.     print(textdisplay)
  320.     end
  321. else if PlayerArmor > 0 then
  322.     for i = 1, 3 do
  323.     term.setCursorPos((w-11), 7+i-1)
  324.     local textdisplay = playerokaya[i]
  325.     print(textdisplay)
  326.     end
  327. else
  328.     for i = 1, 3 do
  329.     term.setCursorPos((w-11), 7+i-1)
  330.     local textdisplay = playersad[i]
  331.     print(textdisplay)
  332.     end
  333.     end end end
  334.         term.setCursorPos((w-11), 10)
  335.         print(PlayerName)
  336.         term.setCursorPos((w-11), 11)
  337.         print("Health: " .. PlayerHealth .. "  ")
  338.         term.setCursorPos((w-11), 12)
  339.         print("Dmg/Hit: " .. PlayerDamage)
  340.         term.setCursorPos((w-11), 13)
  341.         print("Weapon: ")
  342.         term.setCursorPos((w-11), 14)
  343.         print(PlayerWeapon)
  344.         term.setCursorPos((w-11), 15)
  345.         print("Gold:" .. PlayerGold)
  346.                 term.setCursorPos((w-11), 16)
  347.         print("Armor:")
  348.                 term.setCursorPos((w-11), 17)
  349.         print(PlayerArmorType)
  350.  
  351. resetCursor()
  352. end
  353. --^^ Uses table of monster created upon start of fight
  354. --{health: {name:
  355.  
  356.  
  357. --game reloads
  358.  
  359. function Walk()
  360.     text("Action:")
  361.         command = io.read()
  362.         resetCursor()
  363.             if command == ("forward") then
  364.                 resetWalk()
  365.                 text("You walk forward through some brush")
  366.             else if command == ("left") then
  367.                 resetWalk()
  368.                 text("You turn left and continue on")
  369.             else if command == ("right") then
  370.             resetWalk()
  371.                 text("You turn right and continue")
  372.             else
  373.             resetWalk()
  374.              Walk()
  375.             end end end
  376.             resetCursor()
  377.                 sleep(2)
  378.             random()
  379.  end
  380.  function WalkShop()
  381.     text("Action:")
  382.         command = io.read()
  383.         resetCursor()
  384.             if command == ("forward") then
  385.                 resetWalk()
  386.                 text("You walk forward through some brush")
  387.             else if command == ("left") then
  388.                 resetWalk()
  389.                 text("You turn left and enter the shop")
  390.                 sleep(1)
  391.                 shop()
  392.             else if command == ("right") then
  393.             resetWalk()
  394.                 text("You turn right and continue")
  395.             else
  396.             resetWalk()
  397.              Walk()
  398.             end end end
  399.             resetCursor()
  400.                 sleep(2)
  401.             random()
  402.  
  403.  end
  404.   function WalkCave()
  405.     text("Action:")
  406.         command = io.read()
  407.         resetCursor()
  408.             if command == ("forward") then
  409.                 resetWalk()
  410.                 text("You walk forward pass the cave")
  411.             else if command == ("left") then
  412.                 resetWalk()
  413.                 text("You pass by the cave and turn left")
  414.                 sleep(1)
  415.             else if command == ("right") then
  416.             resetWalk()
  417.                 text("You turn right and enter the cave")
  418.                 sleep(1)
  419.                 resetWalk()
  420.                 text("Upon entrance you see a shiny chest, open?")
  421.                 text("yes/no")
  422.                 open = io.read()
  423.                     if open == ("yes") then
  424.                 randomvar = math.random(1,3)
  425.                     if randomvar == 1 then
  426.      NewGold = math.random(1,100)
  427.                 text("You found "..NewGold.." gold!")
  428.                 PlayerGold = PlayerGold + NewGold
  429.                 else
  430.                 text("The chest was empty...")
  431.      if math.random(1,5) == 5 then
  432.      text("A spider appears from the shadows!")
  433.      sleep(1)
  434.                 CurrentCreatureGold = 12
  435.                 CurrentCreatureHealth = 25
  436.                 CurrentCreatureAttack = 5
  437.                 battle(spider)
  438.      end
  439.                     end
  440.                 elseif open == ("no") then
  441.                 text("You hear coming further in the cave and leave")
  442.                 random()
  443.                 else
  444.                 text("Not a valid action!")
  445.                     end
  446.                
  447.             else
  448.             resetWalk()
  449.              Walk()
  450.             end end end
  451.             resetCursor()
  452.                 sleep(2)
  453.             random()
  454.  
  455.  end
  456.  function pageone()
  457.         term.clear()
  458.         drawShop("two")
  459.         drawShopOutline()
  460.         displayFunctions(shopkeeper)
  461.         term.setCursorPos(1,1)
  462.         text("Welcome to my store!")
  463.         drawShopItems("Wood","Sword",sword,1,1,15)
  464.         drawShopItems("Leath.","Armor",armor,2,1,15)
  465.         drawShopItems("Iron","Sword",sword,3,1,60)
  466.         drawShopItems("Iron","Armor",armor,4,1,60)
  467.         drawShopItems("Gold","Sword",sword,5,1,85)
  468.         drawShopItems("Gold","Armor",armor,6,1,85)
  469.         drawShopItems("Next","Page",nextpage,7,1,0)
  470. end
  471.    
  472. function pagetwo()
  473.         drawShop("one")
  474.         drawShopOutline()
  475.         displayFunctions(shopkeeper)
  476.         term.setCursorPos(1,1)
  477.         text("Welcome to my store!")
  478.         drawShopItems("Dia.","Sword",sword,1,1,120)
  479.         drawShopItems("Dia.","Armor",armor,2,1,120)
  480.         drawShopItems("Health","Potion",potion,3,1,10)
  481.                 drawShopItems("Prev.","Page",prevpage,4,1,0)
  482.     end
  483.  
  484. function bought(name,page)
  485. if page == 1 then
  486.         term.clear()
  487.         drawShop("two")
  488.         drawShopOutline()
  489.         displayFunctions(shopkeeper)
  490.         term.setCursorPos(1,1)
  491.         text("You bought a " .. name)
  492.         drawShopItems("Wood","Sword",sword,1,1,15)
  493.         drawShopItems("Leath.","Armor",armor,2,1,15)
  494.         drawShopItems("Iron","Sword",sword,3,1,60)
  495.         drawShopItems("Iron","Armor",armor,4,1,60)
  496.         drawShopItems("Gold","Sword",sword,5,1,85)
  497.         drawShopItems("Gold","Armor",armor,6,1,85)
  498.         drawShopItems("Next","Page",nextpage,7,1,0)
  499. else if page == 2 then
  500.         drawShop("one")
  501.         drawShopOutline()
  502.         displayFunctions(shopkeeper)
  503.         term.setCursorPos(1,1)
  504.         text("You bought a " .. name)
  505.         drawShopItems("Dia.","Sword",sword,1,1,120)
  506.         drawShopItems("Dia.","Armor",armor,2,1,120)
  507.         drawShopItems("Health","Potion",potion,3,1,10)
  508.         drawShopItems("Prev.","Page",prevpage,4,1,0)
  509. else
  510. end end
  511. end
  512.  
  513.        
  514. function shop()
  515. pageone()
  516. while true do
  517.     numbertext = 0
  518.     command = io.read()
  519.   command = string.lower(command)
  520.     if command == ("leave") then
  521.         drawBlank()
  522.             text("Leaving Shop")
  523.     resetWalk()
  524.             numbertext = 0
  525.             sleep(2)
  526.     text("You left the shop")
  527.     text("You are in the middle of a meadow")
  528.     text("There is a shop to the left")
  529.             WalkShop()
  530.     else if command == ("page one") then
  531.         pageone()
  532.     else if command == ("page two") then
  533.         pagetwo()
  534.     else if command == ("purchase wood sword") then
  535.     if PlayerGold >= 15 then
  536.     PlayerGold = PlayerGold - 15
  537.         PlayerDamage = PBD + 8
  538.         PlayerWeapon = ("Wooden Sword")
  539.         PlayerSword = 1
  540.         bought("Wooden Sword", 1)
  541.         displayPlayerStats()
  542.     elseif debug == true then
  543.    PlayerWeapon = ("Wooden Sword")
  544.    PlayerSword = 1
  545.    bought("Wooden Sword", 1)
  546.   end
  547.     else if command == ("purchase iron sword") then
  548.             if PlayerGold >= 60 then
  549.     PlayerGold = PlayerGold - 60
  550.         PlayerDamage = PBD + 12
  551.         bought("Iron Sword", 1)
  552.         PlayerWeapon = ("Iron Sword")
  553.         PlayerSword = 1
  554.         displayPlayerStats()
  555.         else end
  556.     else if command == ("purchase gold sword") then
  557.             if PlayerGold >= 85 then
  558.     PlayerGold = PlayerGold - 85
  559.         PlayerDamage = PBD + 16
  560.         bought("Gold Sword", 1)
  561.         PlayerWeapon = ("Gold Sword")
  562.         PlayerSword = 1
  563.         displayPlayerStats()
  564.         else end
  565.     else if command == ("purchase diamond sword") then
  566.                 if PlayerGold >= 120 then
  567.     PlayerGold = PlayerGold - 120
  568.         PlayerDamage = PBD + 20
  569.         bought("Diamond Sword", 2)
  570.         PlayerWeapon = ("Dia. Sword")
  571.         PlayerSword = 1
  572.         displayPlayerStats()
  573.         else end
  574.     else if command == ("purchase leather armor") then
  575.                 if PlayerGold >= 15 then
  576.     PlayerGold = PlayerGold - 15
  577.         bought("Leather Armor", 1)
  578.         PlayerArmor = 1
  579.         PlayerArmorType = ("Leather")
  580.         displayPlayerStats()
  581.         else end
  582.     else if command == ("purchase iron armor") then
  583.                 if PlayerGold >= 60 then
  584.     PlayerGold = PlayerGold - 60
  585.             bought("Iron Armor", 1)
  586.         PlayerArmor = 3
  587.                 PlayerArmorType = ("Iron")
  588.         displayPlayerStats()
  589.         else end
  590.     else if command == ("purchase gold armor") then
  591.                 if PlayerGold >= 85 then
  592.     PlayerGold = PlayerGold - 85
  593.         bought("Gold Armor", 1)
  594.         PlayerArmor = 5
  595.                 PlayerArmorType = ("Gold")
  596.         displayPlayerStats()
  597.         else end
  598.     else if command == ("purchase diamond armor") then
  599.                 if PlayerGold >= 120 then
  600.     PlayerGold = PlayerGold - 120
  601.         bought("Diamond Armor", 2)
  602.                 PlayerArmorType = ("Diamond")
  603.         PlayerArmor = 7
  604.         displayPlayerStats()
  605.         else end
  606.     else if command == ("purchase health potion") then
  607.                 if PlayerGold >= 10 then
  608.     PlayerGold = PlayerGold - 10
  609.         bought("Health Potion", 2)     
  610.         PlayerHealth = PHM
  611.         displayPlayerStats()
  612.         else end
  613.     else
  614.     pageone()
  615.     end end end
  616.     end end end end end end end end end
  617.        
  618. end
  619. end
  620.  
  621. function gameOver()
  622. drawBlank()
  623. term.setCursorPos((w/2)-7,(h/2))
  624. print("YOU HAVE DIED")
  625. term.setCursorPos((w/2)-5,(h/2)+1)
  626. print("GAME  OVER")
  627. sleep(3)
  628. local running = shell.getRunningProgram()
  629. shell.run(running)
  630. end
  631.  
  632.  
  633. --fighting
  634.  
  635. function battle(creature)
  636. draw()
  637.     while true do
  638.     displayFunctions(creature)
  639.     displayStats(CurrentCreatureHealth)
  640.         if PlayerHealth <= 0 then
  641.         gameOver()
  642.         else
  643.         end
  644.         if CurrentCreatureHealth < 1 then
  645.             text("You have slain the " .. creature[6])
  646.             PlayerGold = PlayerGold + CurrentCreatureGold
  647.             sleep(3)
  648.             CurrentCreatureGold = 0
  649.             reset()
  650.             random()
  651.         else
  652.         Block = 0
  653.         term.setCursorPos(1,1)
  654.         text("Action:")
  655.         reaction = io.read()
  656.             if reaction == ("attack") then
  657.             Reset(creature)
  658.             text("You swing your " .. PlayerWeapon .. " at the " .. creature[6])
  659.                 randomvar = math.random(1,2)
  660.                     if randomvar == 1 then
  661.                     randomvar = math.random(-1 * (PBD/3), PBD/3)
  662.                         if  randomvar == PBD/3 then print("Critical hit!") else end
  663.                         CurrentCreatureHealth = CurrentCreatureHealth - PlayerDamage - randomvar
  664.                         CPD = PlayerDamage + randomvar
  665.                         text("You hit the " .. creature[6] .. " for " .. CPD .. " damage")
  666.                     else text("It dodges your attack!")
  667.                     end
  668.             else if reaction == ("block") then
  669.             Reset(creature)
  670.             text("Using your " .. PlayerWeapon .. " you block")
  671.                 randomvar = math.random(1,3)
  672.                     if randomvar < 2 then
  673.                         Block = 2
  674.                     else
  675.                         Block = 1
  676.                     end
  677.             else       
  678.             resetCursor()
  679.             text("That is not a valid action!")
  680.             draw()
  681.             Reset(creature)
  682.             end end
  683.         sleep(2)
  684. --creature attacks player
  685. if Block == 0 then
  686.     randomvar = math.random(1, 3)
  687.     if randomvar > 1 then
  688.         text("The " .. creature[6] .. " missed its attack!")
  689.     else if randomvar < 2 then
  690.         randomvar = math.random(-2,2)
  691.         PlayerHealth = PlayerHealth - CurrentCreatureAttack - randomvar + PlayerArmor
  692.         text("The " .. creature[6] .. " hit you for " .. (CurrentCreatureAttack + randomvar - PlayerArmor) .. " damage")
  693.     else
  694.    
  695.     end end
  696. else if Block == 1 then
  697.     randomvar = math.random(1, 7)
  698.     if randomvar > 1 then
  699.         text("You successfully blocked the " .. creature[6] .. "'s attack!")
  700.     else if randomvar < 2 then
  701.         randomvar = math.random(-2,2)
  702.         PlayerHealth = PlayerHealth - CurrentCreatureAttack - randomvar + PlayerArmor
  703.         text("Your block failed, you received " .. (CurrentCreatureAttack + randomvar - PlayerArmor) .. " dmg")
  704.     end end
  705. else
  706. end end
  707.  
  708.         end
  709.     end
  710. end
  711. --random events
  712. count = 0
  713. function random()
  714. count = count + 1
  715.     randomevent = math.random(1,7)
  716.     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
  717.         shop()
  718.     elseif randomevent == 1 then
  719.         CurrentCreatureGold = 5
  720.         CurrentCreatureHealth = 15
  721.         CurrentCreatureAttack = 10
  722.         battle(slime)
  723.     elseif randomevent == 2 then
  724.         CurrentCreatureGold = 7
  725.         CurrentCreatureHealth = 25
  726.         CurrentCreatureAttack = 5
  727.         battle(spider)
  728.     elseif randomevent == 3 then
  729.         resetWalk()
  730.         text("You are in the middle of a meadow")
  731.         RandomShop = math.random(1,10)
  732.         if RandomShop ==  9 then
  733.         text("There is a shop to the left")
  734.         WalkShop()
  735.         elseif RandomShop == 10 then
  736.         text("There is a cave to the right")
  737.         WalkCave()     
  738.         else
  739.   text("There is nothing much around you")
  740.   Walk()
  741.         end
  742.     elseif randomevent == 4 then
  743.         resetWalk()
  744.   text("You are in a small forest")
  745.   RandomShop = math.random(1,10)
  746.   if RandomShop == 9 then
  747.   text("To your left you see a small shop")
  748.   WalkShop()
  749.   elseif RandomShop == 10 then
  750.   text("You see a dark cave to your right")
  751.   WalkCave()
  752.   else
  753.   text("There is nothing of interest here")
  754.   Walk()
  755.   end
  756.     elseif randomevent == 5 and count > 35  then
  757.         CurrentCreatureGold = 15
  758.         CurrentCreatureHealth = 50
  759.         CurrentCreatureAttack = 15
  760.         battle(magmacube)
  761.     elseif randomevent == 6 and count > 80 then
  762.         CurrentCreatureGold = 40
  763.         CurrentCreatureHealth = 40
  764.         CurrentCreatureAttack = 35
  765.         battle(ghast)
  766.     elseif randomevent == 7 and count > 110 then
  767.         CurrentCreatureGold = 100
  768.         CurrentCreatureHealth = 100
  769.         CurrentCreatureAttack = 25
  770.         battle(enderdragon)
  771.            
  772.        
  773. else
  774. random()
  775. end
  776. end
  777.  
  778.  
  779. --mastercontrol
  780. --start
  781. numbertext = 0
  782. drawBlank()
  783. text("Hello adventurer!")
  784. text("Choose a class to continue!")
  785. text("Barbarian,Rouge,RoyalGuard,Adventurer")
  786. class = io.read()
  787. class = string.lower(class)
  788. if class == ("barbarian") then
  789. PHM = 85
  790. PBD = 13
  791. PlayerHealth = 85
  792. PlayerDamage = 13
  793. elseif class == ("rouge") then
  794. PHM = 60
  795. PBD = 20
  796. PlayerHealth = 60
  797. PlayerDamage = 20
  798. elseif class == ("royalguard") then
  799. PHM = 120
  800. PBD = 7
  801. PlayerHealth = 120
  802. PlayerDamage = 7
  803. elseif class == ("adventurer") then
  804. PHM = 90
  805. PBD = 15
  806. PlayerHealth = 90
  807. PlayerDamage = 15
  808. elseif class == ("debugger") then
  809. PHM = 999
  810. PBD = 999
  811. PlayerHealth = 999
  812. PlayerDamage = 999
  813. PlayerGold = 9999999
  814. debug = true
  815. end
  816. resetWalk()
  817. Walk()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement