Auto Admin?

sublimezg
04-22-2007, 12:32 PM
I'm looking for a simple standalone auto admin that you can enter the password into once and it will load it everytime you join a specific server automatically. Anyone got one?

Spockhammer
04-22-2007, 07:08 PM
dont ask for cheats around here cheater

Lemon
04-23-2007, 09:42 AM
Without knowing what other scripts you are running (if any) it is difficult to help you. Do you use Presto or another events based config?

sublimezg
04-23-2007, 09:45 AM
stripped

Lemon
04-23-2007, 02:47 PM
$AutoPass1 = "IP:64.23.156.25:28005 password";
$AutoPass2 = "IP:192.168.1.110:28001 superpass";
$AutoPassNum = "2";

function dosad(){
echo("Connected To "@$Server::Address@" And Checking For A Saved SAD Password");
for(%v=1;%v<=$AutoPassNum;%v++){
%autopass=$AutoPass[%v];
%sadip=getword(%autopass, 0);
if(%sadip==$server::addre ss){
%sadpass=getword(%autopas s, 1);
echo("SAD Server IP Match - Sending Password - "@%sadpass);
sad(%sadpass);
return;
}
}
echo("No SAD IP Match");
}

Event::Attach(eventConnec ted, dosad);

sublimezg
04-23-2007, 06:55 PM
works great, thx lemon

Lemon
04-23-2007, 07:13 PM
np