Thanks to visit codestin.com
Credit goes to github.com

Skip to content

2DabaX9/crafting-dead

 
 

Repository files navigation

Crafting Dead Logo

[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.

Discord

Discord Banner 2

Contributing

Pull requests are always welcome, however please adhere to the following guidlines:

  • Use the Google style guide
  • Add @Override annotations 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 this keyword 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:
  1. All static final primitive types (Remember that all interface fields are inherently static final).
  2. All static final object reference types that are never followed by "." (dot).
  3. All static final arrays 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

License

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.

Credit

  • Sm0keySa1m0n
  • Arzio
  • F3RULLO14

YourKit

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.

YourKit Logo

About

The Minecraft zombie survival mod.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.9%
  • GLSL 0.1%