• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

/ban command help

Gazzy

Server Owner
Joined
Sep 25, 2013
Messages
55
Reaction score
3
Hey guys,
I need some help with the command /ban in tfs 0.2.15. Could someone tell me how to use it and give an example please? Thanks
 
Example;
/ban playername, action, reason, ipbanishmentboolean

Simple ban;
/ban Gazzy, ban, botting

I am not sure about ipban, but it's
/ban Gazzy, ban, botting, yes
or
/ban Gazzy, ban, botting, true

Possible actions;
Code:
 if (action == "notation") return 0;
        else if (action == "name report" || action == "namelock") return 1;
        else if (action == "ban" || action == "banishment") return 2;
        else if (action == "namelock + ban" || action == "namelock + banishment" || action == "name report + ban" || action == "name report + banishment") return 3;
        else if (action == "ban + final warning" || action == "banishment + final warning") return 4;
        else if (action == "namelock + ban + final warning" || action == "namelock + banishment + final warning" || action == "name report + ban + final warning" || action == "name report + banishment + final warning") return 5;
        else if (action == "statement report") return 6;
        else if (action == "delete" || action == "deletion") return 7;
 
Back
Top