I am not sure I understand everything in your post but if you simply want to change you PC's name then, KSE is all what you need. You can get KSE on our website:
http://www.starwarsknights.com/tools.php)
Sorrry if i did not make it clear.
I am saying that if i pick a my pc's head on the character selection screen, the next thing is to pick a name for him.
So i was just woundering if there is a script that if i pick this pc head that his name would automaticaly be in the character name screeen when i click on it.
Edit:
You could do that by checking the appearance type of the main character to see if it matches the line number of your new appearance in appearance.2da. You can use the GetAppearanceType() function for this, like (snip)
It sounds like i would have to put my script in the enclosed brackets of the if function. So i tried this and it worked.
void main()
{
if (GetAppearanceType(GetFirstPC()) == 671)
{
ExecuteScript("ev_footlkr1",OBJECT_SELF);
ExecuteScript("sithsoilder99",OBJECT_SELF);
}
ExecuteScript("a_hatchopen",OBJECT_SELF);
}
Thanks Again Stoffe you are agreat help