Advertisement
scubadiver1991

Annoying Function

Mar 29th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. function heroCr()
  2. cFName = nil
  3. cSuffix = nil
  4. cLName = nil
  5. term.clear()
  6. term.setCursorPos(1 , 1)
  7. hExistBool = True
  8. local cFName = namesF[math.random(1 , 61)] --(These are how the names are randomized, at this point the name is split into seperate variables, that will change soon, that is why these are local)
  9. local cSuffix = namesS[math.random(1 , 4)]
  10. local cLName = namesL[math.random(1 , 38)]
  11. hFame = 0 --(These are the stats for the hero)
  12. hStr = math.random(10)
  13. hSpd = math.random(10)
  14. hDef = math.random(10)
  15. hAcc = math.random(10)
  16. hMaxHit = hStr + hDef
  17. hCurHit = hMaxHit
  18. hDays = 0 --(the number of days lived in the current year of the hero's age, when it reaches 20 the age goes up a year. They have a very short solar cycle on this planet. Also, it's always your birthday when you get teleported over, sorry.)
  19. hAge = math.random(200) --(this is age in years, 201 is the max, if you reach that you die of old age, congrats, it won't happen often.)
  20. hWeapBool = false --(The hero doesn't get a starting weapon)
  21. hArmBool = false --(Or Armor)
  22. hChildBool = false --(Or children (Even if they did in the other dimension))
  23. if math.random(1 , 2) == 1 then --(Decides the gender of the hero)
  24. cGender = "Male"
  25. else
  26. cGender = "Female"
  27. end
  28. if cGender == "Male" then
  29. local cTitle = titlesM[math.random(1 , 8)] --(The system uses gender based titles, but nothing else. Personally, I like the weirdness it gives some names.)
  30. else
  31. cTitle = titlesF[math.random(1 , 8)]
  32. end
  33. sleep(0)
  34. print("In a freak accident, a new hero is teleported from a parallel world.") --(Hero introductory text)
  35. if math.random(1 , 2) == 1 then --(This is a quick decision on whether the hero's last name will have a suffix or not.)
  36. cHName = {cTitle, cFName, cSuffix, cLName,} --(This, and its non-suffix counterpart assemble the hero's name into a table so it can be called later. This means parts of the name can be called e.g. Mr. Kennedy instead of Mr. Ashleigh Kennedy)
  37. else
  38. cHName = {cTitle, cFName, " ", cLName,}
  39. end
  40. sleep(1)
  41. if cGender == "Male" then
  42. print("His name is " .. cHName[1] .. " " .. cHName[2] .. " " .. cHName[3] .. cHName[4]) --(Male Name pronouncement)
  43. elseif cGender == "Female" then
  44. print("Her name is " .. cHName[1] .. " " .. cHName[2] .. " " .. cHName[3] .. cHName[4]) --(" Female)
  45. end
  46. sleep(1)
  47. print("Stats!") --(Displays the stats)
  48. sleep(1)
  49. print("Strength: " .. hStr)
  50. print("Speed: " .. hSpd)
  51. print("Defense: " .. hDef)
  52. print("Accuracy: " .. hAcc)
  53. print("Age: " .. hAge)
  54. print("Press any key to continue")
  55. os.pullEvent("key")
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement