Example #1
0
def displayClssInfoRanger():
    for line in open("clssInfoRanger.txt"):
        line = line.strip()
        print(line)
    expChar = createChar.mkRanger("Example Ranger")
    createChar.displayExampleCharInfo(expChar)
    del expChar
Example #2
0
def displayClssInfoMage():
    for line in open("clssInfoMage.txt"):
        line = line.strip()
        print(line)
    expChar = createChar.mkMage("Example Mage")
    createChar.displayExampleCharInfo(expChar)
    del expChar
Example #3
0
def displayClssInfoGuardian():
    for line in open("clssInfoGuardian.txt"):
        line = line.strip()
        print(line)
    expChar = createChar.mkGuardian("Example Guardian")
    createChar.displayExampleCharInfo(expChar)
    del expChar