This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AntiCheat language file | |
# Please report any bugs: http://dev.bukkit.org/server-mods/anticheat/ | |
alert: | |
- '&player has just entered the &level hack level.' | |
- '&player''s last failed check was: &check.' | |
- 'Type ''/anticheat report &player'' for more information.' | |
warning: | |
player_warning: | |
- '[AntiCheat] Hacking is not permitted.' | |
- '[AntiCheat] If you continue to hack, action will be taken.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import net.minecraft.server.v1_4_R1.CrashReport; | |
import net.minecraft.server.v1_4_R1.MinecraftServer; | |
import org.apache.commons.lang.exception.ExceptionUtils; | |
import org.bukkit.Bukkit; | |
import org.bukkit.craftbukkit.v1_4_R1.CraftServer; | |
import org.bukkit.plugin.Plugin; | |
import org.bukkit.plugin.PluginLogger; | |
import org.bukkit.plugin.java.JavaPlugin; | |
import org.json.simple.JSONObject; | |
import org.json.simple.JSONValue; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BlockLocation { | |
private double x; | |
private double y; | |
private double z; | |
public BlockLocation(Block block) { | |
x = block.getLocation().getX(); | |
y = block.getLocation().getY(); | |
z = block.getLocation().getZ(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Not use complete sentences. | |
2) Use the enter button as a period. | |
3) Use txt spch. | |
4) Use away messages (especially auto-away). | |
5) Ping people who don't need your attention. | |
6) Make 'your mom' jokes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AntiCheat configuration file | |
# Please report any bugs: http://dev.bukkit.org/server-mods/anticheat/ | |
# Server-specific settings | |
server: | |
# An identifiable name for this server | |
name: 'server-1' | |
# Database settings | |
database: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
API | |
- Added Groups instead of levels | |
Logging | |
- API logs more info to files | |
- File and console toggles available via command | |
- More details when kicking | |
- More debug information | |
- Notice permission | |
Fixes | |
- Respect potions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AntiCheat language file | |
# Please report any bugs: https://github.com/gravitylow/AntiCheat/issues | |
alert: | |
- '&player has just entered the &group hack group.' | |
- '&player''s last failed check was: &check.' | |
- 'Type ''/anticheat report &player'' for more information.' | |
warning: | |
player_warning: | |
- '[AntiCheat] Hacking is not permitted.' | |
- '[AntiCheat] If you continue to hack, action will be taken.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Not production code yet. Still experimental and needs a lot of work. | |
package net.gravitydevelopment.anticheat.util; | |
import net.gravitydevelopment.anticheat.AntiCheat; | |
import org.bukkit.Server; | |
import org.bukkit.entity.Player; | |
import org.bukkit.event.HandlerList; | |
import org.bukkit.event.Listener; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gater12-t3 | |
Lolmewn-t2 | |
zeusallmighty11-t1 | |
zeusallmighty11-t3 | |
Assult-t2 | |
MylesIsCool-t2 | |
DevRoMc-t3 | |
ase34-t3 | |
evilmidget38-t3 | |
Ribesg-t2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I'm not a python developer | |
import json | |
import urllib | |
import urllib2 | |
from subprocess import call | |
url = "https://tenjava.com/api/participants?repos=1"; | |
devnull = open('/dev/null', 'w') |
OlderNewer