Thank you SOOOOoooo much! It seems my spacing and characters of the script were slightly off. Thanks a ton!

Maybe you can help me figure out another issue on the same topic?

Trying to get !Name TheCharacterName to work, but only !Name does and so far it's not writing the file for the character.

on *:text:!Register*:#LATOOC: {
notice $nick Registration has started.. Step One: Type !Name (Name of your character)
}
on *:text:*!Name $2- *:#LATOOC: {
if ($readini($nick $+ .ini,Register,Name) == on) { /notice $nick You already made a name! | halt }
writeini $nick $+ .ini $nick Name $2-
writeini $nick $+ .ini Register Name on
notice $nick Your character name is registered. Step 2: $2- $+ , What is your character type? Type !Types to get a list of what you can be, or to jump right to creation, type !Pick Type (Your selection goes here)
}

Also working on one for listing item numbers found in said file..

on *:text:!MyItems*:#LATOOC: {
if ($readini($nick $+ .ini,Register,Complete) != on) { /notice $nick Please Register! !Register | halt }
if ($readini($nick $+ .ini,pass,passaccept) != on) { /notice $nick Login! | halt }
/set %Cookie $readini($nick $+ .ini,$nick,Cookie)
/set %Tickets $readini($nick $+ .ini,$nick,Tickets)
}