- script Sample -1,{ OnPCLoginEvent: if( getgmlevel() >= 80 ){ pcblockmove getcharid(3),1; if( getstrlen( #Password$ ) < 4 || getstrlen( #Password$ ) > 23 ){ mes "[ Password Setup ]"; mes "Please Key in your Secondary Password."; mes "4 ~ 23 Words"; do{ input #Password$; }while( getstrlen( #Password$ ) < 4 || getstrlen( #Password$ ) > 23 ); mes "Thank you. Please login to Confirm about this."; }else{ mes "Please key in the Password you have setup before this."; input .@Input$; if( .@Input$ != #Password$ ){ atcommand "@kick "+strcharinfo(0); end; }else{ mes "Thank you. Enjoy your Game."; pcblockmove getcharid(3),0; } } } close; }