summaryrefslogblamecommitdiff
path: root/npc/commands/ipcheck.txt
blob: f24acf010d5efae924a7883d02f78b5c084691c7 (plain) (tree)
1
2
3
4
5
6


                                     
                         
                         
  






                                       



                                                       

                                                               

        

                                     
                                                     
     


                                 





                                                                                                                                                                                                                                      
                                                                                   



                                    
       
                                                        
                                                     

        























                                                                      
                                                           


        
// TMW2 script
// Author: Jesusalva <admin@tmw2.org>
//
// @ipcheck <player_name>
// #ipcheck <player_name>
//
// Returns user IP


-	script	@ipcheck	32767,{
    end;

OnCall:
    if (.@atcmd_numparameters == 0)
    	.@request$ = strcharinfo(0);
    else
    	.@request$ = implode(.@atcmd_parameters$, " ");
    dispbottom strip(.@request$)+": IP "+getcharip(.@request$);
    //dispbottom strcharinfo(0)+": IP "+getcharip(.@request$);
    end;

OnBan:
    if (.@atcmd_numparameters == 0) {
    	dispbottom col("Syntax: #ipban <reason>", 1);
    }
    // Do not allow banning staff
    if (is_staff())
        end;
    .@target$=strcharinfo(0);
	.@reason$ = implode(.@atcmd_parameters$, " ");
    dispbottom col(l("You were permanently banned by the GM Team."), 1);
    sleep2(200);
    query_sql "INSERT INTO ipbanlist (list,btime,rtime,reason) VALUES ('"+getcharip(.@target$)+"','"+gettime(7)+"-"+gettime(6)+"-"+gettime(5)+" "+gettime(3)+":"+gettime(2)+":"+gettime(1)+"','2030-01-01 00:00:00','"+.@reason$+"')";
    logmes("was IP-Blocked, and will never connect again."), LOGMES_ATCOMMAND;
    consoleinfo("%s was IP-Banned from the server. (R: %s)", .@target$, .@reason$);
    sleep2(2000);
    charcommand("@kick "+.@target$);
    end;

OnInit:
    bindatcmd "ipcheck", "@ipcheck::OnCall", 60, 100, 0;
    bindatcmd "ipban", "@ipcheck::OnBan", 99, 100, 1;
    end;
}

// TMW2 script
// Author: Jesusalva <admin@tmw2.org>
//
// @checkidle <player_name>
// #checkidle <player_name>
//
// Returns user idle time in seconds.
// Useful when the game prohibits warping to player.


-	script	@checkidle	32767,{
    end;

OnCall:
    if (.@atcmd_numparameters == 0)
    	.@request$ = strcharinfo(0);
    else
    	.@request$ = implode(.@atcmd_parameters$, " ");
    dispbottom strip(.@request$)+" idle time: "+checkidle(.@request$);
    //dispbottom strcharinfo(0)+": IP "+getcharip(.@request$);
    end;

OnInit:
    bindatcmd "checkidle", "@checkidle::OnCall", 60, 80, 0;
    end;
}