@botcheck

bWolfie

I'm the man
Messages
850
Points
0
Location
Alberta, Midgard
Github
bWolfie
Emulator
File Name: @botcheck

File Submitter: True Zeal

File Submitted: 30 Apr 2017

File Category: Utility

File Name: @botcheck

File Submitter: True Zeal

File Submitted: 30 Apr 2017

File Cateogry: Utility

Description

A useful command for your Game Masters to help monitor problem "bot" maps.

Runs

the @whomap2 command on a list of specified maps. This allows you to

check classes as well as names, which could be useful for quickly

ignoring a character.

Requires configuration for maps you wish to have it run a check on.

Example Configuration:

Code:
    //--- Sets the list of maps to run @whomap2 on    setarray(.map$[0],        "amatsu",    // Note: Every entry excluding the last one must have a comma!        "prontera",        "odin_tem03"        // Note: Last entry must never have a comma!    );
Download

You can "download" this file from its Pastebin location.

Pastebin: https://pastebin.com/yYuFdLHm

Click here to download this file

 
Last edited by a moderator:
nice one, but i found 2 minor issues, i hope you don't mind me pointing them out.

in bindadcmt you check for gm_level instead of .gm_level

#bot_chk_delay is a perm account variable, but a temp char is way enough here. Personally for cooldown checks i use a function.

//== Function F_CoolDown ====================================
// Cooldown check
//callfunc("F_CoolDown", 5); = 5 seconds cooldown
function script F_CoolDown {
if (@cd + getarg(0) > gettimetick(2))
end;
@cd = gettimetick(2);
return;
}

you could replace the `end` with whatever you need

 
Last edited by a moderator:
Thanks. I use this on my own server so I thought I would release it. Mine looks a bit different as it doesn't have the configs. Sorry about that! Will fix it up.

 
How is it botcheck?

it just simply runs whomap2

and server with 100+ players, this would be completely useless? isn't it?

 
How is it botcheck?

it just simply runs whomap2

and server with 100+ players, this would be completely useless? isn't it?
 
default_heh.gif
  yes true, i though something which detect bots.

 
It's not a botcheck...I just call it that for simplicity. For example, if you have a problem with Hunter/Sniper bots, you can quickly check through your list of maps then head to the player if you think necessary. It may not sound like much, but Game Masters use it on my server and it is incredibly useful for helping their searches.

 
Back
Top