// TMW2 Script // // @monsterinfo // Sends @mobinfo with a delay (moved from atcommand.conf) // - script @monsterinfo 32767,{ end; // @monsterinfo uses the same delayer as RSync OnCall: if (@rsync_delay > gettimetick(2)) { dispbottom l("Not doing that to prevent flood."); end; } atcommand("@mobinfo " + implode(.@atcmd_parameters$, " ")); @rsync_delay=gettimetick(2)+rand(2,3); end; OnInit: bindatcmd "monsterinfo", "@monsterinfo::OnCall", 0, 80, 0; end; }