8b1d533d-3175-4c01-acf9-0c58d1e02c541.02016playerMr. Name CheckerTalk to him.
msg ("Ah. You must be " + GetDisplayAlias(player) + "! Nice to meet you!")
'So, you really want to be called... " + result + "?
'Once you state 'yes' it will be forever so. What say you? Is " + result + " really what you want printed in the annals of history? ")
get input {
switch (LCase(result)) {
case ("yes","yea","y","yep","sure","affirmative") {
msg ("\"Okay then,\" the mighty Wizard proclaims! ")
msg ("'You are hereby known around the world as " + GetDisplayAlias(player) + "! PLEASE DO NOT disappoint me!'
'Now go east and let your adventure begin!'")
MakeExitVisible (exit1)
}
case ("no","nay","nope","n") {
msg ("\"Ugh,\" the Wizard utters in protest. \"Are you serious? This isn't THAT difficult! Please CORRECTLY state your name NOW!")
namefunction
}
default {
msg ("\"I do not understand your response. You'll have to try English next time. Shall we do this again? WHAT IS YOUR NAME?\"")
namefunction
}
}
}
}
]]>