Hey,
This is my FIRST ever script (other than an AFK System), and what it does is adds account tags, like (Manager) ect. It can be account locked or whatever, so do as you please. :] (I currently use it as the ET Adder on Utopia.

)
HTML Code:
//Made by Ork
//Released to the public on 3/9/08
function onActionServerSide( cmd, var, var2 ){
switch( cmd ) {
case "tag":
if (clientr.iset = false ){
player.chat = "I'm not an ET!";
return;
}else{
player.nick = clientr.ettag;
player.chat = "Tag on!";
break;
case "hire":
if (player.account = "emeraldwhelpling")
{
temp.pl = findplayer( var );
if ( temp.pl.level.length() > 0 )
{
temp.pl.clientr.iset = true;
temp.pl.clientr.ettag = var2;
temp.pl.chat = "I was added to the Events Team by "@player.account@"";
player.chat = "I've added "@temp.pl.account@" to the Events Team!";
break;
case "fire":
if (player.account = "emeraldwhelpling")
{
temp.pl = findplayer( var );
if ( temp.pl.level.length() > 0 )
{
temp.pl.guild = "";
temp.pl.clientr.iset = false;
temp.pl.clientr.ettag = "";
temp.pl.chat = "I was fired from ET by "@player.account@"!";
player.chat = "I've removed "@temp.pl.account@" from the Events Team!";
}
}
}
}
}
}
}
//#CLIENTSIDE
function onKeyPressed( code, key )
{
if ( key == 5 )
{
triggerserver("gui",name,"tag");
}
}
function onPlayerChats() {
player.chat.tokenize();
if ( tokens[0] == "/hire" )
{
triggerserver( "weapon", name, "hire", tokens[1], tokens[2] );
}
if ( tokens[0] == "/fire" )
{
triggerserver( "weapon", name, "fire", tokens[1] ) ;
}
}
I can bet you any amount of money Chris will flame me for this.
