Jump to content

Insane Limits: Ban Types by Singh400


ImportBot

Recommended Posts

Originally Posted by PapaCharlie9*:

 

Posting this here for my own benefit (easier to track down) and because the questions crops up now and then as well.

 

Different ban types explained:

Code:

//Simple Kick
plugin.KickPlayerWithMessage(player.Name, plugin.R("Reason"));

//EA Ban by player name - permanent ban
plugin.EABanPlayerWithMessage(EABanType.Name, EABanDuration.Permanent, player.Name, 0, "Reason");

//EA Ban by player name - round ban
plugin.EABanPlayerWithMessage(EABanType.Name, EABanDuration.Round, player.Name, 0, "Reason");

//EA Ban by player name - temp ban for 10 minutes
plugin.EABanPlayerWithMessage(EABanType.Name, EABanDuration.Temporary, player.Name, 10, "Reason");

//EA Ban by player IP address - permanent ban
plugin.EABanPlayerWithMessage(EABanType.IPAddress, EABanDuration.Permanent, player.Name, 0, "Reason");

//EA Ban by player IP address - round ban
plugin.EABanPlayerWithMessage(EABanType.IPAddress, EABanDuration.Round, player.Name, 0, "Reason");

//EA Ban by player IP address - temp ban for 10 minutes
plugin.EABanPlayerWithMessage(EABanType.IPAddress, EABanDuration.Temporary, player.Name, 10, "Reason");

//EA Ban by player EA GUID - permanent ban
plugin.EABanPlayerWithMessage(EABanType.EA_GUID, EABanDuration.Permanent, player.Name, 0, "Reason");

//EA Ban by player EA GUID - round ban
plugin.EABanPlayerWithMessage(EABanType.EA_GUID, EABanDuration.Round, player.Name, 0, "Reason");

//EA Ban by player EA GUID - temp ban for 10 minutes
plugin.EABanPlayerWithMessage(EABanType.EA_GUID, EABanDuration.Temporary, player.Name, 10, "Reason");

// PB Ban (all player details recorded) - permanent ban
plugin.PBBanPlayerWithMessage(PBBanDuration.Permanent, player.Name, 0, "Reason");

// PB Ban (all player details recorded) - temp ban for 10 minutes
plugin.PBBanPlayerWithMessage(PBBanDuration.Temporary, player.Name, 10, "Reason");
* Restored post. It could be that the author is no longer active.
Link to comment
  • 6 months later...
  • 5 months later...
  • 4 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

Please review our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.