• 0

    posted a message on The Twilight Forest (v2.3.5: Wrecking Block)
    Okay, so I'm trying to install the mod to a server, and I can't find the server zip file to put into the server mods folder.
    Posted in: Minecraft Mods
  • 0

    posted a message on The Twilight Forest (v2.3.5: Wrecking Block)
    Dude, so I enter the portal, and What I saw when I got there just Blew my mind, :steve_shocked: This mod is so beautifully made, I wish I could +1 you atleast 100 times,

    Well Done! ^_^ Diamonds for you! :Diamond::Diamond::Diamond:
    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs
    YAY! Got it to work ^_^ and is there a way to change the folder it shows the skins in? Currently it's /mobs and I was looking for the folder with the different Steve textures.
    Posted in: Minecraft Mods
  • 1

    posted a message on Custom NPCs
    What version of forge am I supposed get? None of them work for me, I get a black screen. :(
    Posted in: Minecraft Mods
  • 0

    posted a message on [REQ] random fog mod
    Actually this mod could kind of be done on the ground, it would be easier to just make a really translucent block that you can walk through, and have it spawn in random chunks.
    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on Where in the code does minecraft color liquid blocks?
    Quote from ziddia

    ...actually, if you tried out a few hex codes, it would have answered your question. That's the only method Minecraft provides for coloring the liquids. Other than that, there's no code for it, it's all textures.


    Exactly. :) Or what you could do,watch the "outdated video", and make both of the files. then instead of changing the color in those files(you can't), you would need to extend your BlockFlowing and BlockStationary classes to a new file such as BlockFluidLiquid, copy and paste the code from BlockFluid into your file, and when you see this code:

     public int colorMultiplier(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
    {
    if (blockMaterial == Material.water)
    {
    int i = 0;
    int j = 0;
    int k = 0;
    
    for (int l = -1; l <= 1; l++)
    {
    for (int i1 = -1; i1 <= 1; i1++)
    {
    int j1 = par1IBlockAccess.getBiomeGenForCoords(par2 + i1, par4 + l).waterColorMultiplier;
    i += (j1 & 0xff0000) >> 16;
    j += (j1 & 0xff00) >> 8;
    k += j1 & 0xff;
    }
    }
    
    return (i / 9 & 0xff) << 16 | (j / 9 & 0xff) << 8 | k / 9 & 0xff;
    }
    else
    {
    return 0xffffff;
    }
    } 


    Everywhere you see 0x (number of F's) replace that with your hex code. then go into your custom blockStationary file, and change your material.lava, to material.water . Same with BlockFlowing.
    Posted in: Modification Development
  • 0

    posted a message on Where in the code does minecraft color liquid blocks?
    I know how, but it might be hard to work on getting it to flow and such, PM me if you're still interested because it might be confusing.

    Edit: Heehee sorry, if you have a custom biome, or dimension or something in that nature, in BiomeGen(Mod Name) then you would just add this in the area where you put your biome decorators, topblock etc.

     this.waterColorMultiplier = 0x(CustomHexCode); 
    Posted in: Modification Development
  • 0

    posted a message on [1.4.7] Phobophobe's Mods!
    Quote from Jochmen

    It's rather unclear, i myself wanted to try out Desperationfood for my ModloaderMP server (you know, noob's gotta eat) but it errored upon starting up, though it was in fact compatible.

    ...I think.

    Ahaha, noob's gotta eat. :P yeah, I'm asking so I can find out which build for forge I have to get, a lot of them end up black screening my game, -_-
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.4.7] Phobophobe's Mods!
    One question, is Dessertcraft updated for 1.3.1? or is it 1.2.5?
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.4.7] Phobophobe's Mods!
    I was looking though, and once I got to dessertcraft, I was all: Oh wow, seems nice.. and when I clicked the spoiler for the screenshots my eyes nearly melted xD I was all: OH MY SUGARLAND OF SWEET GOODNESSS!!!!! Heehee, yes...I'm getting that one. ^_^
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] Colored Lights Mod
    Zmod, how did you code that? :o
    Posted in: Mods Discussion
  • 0

    posted a message on [1.4.5][Forge] Ducky's Coloured Lights Mod V0.1!
    Oh...my...GOSH!!!! This is amazing!!! but can you actually tell me the coding for the shadow editing?? This Is Just what I need. :D
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.2.5] The Forbidden Forest (Floating Islands, Wizard, Fortresses)
    I'm gonna attempt to make a dimension using your tutorials. ^_^ Anyways, This mod is beautiful!!! :wub:
    Posted in: Minecraft Mods
  • To post a comment, please .