I search two scripts (CFG’s),but cant find them,hope you will help me:
Name-script
Switching between two nicks if i press one button.
Bind-Script
A bind-script,where i can write down my binds.
use by pressing of one button
I search two scripts (CFG’s),but cant find them,hope you will help me:
Name-script
Switching between two nicks if i press one button.
Bind-Script
A bind-script,where i can write down my binds.
use by pressing of one button
Name script is simple:-
set name-1 "name FirstName; set name-toggle vstr name-2"
set name-2 "name SecondName; set name-toggle vstr name-1"
set name-toggle "vstr name-1"
bind x "vstr name-toggle"
No idea what you mean by “Bind Script”.
Thx for name script.
I put the code in the notepad and saved it as name.cfg in the etmain directory.
Is that so right?
With a bind script i mean normal binds,which saved in a CFG script,that i can use them when i press a button.
How i can use the .cfg in the game ?
i just add the things i want to the config in my profiles that works for me. i know there is the auto config thing but i dont know how to do that 
one question i have though with that name script is that everytime i do it nothing comes up in capital letters is there any way around this or am i just making a stupid mistake somewhere?
Putting stuff in their own .cfg files is a good idea as the etconfig.cfg file in your profile is maintained by the game and gets overwritten. To make your scripts execute automatically create a file called autoexec.cfg, save it in etmain, and call your scripts from it with exec name.cfg or whatever.
I use a name toggle pretty much like the one shown, and I use capital letters. Seems to work for me, but if not try this instead:-
Create a file called name-1.cfg
// name-1.cfg
name "FirstName"
Create another file called name-2.cfg
// name-2.cfg
name "SecondName"
And then create a file called name.cfg
// name.cfg
set name-1 "exec name-1.cfg; set name-toggle vstr name-2"
set name-2 "exec name-2.cfg; set name-toggle vstr name-1"
set name-toggle "vstr name-1"
bind x "vstr name-toggle"