Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function heroCr()
- cFName = nil
- cSuffix = nil
- cLName = nil
- term.clear()
- term.setCursorPos(1 , 1)
- hExistBool = True
- 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)
- local cSuffix = namesS[math.random(1 , 4)]
- local cLName = namesL[math.random(1 , 38)]
- hFame = 0 --(These are the stats for the hero)
- hStr = math.random(10)
- hSpd = math.random(10)
- hDef = math.random(10)
- hAcc = math.random(10)
- hMaxHit = hStr + hDef
- hCurHit = hMaxHit
- 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.)
- 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.)
- hWeapBool = false --(The hero doesn't get a starting weapon)
- hArmBool = false --(Or Armor)
- hChildBool = false --(Or children (Even if they did in the other dimension))
- if math.random(1 , 2) == 1 then --(Decides the gender of the hero)
- cGender = "Male"
- else
- cGender = "Female"
- end
- if cGender == "Male" then
- 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.)
- else
- cTitle = titlesF[math.random(1 , 8)]
- end
- sleep(0)
- print("In a freak accident, a new hero is teleported from a parallel world.") --(Hero introductory text)
- 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.)
- 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)
- else
- cHName = {cTitle, cFName, " ", cLName,}
- end
- sleep(1)
- if cGender == "Male" then
- print("His name is " .. cHName[1] .. " " .. cHName[2] .. " " .. cHName[3] .. cHName[4]) --(Male Name pronouncement)
- elseif cGender == "Female" then
- print("Her name is " .. cHName[1] .. " " .. cHName[2] .. " " .. cHName[3] .. cHName[4]) --(" Female)
- end
- sleep(1)
- print("Stats!") --(Displays the stats)
- sleep(1)
- print("Strength: " .. hStr)
- print("Speed: " .. hSpd)
- print("Defense: " .. hDef)
- print("Accuracy: " .. hAcc)
- print("Age: " .. hAge)
- print("Press any key to continue")
- os.pullEvent("key")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement