diff options
-rw-r--r-- | npc/commands/ipcheck.txt | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/npc/commands/ipcheck.txt b/npc/commands/ipcheck.txt index a610c84cd..a1f9345c2 100644 --- a/npc/commands/ipcheck.txt +++ b/npc/commands/ipcheck.txt @@ -20,6 +20,34 @@ OnCall: end; OnInit: - bindatcmd "ipcheck", "@ipcheck::OnCall", 80, 80, 1; + bindatcmd "ipcheck", "@ipcheck::OnCall", 80, 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, 1; + end; +} + |