Advertisement
riking

mod_example

Sep 18th, 2011
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. public class mod_recipes extends BaseMod {
  2.     public String Version() { return "Beta 1.3_01, mod version 1.2"; }
  3.     public void AddRecipes() {
  4.         ModLoader.AddRecipe(new ul(sv.o), new Object[]{"ddd", "dsd", "iii", 'd', lr.w, 's', sv.E, 'i', sv.p});
  5.         /**
  6.          * Result: sv.o = Diamond
  7.          * Recipe:
  8.          * ddd = Dirt, Dirt, Dirt
  9.          * dsd = Dirt, Stick,Dirt
  10.          * iii = Iron, Iron, Iron
  11.          * Dirt = lr.w
  12.          * Stick = sv.E
  13.          * Iron = sv.p
  14.          */
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement