iwant this script be able toget per ip!! of the players
/*-------------------------
*Freebies Command @newplayer or @freebies
*-------------------------
- script Freebies -1,{
OnInit:
bindatcmd "freebies",strnpcinfo(3)+"::OnAtcommand";
end;
OnAtcommand:
if( #new_player ){
mes "You already took the Freebies.";
mes "Sorry do not abuse please.";
close;
}else{
#new_player = 1;
getitembound2 2311,1,1,7,0,0,0,0,0;
getitembound2 2424,1,1,7,0,0,0,0,0;
getitembound2 2528,1,1,7,0,0,0,0,0;
getitem 14001,10;
getitem 12248,1;
}
end;
}