file_name
stringlengths
6
86
file_path
stringlengths
45
249
content
stringlengths
47
6.26M
file_size
int64
47
6.26M
language
stringclasses
1 value
extension
stringclasses
1 value
repo_name
stringclasses
767 values
repo_stars
int64
8
14.4k
repo_forks
int64
0
1.17k
repo_open_issues
int64
0
788
repo_created_at
stringclasses
767 values
repo_pushed_at
stringclasses
767 values
WalkAction.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/atom/body/WalkAction.java
/* * see license.txt */ package seventh.ai.basic.actions.atom.body; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.AdapterAction; import seventh.game.entities.PlayerEntity; import seventh.shared.TimeStep; /** * Sprint action * * @author Tony * */ public class WalkAction extends AdapterAction ...
1,384
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
MoveAction.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/atom/body/MoveAction.java
/* * see license.txt */ package seventh.ai.basic.actions.atom.body; import java.util.ArrayList; import java.util.List; import seventh.ai.basic.Brain; import seventh.ai.basic.PathPlanner; import seventh.ai.basic.Zone; import seventh.ai.basic.actions.AdapterAction; import seventh.math.Vector2f; import seventh.shared...
3,030
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
ThrowGrenadeAction.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/atom/body/ThrowGrenadeAction.java
/* * The Seventh * see license.txt */ package seventh.ai.basic.actions.atom.body; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.AdapterAction; import seventh.game.entities.PlayerEntity; import seventh.game.weapons.GrenadeBelt; import seventh.math.Vector2f; import seventh.shared.TimeStep; /** * @...
2,223
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
MeleeAction.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/atom/body/MeleeAction.java
/* * see license.txt */ package seventh.ai.basic.actions.atom.body; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.AdapterAction; import seventh.game.entities.PlayerEntity; import seventh.shared.TimeStep; /** * Melee attack action * * @author Tony * */ public class MeleeAction extends Adapter...
1,583
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
ShootAction.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/atom/body/ShootAction.java
/* * see license.txt */ package seventh.ai.basic.actions.atom.body; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.AdapterAction; import seventh.game.entities.PlayerEntity; import seventh.game.weapons.Weapon; import seventh.shared.TimeStep; /** * Shoot action * * @author Tony * */ public clas...
2,041
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
HeadScanAction.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/atom/body/HeadScanAction.java
/* * The Seventh * see license.txt */ package seventh.ai.basic.actions.atom.body; import java.util.List; import seventh.ai.basic.AttackDirection; import seventh.ai.basic.Brain; import seventh.ai.basic.PathPlanner; import seventh.ai.basic.actions.AdapterAction; import seventh.game.SmoothOrientation; import seventh...
4,193
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
SprintAction.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/atom/body/SprintAction.java
/* * see license.txt */ package seventh.ai.basic.actions.atom.body; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.AdapterAction; import seventh.game.entities.PlayerEntity; import seventh.shared.TimeStep; /** * Sprint action * * @author Tony * */ public class SprintAction extends AdapterActio...
1,727
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
ReloadAction.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/atom/body/ReloadAction.java
/* * see license.txt */ package seventh.ai.basic.actions.atom.body; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.AdapterAction; import seventh.game.entities.PlayerEntity; import seventh.shared.TimeStep; /** * Reload a weapon action * * @author Tony * */ public class ReloadAction extends Ada...
1,233
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
ReloadWeaponEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/ReloadWeaponEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.TargetingSystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.body.ReloadAction; import seventh.game.weapons.Weapon; /...
1,716
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
SurpressFireEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/SurpressFireEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.Locomotion; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.TimedAction; import seventh.game.weapons.Weapon; import seventh.mat...
2,704
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
InvestigateActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/InvestigateActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.MoveToAction; import seventh.game.events.SoundEmittedEvent; import seventh.math.Vector2f; /** * ...
5,036
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
RideVehicleEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/RideVehicleEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import java.util.ArrayList; import java.util.List; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.game.entities.vehicles.Vehicle; /** * @author Tony * */ public cl...
2,079
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
DodgeEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/DodgeEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.TargetingSystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.StrafeAction; import seventh.game.entities.PlayerEntity; ...
1,706
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
AvoidGrenadeActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/AvoidGrenadeActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.MoveToAction; import seventh.game.entities.Entity; import seventh.game.entities.PlayerEntity; impo...
4,814
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
DoNothingEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/DoNothingEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.WaitAction; /** * @author Tony * */ public class DoNothingEvaluator extends ActionEvaluator { ...
1,155
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
SwitchWeaponEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/SwitchWeaponEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import java.util.List; import seventh.ai.basic.Brain; import seventh.ai.basic.TargetingSystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.body.SwitchWeaponAction; import s...
3,768
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
StrategyEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/StrategyEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.teamstrategy.TeamStrategy; /** * @author Tony * */ public class StrategyEvaluator extends ActionEvaluator {...
1,289
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
MoveTowardEnemyEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/MoveTowardEnemyEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.TargetingSystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.game.entities.PlayerEntity; /** * @author Tony * */ public class MoveToward...
2,190
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
StayStillEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/StayStillEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; /** * @author Tony * */ public class StayStillEvaluator extends ActionEvaluator { /** * @param goals * @param c...
1,081
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
CommandActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/CommandActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.Communicator; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; /** * @author Tony * */ public class CommandActionEvaluator extends ActionEvaluator { pr...
1,908
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
MeleeEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/MeleeEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.TargetingSystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.body.MeleeAction; import seventh.game.entities.PlayerEnti...
1,968
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
ActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/ActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; /** * @author Tony * */ public abstract class ActionEvaluator { private double characterBias, keepBias; private Actions go...
1,607
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
Evaluators.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/Evaluators.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import java.util.List; import seventh.ai.basic.Brain; import seventh.game.entities.PlayerEntity; import seventh.game.weapons.Weapon; import seventh.math.Vector2f; /** * @author Tony * */ public class Evaluators { /** * Evaluate the ...
5,759
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
HandleDoorActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/HandleDoorActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import java.util.List; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.game.entities.Door; import seventh.game.entities.PlayerEntity; import seventh.math.Rectangle; /...
2,153
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
TakeCoverEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/TakeCoverEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.Cover; import seventh.ai.basic.TargetingSystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.game.entities.PlayerEntity; import seventh.math....
3,734
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
DegroupActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/DegroupActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import java.util.ArrayList; import java.util.List; import seventh.ai.basic.Brain; import seventh.ai.basic.Locomotion; import seventh.ai.basic.World; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.a...
2,967
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
DefendSelfActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/DefendSelfActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.MoveToAction; import seventh.game.entities.Entity; import seventh.game.weapons.Bullet; import seve...
2,231
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
ShootWeaponEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/ShootWeaponEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.TargetingSystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.ShootAtAction; import seventh.game.weapons.Weapon; /** ...
1,873
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
AttackActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/AttackActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; /** * @author Tony * */ public class AttackActionEvaluator extends ActionEvaluator { /** * @param characterBias ...
1,383
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
GrenadeEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/GrenadeEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.TargetingSystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.body.ThrowGrenadeAction; import seventh.game.entities.Pla...
2,028
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
ExploreActionEvaluator.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/actions/evaluators/ExploreActionEvaluator.java
/* * see license.txt */ package seventh.ai.basic.actions.evaluators; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.actions.atom.body.MoveAction; /** * @author Tony * */ public class ExploreActionEvaluator extends ActionEva...
1,374
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
AICommands.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/commands/AICommands.java
/** * */ package seventh.ai.basic.commands; import java.util.HashMap; import java.util.List; import java.util.Map; import seventh.ai.AICommand; import seventh.ai.basic.Brain; import seventh.ai.basic.DefaultAISystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai....
6,548
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
DefenseObjectiveTeamStrategy.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/teamstrategy/DefenseObjectiveTeamStrategy.java
/* * see license.txt */ package seventh.ai.basic.teamstrategy; import java.util.ArrayList; import java.util.List; import seventh.ai.basic.Brain; import seventh.ai.basic.DefaultAISystem; import seventh.ai.basic.Stats; import seventh.ai.basic.World; import seventh.ai.basic.Zone; import seventh.ai.basic.Zones; import...
11,359
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
CommanderTeamStrategy.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/teamstrategy/CommanderTeamStrategy.java
/* * see license.txt */ package seventh.ai.basic.teamstrategy; import seventh.ai.basic.Brain; import seventh.ai.basic.DefaultAISystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.Actions; import seventh.ai.basic.group.AIGroup; import seventh.game.GameInfo; import seventh.game.PlayerInfo;...
1,993
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
TeamStrategy.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/teamstrategy/TeamStrategy.java
/* * see license.txt */ package seventh.ai.basic.teamstrategy; import seventh.ai.basic.Brain; import seventh.ai.basic.actions.Action; import seventh.game.GameInfo; import seventh.game.PlayerInfo; import seventh.game.Team; import seventh.game.game_types.GameType; import seventh.shared.Debugable; import seventh.share...
1,541
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
CaptureTheFlagTeamStrategy.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/teamstrategy/CaptureTheFlagTeamStrategy.java
/* * see license.txt */ package seventh.ai.basic.teamstrategy; import java.util.ArrayList; import java.util.List; import seventh.ai.basic.AttackDirection; import seventh.ai.basic.Brain; import seventh.ai.basic.DefaultAISystem; import seventh.ai.basic.World; import seventh.ai.basic.actions.Action; import seventh.ai...
13,918
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
OffenseObjectiveTeamStrategy.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/teamstrategy/OffenseObjectiveTeamStrategy.java
/* * see license.txt */ package seventh.ai.basic.teamstrategy; import java.util.ArrayList; import java.util.List; import seventh.ai.basic.Brain; import seventh.ai.basic.DefaultAISystem; import seventh.ai.basic.Stats; import seventh.ai.basic.Zone; import seventh.ai.basic.Zones; import seventh.ai.basic.actions.Actio...
11,924
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
TDMTeamStrategy.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/teamstrategy/TDMTeamStrategy.java
/* * see license.txt */ package seventh.ai.basic.teamstrategy; import seventh.ai.basic.Brain; import seventh.ai.basic.DefaultAISystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.group.AIGroup; import seventh.ai.basic.group.AIGroupAttackAction; import seventh.ai.basic.group.AIGroupDefendAction; ...
4,132
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
Roles.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/teamstrategy/Roles.java
/* * see license.txt */ package seventh.ai.basic.teamstrategy; import seventh.game.PlayerInfo; import seventh.shared.SeventhConstants; /** * A Roles database; keeps track of which roles are assigned to a player. * * @author Tony * */ public class Roles { public enum Role { Capturer, ...
2,850
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
ObjectiveTeamStrategy.java
/FileExtraction/Java_unseen/tonysparks_seventh/src/seventh/ai/basic/teamstrategy/ObjectiveTeamStrategy.java
/* * see license.txt */ package seventh.ai.basic.teamstrategy; import seventh.ai.basic.Brain; import seventh.ai.basic.DefaultAISystem; import seventh.ai.basic.actions.Action; import seventh.ai.basic.actions.WaitAction; import seventh.game.GameInfo; import seventh.game.PlayerInfo; import seventh.game.Team; import se...
3,702
Java
.java
tonysparks/seventh
49
30
7
2014-05-05T22:57:09Z
2019-11-27T01:44:13Z
PacketHandler.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/wrapper/PacketHandler.java
package ehacks.mod.wrapper; import ehacks.mod.packetprotector.MainProtector; import ehacks.mod.util.InteropUtils; import io.netty.channel.ChannelDuplexHandler; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelPipeline; import io.netty.channel.ChannelPromise; /** * * @author radioegor146...
1,646
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Wrapper.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/wrapper/Wrapper.java
package ehacks.mod.wrapper; import java.awt.Toolkit; import java.awt.datatransfer.StringSelection; import net.minecraft.client.Minecraft; import net.minecraft.client.entity.EntityClientPlayerMP; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.multiplayer.WorldClient; import net.minecraft.clie...
1,251
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Statics.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/wrapper/Statics.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.wrapper; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; /** * * @author radioegor...
513
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ModuleCategory.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/wrapper/ModuleCategory.java
package ehacks.mod.wrapper; public enum ModuleCategory { PLAYER("Player"), RENDER("Render"), COMBAT("Combat"), MINIGAMES("MiniGames"), NOCHEATPLUS("NoCheatPlus"), NONE("None"), EHACKS("EHacks"), KEYBIND("Keybind"); ModuleCategory(String name) { this.name = name; } ...
412
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Events.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/wrapper/Events.java
package ehacks.mod.wrapper; import cpw.mods.fml.common.eventhandler.SubscribeEvent; import cpw.mods.fml.common.gameevent.TickEvent; import cpw.mods.fml.common.network.FMLNetworkEvent; import cpw.mods.fml.relauncher.ReflectionHelper; import ehacks.mod.api.Module; import ehacks.mod.api.ModuleController; import ehacks.mo...
11,216
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Main.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/main/Main.java
package ehacks.mod.main; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Maps; import com.google.common.eventbus.EventBus; import cpw.mods.fml.common.FMLCommonHandler; import cpw.mods.fml.common.FMLModContainer; import cpw.mods.fml.common.LoadController; import cpw.mods.fml.common.Loade...
7,632
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Nan0EventRegistar.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/main/Nan0EventRegistar.java
package ehacks.mod.main; import com.google.common.reflect.TypeToken; import cpw.mods.fml.common.Loader; import cpw.mods.fml.common.ModContainer; import cpw.mods.fml.common.eventhandler.*; import cpw.mods.fml.relauncher.ReflectionHelper; import java.lang.reflect.Constructor; import java.lang.reflect.Method; import java...
2,972
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ChatKeyBindsConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/ChatKeyBindsConfiguration.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.config; import com.google.gson.Gson; import ehacks.mod.util.chatkeybinds.ChatKeyBinding; import ehacks.mod.util.cha...
2,172
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
CheatConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/CheatConfiguration.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.config; import com.google.gson.Gson; import ehacks.mod.wrapper.Wrapper; import java.io.BufferedReader; import java....
1,937
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
NBTConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/NBTConfiguration.java
package ehacks.mod.config; import com.google.gson.Gson; import ehacks.debugme.Debug; import ehacks.mod.util.nbtedit.GuiNBTTree; import ehacks.mod.wrapper.Wrapper; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileWriter; import java.io...
2,257
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ConfigurationManager.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/ConfigurationManager.java
package ehacks.mod.config; import java.util.ArrayList; import java.util.List; public class ConfigurationManager { private static volatile ConfigurationManager INSTANCE = new ConfigurationManager(); public List<IConfiguration> configurations = new ArrayList<>(); public ConfigurationManager() { c...
1,255
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
XRayConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/XRayConfiguration.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.config; import com.google.gson.Gson; import ehacks.mod.gui.xraysettings.XRayBlock; import ehacks.mod.wrapper.Wrappe...
1,970
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
IConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/IConfiguration.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.config; /** * * @author radioegor146 */ public interface IConfiguration { void read(); void write(); ...
385
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ModuleStateConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/ModuleStateConfiguration.java
package ehacks.mod.config; import com.google.gson.Gson; import ehacks.mod.api.ModStatus; import ehacks.mod.api.ModuleController; import ehacks.mod.wrapper.Wrapper; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import j...
2,680
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ModIdConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/ModIdConfiguration.java
package ehacks.mod.config; import com.google.gson.Gson; import ehacks.mod.main.Main; import ehacks.mod.wrapper.Wrapper; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileWriter; import java.io.InputStreamReader; /** * * @author radi...
1,915
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
AuraConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/AuraConfiguration.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.config; import com.google.gson.Gson; import ehacks.mod.wrapper.Wrapper; import java.io.BufferedReader; import java....
1,825
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
LocalConfigStorage.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/LocalConfigStorage.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.config; import ehacks.mod.util.InteropUtils; import ehacks.mod.wrapper.Wrapper; import java.io.File; import java.io...
3,057
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
GuiConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/GuiConfiguration.java
package ehacks.mod.config; import com.google.gson.Gson; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.modulesystem.handler.EHacksGui; import ehacks.mod.wrapper.Wrapper; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.DataInputStream; import java.io.File; import java.io.File...
2,933
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
KeyBindConfiguration.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/config/KeyBindConfiguration.java
package ehacks.mod.config; import com.google.gson.Gson; import ehacks.mod.api.ModuleController; import ehacks.mod.wrapper.Wrapper; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileWriter; import java.io...
2,476
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
PacketHandler.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/packetlogger/PacketHandler.java
package ehacks.mod.packetlogger; import ehacks.mod.wrapper.PacketHandler.Side; import io.netty.buffer.ByteBuf; import java.lang.reflect.Field; import java.lang.reflect.Modifier; import java.util.ArrayList; import java.util.List; public class PacketHandler { public static List<String> inBlackList = new ArrayList<...
6,155
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Gui.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/packetlogger/Gui.java
package ehacks.mod.packetlogger; import java.awt.Dimension; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; import java.text.SimpleD...
5,070
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
EditPacketBlackList.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/packetlogger/EditPacketBlackList.java
package ehacks.mod.packetlogger; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.List; import javax.swing.BoxLayout; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing...
3,109
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Tooltip.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/Tooltip.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.gui; /** * * @author radioegor146 */ public class Tooltip { public String text; public int x; publi...
452
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
EHacksClickGui.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/EHacksClickGui.java
package ehacks.mod.gui; import ehacks.mod.api.Module; import ehacks.mod.commands.ConsoleGui; import ehacks.mod.config.ConfigurationManager; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.gui.window.*; import ehacks.mod.util.GLUtils; import ehacks.mod.wrapper.Wrapper; import java.util.ArrayList; import n...
4,131
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Tuple.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/Tuple.java
package ehacks.mod.gui; public class Tuple<X, Y> { public X x; public Y y; public Tuple(X x, Y y) { this.x = x; this.y = y; } }
163
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowActives.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowActives.java
package ehacks.mod.gui.window; import ehacks.mod.api.ModuleController; import ehacks.mod.gui.EHacksClickGui; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.wrapper.Wrapper; public class WindowActives extends SimpleWindow { public WindowActives() { super("Enabled", 2, 300); ...
1,595
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowHub.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowHub.java
package ehacks.mod.gui.window; import ehacks.mod.api.ModStatus; import ehacks.mod.gui.element.SimpleButton; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.modulesystem.handler.EHacksGui; import java.util.ArrayList; import java.util.List; public class WindowHub extends SimpleWindow { privat...
1,596
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowMinigames.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowMinigames.java
package ehacks.mod.gui.window; import ehacks.mod.gui.element.ModWindow; import ehacks.mod.wrapper.ModuleCategory; public class WindowMinigames extends ModWindow { public WindowMinigames() { super("Minigames", 370, 2, ModuleCategory.MINIGAMES); } }
275
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowPlayer.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowPlayer.java
package ehacks.mod.gui.window; import ehacks.mod.gui.element.ModWindow; import ehacks.mod.wrapper.ModuleCategory; public class WindowPlayer extends ModWindow { public WindowPlayer() { super("Player", 94, 2, ModuleCategory.PLAYER); } }
262
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowFakeKeybindings.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowFakeKeybindings.java
package ehacks.mod.gui.window; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.util.keygui.GuiControls; import ehacks.mod.wrapper.Wrapper; public class WindowFakeKeybindings extends SimpleWindow { public WindowFakeKeybindings() { super("Key config", 600, 300); } @Override ...
577
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowFakeChatKeybindings.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowFakeChatKeybindings.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.gui.window; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.util.chatkeybinds.GuiControls; import eha...
802
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowFakeExportConfig.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowFakeExportConfig.java
package ehacks.mod.gui.window; import ehacks.mod.config.LocalConfigStorage; import ehacks.mod.gui.element.SimpleWindow; public class WindowFakeExportConfig extends SimpleWindow { public WindowFakeExportConfig() { super("Export config", 600, 300); } @Override public void setOpen(boole...
418
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowRender.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowRender.java
package ehacks.mod.gui.window; import ehacks.mod.gui.element.ModWindow; import ehacks.mod.wrapper.ModuleCategory; public class WindowRender extends ModWindow { public WindowRender() { super("Render", 278, 2, ModuleCategory.RENDER); } }
263
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowRadar.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowRadar.java
package ehacks.mod.gui.window; import ehacks.mod.gui.EHacksClickGui; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.wrapper.Wrapper; import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; public class WindowRadar extends SimpleWindow { public WindowRadar() { ...
2,400
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowFakeImportConfig.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowFakeImportConfig.java
package ehacks.mod.gui.window; import ehacks.mod.config.LocalConfigStorage; import ehacks.mod.gui.element.SimpleWindow; public class WindowFakeImportConfig extends SimpleWindow { public WindowFakeImportConfig() { super("Import config", 600, 300); } @Override public void setOpen(boole...
418
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowCombat.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowCombat.java
package ehacks.mod.gui.window; import ehacks.mod.gui.element.ModWindow; import ehacks.mod.wrapper.ModuleCategory; public class WindowCombat extends ModWindow { public WindowCombat() { super("Combat", 186, 2, ModuleCategory.COMBAT); } }
263
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowCheckVanish.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowCheckVanish.java
package ehacks.mod.gui.window; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.util.GLUtils; import ehacks.mod.util.ServerListPing17; import ehacks.mod.util.packetquery.StatusResponse; import ehacks.mod.wrapper.Wrapper; import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.InputS...
6,641
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowPlayerIds.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowPlayerIds.java
package ehacks.mod.gui.window; import ehacks.mod.api.ModStatus; import ehacks.mod.gui.Tuple; import ehacks.mod.gui.element.IClickable; import ehacks.mod.gui.element.SimpleButton; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.util.GLUtils; import ehacks.mod.wrapper.Wrapper; import java.util.ArrayList; i...
2,395
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowNoCheatPlus.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowNoCheatPlus.java
package ehacks.mod.gui.window; import ehacks.mod.gui.element.ModWindow; import ehacks.mod.wrapper.ModuleCategory; public class WindowNoCheatPlus extends ModWindow { public WindowNoCheatPlus() { super("NoCheatPlus", 462, 2, ModuleCategory.NOCHEATPLUS); } }
283
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowEHacks.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowEHacks.java
package ehacks.mod.gui.window; import ehacks.mod.gui.element.ModWindow; import ehacks.mod.wrapper.ModuleCategory; public class WindowEHacks extends ModWindow { public WindowEHacks() { super("EHacks", 646, 2, ModuleCategory.EHACKS); } }
263
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
WindowInfo.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/window/WindowInfo.java
package ehacks.mod.gui.window; import ehacks.mod.gui.EHacksClickGui; import ehacks.mod.gui.element.SimpleWindow; import ehacks.mod.wrapper.Wrapper; public class WindowInfo extends SimpleWindow { public WindowInfo() { super("Info", 554, 2); this.setClientSize(88, 48); } @Override ...
1,366
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
XRayAddGui.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/xraysettings/XRayAddGui.java
package ehacks.mod.gui.xraysettings; import ehacks.mod.config.ConfigurationManager; import ehacks.mod.wrapper.Wrapper; import java.util.ArrayList; import java.util.Set; import net.minecraft.block.Block; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.GuiButton; import net.minecraft.client...
12,343
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
XRayGuiSlider.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/xraysettings/XRayGuiSlider.java
package ehacks.mod.gui.xraysettings; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiButton; import org.lwjgl.opengl.GL11; public class XRayGuiSlider extends GuiButton { public float percent; public boolean isClicked; public XRayGuiSlider(int id, int x, int y, String na...
1,928
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
XRayBlock.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/xraysettings/XRayBlock.java
package ehacks.mod.gui.xraysettings; import ehacks.mod.config.ConfigurationManager; import java.util.ArrayList; import net.minecraft.block.Block; public class XRayBlock { public static ArrayList<XRayBlock> blocks = new ArrayList<>(); public int r; public int g; public int b; public int a; pub...
2,418
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
XRayBlockSlot.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/xraysettings/XRayBlockSlot.java
package ehacks.mod.gui.xraysettings; import net.minecraft.block.Block; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiSlot; import net.minecraft.client.renderer.Tessellator; public class XRayBlockSlot extends GuiSlot { int selectedIndex = -1; XRayGui xrayGui; public XR...
1,553
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
XRayGui.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/xraysettings/XRayGui.java
package ehacks.mod.gui.xraysettings; import ehacks.mod.config.ConfigurationManager; import ehacks.mod.modulesystem.classes.vanilla.XRay; import ehacks.mod.wrapper.Wrapper; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.GuiButton; import net.minecraft.client.gui.GuiScreen; public class X...
2,718
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
IClickable.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/element/IClickable.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.gui.element; /** * * @author radioegor146 */ public interface IClickable { void onButtonClick(); }
312
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ModWindow.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/element/ModWindow.java
package ehacks.mod.gui.element; import ehacks.mod.api.Module; import ehacks.mod.api.ModuleController; import ehacks.mod.gui.EHacksClickGui; import ehacks.mod.gui.Tooltip; import ehacks.mod.modulesystem.classes.keybinds.ShowGroupsKeybind; import ehacks.mod.util.GLUtils; import ehacks.mod.wrapper.ModuleCategory; import ...
5,340
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
SimpleWindow.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/element/SimpleWindow.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.gui.element; import ehacks.mod.api.IIncludable; import ehacks.mod.gui.EHacksClickGui; import ehacks.mod.modulesyste...
7,802
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
SimpleButton.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/gui/element/SimpleButton.java
package ehacks.mod.gui.element; import ehacks.mod.gui.EHacksClickGui; import ehacks.mod.modulesystem.handler.EHacksGui; import ehacks.mod.util.GLUtils; import ehacks.mod.wrapper.Wrapper; public class SimpleButton { private final SimpleWindow window; private final IClickable handler; private int sizeX; ...
2,653
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
Module.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/api/Module.java
package ehacks.mod.api; import ehacks.mod.gui.element.IClickable; import ehacks.mod.wrapper.ModuleCategory; import ehacks.mod.wrapper.PacketHandler; import net.minecraftforge.client.event.MouseEvent; import net.minecraftforge.client.event.RenderGameOverlayEvent; import net.minecraftforge.client.event.RenderWorldLastEv...
3,562
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
IIncludable.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/api/IIncludable.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.api; /** * * @author radioegor146 */ public interface IIncludable { boolean shouldInclude(); }
308
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ModuleController.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/api/ModuleController.java
package ehacks.mod.api; import java.util.ArrayList; import java.util.List; public class ModuleController { public static volatile ModuleController INSTANCE = new ModuleController(); public List<Module> modules = new ArrayList<>(); public void enable(Module modue) { this.modules.add(modue); }...
870
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ModStatus.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/api/ModStatus.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ehacks.mod.api; import ehacks.mod.util.GLUtils; /** * * @author radioegor146 */ public enum ModStatus { DEFAULT(123032...
550
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
ModuleManagement.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/modulesystem/handler/ModuleManagement.java
package ehacks.mod.modulesystem.handler; import ehacks.mod.api.Module; import ehacks.mod.api.ModuleController; import ehacks.mod.modulesystem.classes.keybinds.*; import ehacks.mod.modulesystem.classes.mods.ae2.CellViewer; import ehacks.mod.modulesystem.classes.mods.arsmagica2.*; import ehacks.mod.modulesystem.classes....
7,484
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
EHacksGui.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/modulesystem/handler/EHacksGui.java
package ehacks.mod.modulesystem.handler; import ehacks.mod.api.Module; import ehacks.mod.gui.EHacksClickGui; import ehacks.mod.wrapper.ModuleCategory; import ehacks.mod.wrapper.Wrapper; import net.minecraft.item.ItemStack; public class EHacksGui extends Module { public static final EHacksClickGui clickGu...
767
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
SelfRf.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/modulesystem/classes/mods/rftools/SelfRf.java
package ehacks.mod.modulesystem.classes.mods.rftools; import cpw.mods.fml.common.network.simpleimpl.IMessage; import cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper; import ehacks.mod.api.ModStatus; import ehacks.mod.api.Module; import ehacks.mod.util.EntityFakePlayer; import ehacks.mod.util.GLUtils; impor...
12,488
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
CellViewer.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/modulesystem/classes/mods/ae2/CellViewer.java
package ehacks.mod.modulesystem.classes.mods.ae2; import ehacks.mod.api.ModStatus; import ehacks.mod.api.Module; import ehacks.mod.modulesystem.classes.keybinds.OpenAE2ViewerKeybind; import ehacks.mod.util.GLUtils; import ehacks.mod.util.InteropUtils; import ehacks.mod.util.Mappings; import ehacks.mod.util.MinecraftGu...
16,000
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
RedHack.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/modulesystem/classes/mods/projectred/RedHack.java
package ehacks.mod.modulesystem.classes.mods.projectred; import ehacks.mod.api.ModStatus; import ehacks.mod.api.Module; import ehacks.mod.modulesystem.classes.keybinds.GiveKeybind; import ehacks.mod.util.InteropUtils; import ehacks.mod.wrapper.ModuleCategory; import ehacks.mod.wrapper.Statics; import ehacks.mod.wrappe...
2,768
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z
VerticalGui.java
/FileExtraction/Java_unseen/radioegor146_ehacks-pro/src/main/java/ehacks/mod/modulesystem/classes/mods/thaumichorizons/VerticalGui.java
package ehacks.mod.modulesystem.classes.mods.thaumichorizons; import ehacks.mod.api.ModStatus; import ehacks.mod.api.Module; import ehacks.mod.util.InteropUtils; import ehacks.mod.wrapper.ModuleCategory; import ehacks.mod.wrapper.Wrapper; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import net.mine...
2,079
Java
.java
radioegor146/ehacks-pro
24
19
4
2018-07-08T13:24:10Z
2022-12-06T08:08:58Z