Switch to edit mode.
Name(s): about1: if (length(dobjstr) < 3)
2: player:tell("I don't understand that.")
3: return
4: endif
5: if (dobjstr[1..3] == "Com")
6: help = this.commandhelp_txt
7: elseif (dobjstr[1..3] == "Cus")
8: help = this.customizationhelp_txt
9: elseif (dobjstr[1] == "8")
10: help = this.help8ball_txt
11: elseif (dobjstr[1] == "9")
12: help = this.help9ball_txt
13: elseif (dobjstr[1..3] == "Cut")
14: help = this.helpcutthroat_txt
15: else
16: player:tell("There is no help defined on that topic. Type 'help table' to get a list of available topics.")
17: return
18: endif
19: for q in [1..length(help)]
20: player:tell(help[q])
21: endfor