Unknown2008-08-03 02:24:29
#CLASS {Totems Echoes}
#CLASS 0
#ALIAS {ttt}
#CR
#EC {Totems Abilities ----------------------------------------------------------}
#EC {BBB ---------- Bonds all spirits}
#EC {SSQ ---------- Bond squirrel}
#EC {SNI ---------- Bond night}
#EC {SSK ---------- Bond skunk}
#EC {SSU ---------- Bond sun}
#EC {SRO ---------- Bond rock}
#EC {SMO ---------- Bond moon}
#EC {SCR ---------- Bond crow}
#EC {STR ---------- Bond tree}
#EC {SGR ---------- Bond groundhog}
#EC {STO ---------- Bond trout}
#EC {SWO ---------- Bond wolf}
#EC {SBE ---------- Bond bear}
#EC {SST ---------- Bond stag}
#EC {SMO ---------- Bond monkey}
#EC {SHO ---------- Bond horse}
#EC {SRI ---------- Bond river}
Is there anything wrong with this? I've looked and looked and can't figure out what the problem is. When I try to import, the echos pop across the screen, but the alias doesn't work. After checking the script itself in Zmud, the only thing that imported was the first two lines. So, something has to be wrong with the lines that follow?
Thanks
#CLASS 0
#ALIAS {ttt}
#CR
#EC {Totems Abilities ----------------------------------------------------------}
#EC {BBB ---------- Bonds all spirits}
#EC {SSQ ---------- Bond squirrel}
#EC {SNI ---------- Bond night}
#EC {SSK ---------- Bond skunk}
#EC {SSU ---------- Bond sun}
#EC {SRO ---------- Bond rock}
#EC {SMO ---------- Bond moon}
#EC {SCR ---------- Bond crow}
#EC {STR ---------- Bond tree}
#EC {SGR ---------- Bond groundhog}
#EC {STO ---------- Bond trout}
#EC {SWO ---------- Bond wolf}
#EC {SBE ---------- Bond bear}
#EC {SST ---------- Bond stag}
#EC {SMO ---------- Bond monkey}
#EC {SHO ---------- Bond horse}
#EC {SRI ---------- Bond river}
Is there anything wrong with this? I've looked and looked and can't figure out what the problem is. When I try to import, the echos pop across the screen, but the alias doesn't work. After checking the script itself in Zmud, the only thing that imported was the first two lines. So, something has to be wrong with the lines that follow?
Thanks
Esano2008-08-03 02:28:13
#CLASS 0 closes the class, it should be at the end.
And you need proper brackets {} for the alias. Should be around what you want it to do. A moment and I'll post a (hopefully) fixed version.
And you need proper brackets {} for the alias. Should be around what you want it to do. A moment and I'll post a (hopefully) fixed version.
Esano2008-08-03 02:29:44
CODE
#CLASS {Totems Echoes}
#ALIAS {ttt} {
#CR
#EC {Totems Abilities ----------------------------------------------------------}
#EC {BBB ---------- Bonds all spirits}
#EC {SSQ ---------- Bond squirrel}
#EC {SNI ---------- Bond night}
#EC {SSK ---------- Bond skunk}
#EC {SSU ---------- Bond sun}
#EC {SRO ---------- Bond rock}
#EC {SMO ---------- Bond moon}
#EC {SCR ---------- Bond crow}
#EC {STR ---------- Bond tree}
#EC {SGR ---------- Bond groundhog}
#EC {STO ---------- Bond trout}
#EC {SWO ---------- Bond wolf}
#EC {SBE ---------- Bond bear}
#EC {SST ---------- Bond stag}
#EC {SMO ---------- Bond monkey}
#EC {SHO ---------- Bond horse}
#EC {SRI ---------- Bond river} }
#CLASS 0
#ALIAS {ttt} {
#CR
#EC {Totems Abilities ----------------------------------------------------------}
#EC {BBB ---------- Bonds all spirits}
#EC {SSQ ---------- Bond squirrel}
#EC {SNI ---------- Bond night}
#EC {SSK ---------- Bond skunk}
#EC {SSU ---------- Bond sun}
#EC {SRO ---------- Bond rock}
#EC {SMO ---------- Bond moon}
#EC {SCR ---------- Bond crow}
#EC {STR ---------- Bond tree}
#EC {SGR ---------- Bond groundhog}
#EC {STO ---------- Bond trout}
#EC {SWO ---------- Bond wolf}
#EC {SBE ---------- Bond bear}
#EC {SST ---------- Bond stag}
#EC {SMO ---------- Bond monkey}
#EC {SHO ---------- Bond horse}
#EC {SRI ---------- Bond river} }
#CLASS 0
Unknown2008-08-03 02:54:17
Aha, I remember now! I was trying to write them all separately instead of using ";". Thanks much for the help.