• 0

    posted a message on [Creating Mods] makeMyItem Tutorials [2/2/11]
    Quote from democromentor »
    Food tutorial please?


    It's really easy:

    # [name] #
    ID=[ID number]
    Uses=[number of uses (usually 1)]
    &Heal,[number of hearts (not sure if it's whole or half hearts, you test it) the food heals]
    [recipe and smelting to/from other stuff is described in the first posts]
    ##
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] makeMyItem Tutorials [2/2/11]
    Quote from Link107 »
    Sorry to bother you again but my HolyPick wont work i think because i don't know where to place the .item file or should it be .class or .properties anyway should i place it in hte jar or in a folder outside of minecraft.jar(the triman folder in minecraft.jar or the mod folder in .minecraft)
    Any-who should i put my .png for my holypick and its .item class in a seperate folder if so where sorry to bother you but you seem like the only person to ask


    Code is here for checking

    # HolyPick #
    ID=500
    // Recipe
    ?xYx, ! , ! ,1
    *X=278
    *!=280
    *Y=285
    ##
    // Properties
    Type=Pickaxe
    Uses=900
    Dura=900
    Speed=50
    MaxStack=1
    Effective,1,3,4,12,13,14,15,16,24,41,42,43,44,45,48,49,61,62,67,71,73,74,87
    Effective 13,49,61,62,67,73,74
    ##



    so is the .png just to see the size


    I Personaly think it looks cool but you be the judge peeps


    1. Use capital X in line 4 to match with line 5, or small x in line 5 to match with line 4
    2. Save text file as .item in %appdata%\roaming\.minecraft\mod\items
    3. Save .png in %appdata%\roaming\.minecraft\bin\minecraft.jar\triman\items
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] makeMyItem Tutorials [2/2/11]
    Quote from Meeplord »
    Yes, i followed all of the instructions but i got a black screen, i would really appreciate it if you tell me what i did wrong
    Heres what i had:
    # Cow Fart #
    ID=4000
    // Recipe
    ?XY ,YX , ,4
    *X=3
    *Y=12
    ##
    // Properties
    Type=Fuel
    FuelPower=205
    MaxStack=10
    ##

    Help?


    # Cow Fart #
    ID=4000
    // Recipe
    ?XY ,YX ,   ,4
    *X=3
    *Y=12
    ##
    // Properties
    Type=Fuel
    FuelPower=205
    MaxStack=10
    ##


    Two spaces were missing from line 4, parameter 3, so it said:
    Parameter 1(Top crafting line): X in slot 1, Y in slot 2, nothing in slot 3
    Parameter 2(Middle crafting line): Y in slot 2, x in slot 2, nothing in slot 3
    Parameter 3(Bottom line): nothing in slot 1, slot 2 does not exist, slot 3 does not exist
    Parameter 4(result): make 4 items
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] makeMyItem Tutorials [2/2/11]
    Quote from TechnoMysterio »
    # KottFars #
    ID=701
    Uses=1
    &Heal,2
    //Recipe
    ?   , M ,  ,2
    *M=320
    ##
    //Properties
    SmeltTo=701,2
    ##

    and
    # Stekt KottFars #
    ID=702
    Uses=1
    &Heal,3
    //Properties
    SmeltFrom=701,2
    MaxStack=1
    ##


    If that doesn't solve it, I don't know what to do. I tested it myself and it worked. :SSSS:


    There's a mistake in this recipe:

    # KottFars #
    ID=701
    Uses=1
    &Heal,2
    //Recipe
    ?   , M ,   ,2
    *M=320
    ##
    //Properties
    SmeltTo=701,2
    ##


    One space was missing from line 6, parameter 3, so it said:
    Parameter 1(Top crafting line): nothing in slot 1, nothing in slot 2, nothing in slot 3
    Parameter 2(Middle crafting line): nothing in slot 2, M in slot 2, nothing in slot 3
    Parameter 3(Bottom line): nothing in slot 1, nothing in slot 2, slot 3 does not exist
    Parameter 4(result): make 2 items
    Posted in: Tutorials
  • 0

    posted a message on [V1.6] Xie's Farming Mod v1.4
    Not sure if this should go in here or the cooking mod, but you could add a salad recipe like this:

    [] :Leaves: []
    :////: [] :RedShroom:
    [] :chestfront: []

    ( :Leaves: = lettuce, :////: = corn, :RedShroom: = tomato and :chestfront: = bowl)

    so that there would be more uses to these foods.
    Posted in: Minecraft Mods
  • To post a comment, please .