[Now in English] 切换为简体中文
Starting out as a mod for Minecraft 1.5, Crafting Dead has been around for many years now. It was built on F3RULLO's Gun Mod, one of the first gun mods on the Minecraft scene and has been growing ever since, constantly being enhanced with more content and features.
Crafting Dead adds in a multitude of zombies and guns, along with cosmetics and medical supplies. The guns are fully customisable with attachments and paints; they are competitive ready with accurate hit detection, latency compensation and recoil. Medical supplies include first aid kits, adrenaline and bandages enabling you to quickly escape, attack and recover from combat situations.
Pull requests are always welcome, however please adhere to the following guidlines:
- Use the Google style guide
- Add
@Overrideannotations where appropriate to make overrides explicitly clear - Rename semi-obfuscated variables (e.g. p_77624_1_) to meaningful names
- Turn on compiler warnings; resolve all of them (raw types, resource leaks, unused imports, unused variables etc.)
- Always use
thiskeyword to make code as clear/readable as possible and to avoid ambiguous naming conflicts (which can go without notice) - Always use curly braces
{}around if statements to make them clearer and easily expandable, e.g.
if(foo) {
bar();
}instead of
if(foo)
bar();- Names of fields being used as constants should be all upper-case, with underscores separating words. The following are considered to be constants:
- All
static finalprimitive types (Remember that all interface fields are inherently static final). - All
static finalobject reference types that are never followed by "." (dot). - All
static finalarrays that are never followed by "[" (opening square bracket).
Examples of constants:
MIN_VALUE, MAX_BUFFER_SIZE, OPTIONS_FILE_NAME
Examples of non-constants:
logger, clientConfig
Crafting Dead is licensed under GPL v3.0, see LICENSE.txt for more information. You may use Crafting Dead in modpacks, reviews or any other medium as long as you obide by the terms of the license. Commercial use of the mod must be authorised by the senior leadership team.
Please contact [email protected] if you'd like authorisation.
- Sm0keySa1m0n
- Arzio
- F3RULLO14
YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler, and YourKit YouMonitor.


