• 0

    posted a message on Port Forwarding error.
    I haven't edited anything in my config files, and I've made sure that my port is 25565. Yes, I've also made sure my server was running while checking to see if the port works. And no, there were no error messages involving a failed port or failed binding of the port.

    I even got this in result:

    2014-07-19 15:08:23 [INFO] [Minecraft-Server] Starting Minecraft server on *:25565
    Posted in: Server Support and Administration
  • 0

    posted a message on Port Forwarding error.
    Hello, I've port forwarded several servers before, but this time I'm stumped. I seriously have no idea what I'm doing wrong.

    I'm using a WNDRW4500v2 (Netgear 900) router, my ISP is Brightouse Networks (Time Warner), and my OS is Windows 7.

    Ever since I got my new router, I haven't been able to port forward anything. Even though I've done this several times before, I've had to go watch tutorials on YouTube and still nothing works. I'm using Norton Anti-Virus 360, and I've made sure that my firewall (or Windows Firewall) is not effecting this in any way.

    After port forwarding (which should be working), I go to www.canyouseeme.org to see if my port is open, I always get the same error. "Connection timed out" I check to make sure I'm using the correct port, I have my internal IP address correct, TCP/UDP activated, but still nothing. And yes, I've followed http://portforward.com/english/routers/port_forwarding/Netgear/WNDR4500v2/Minecraft_Server.htm SEVERAL times.

    This is extremely frustrating for me, as all I want to do is play with my girlfriend on my Hexxit server, and I seriously don't want to resort to Hamachi.
    Posted in: Server Support and Administration
  • 0

    posted a message on Looking for an Co-Owner and good builders for a RP server project!
    Are there any other spots open other than builder currently? I would prefer to be a Moderator of some sort. But anyways here is my app:

    Age: I am thirteen, shortly fourteen.

    Skype: walrus777115777

    Why should i choose you? I believe you would find a great use of me in your server. I am good at moderating and keeping players calm.

    Will you play in the server afterwards? I might. It truly will depend on whether or not I like the server.

    Do you have any roleplaying skills?: Role playing skills? Well I have experience with role playing servers if that's what you mean.

    Screenshots of your past works: I'm not the greatest builder I admit. This is a casino me and the owner built on a server I'm currently Administrator on:
    Posted in: Server Recruitment
  • 0

    posted a message on Mo' Walrusez V.04 InDev (Requires Mod Loader)
    Hello everyone! This is my first mod I just started making it not that long ago. I have only a few tools and I plan on adding new features every Friday (Kind of like Secret Friday :D ). I plan on adding new mobs (walrus' are the only one I am currently working on) and I have a lot in plan on my mod like new tools, blocks, ores, mobs, and new generated structures and a lot more :) .

    I appreciate all ideas and will consider all of them. I hope you like my mod! :D


    Installing my mod:

    My mod is a very basic installation, all you need is Mod Loader!

    1. If using Windows go to your start menu and type in %appdata% (you have to go to run... if you are using Windows XP), then go to the file called Roaming (you don't have a Roaming file if using Windows XP)

    2. Open up the file .minecraft then open bin, then open minecraft (the folder inside bin). You will need some sort of archiving program, WinWar or 7zip will work.

    3. After opening minecraft with your archiving program of choice drag all the files from my mod into the open minecraft file.

    4. Next you have to install Mod Loader. Install it the same way you would with my mod.

    5.Delete the file called "Meta-INF" , it prevents you from modifying any files inside Minecraft, to go in-def, if you didn't delete it when you start up Minecraft you would get a black screen immediately.

    6. Play Minecraft! :D


    Download link: Direct "non adf.ly" http://www.mediafire.com/?lqcnu7mos5dbvo1 Adfl.y (use this one to support the modder) http://adf.ly/8xCtZ


    Thanks for downloading, enjoy! :D :Bacon:
    Posted in: WIP Mods
  • 0

    posted a message on [ModLoader]Zid's Tutorials - Not Just ModLoader[12/04/2011]
    Please help me! I've been searching forever on how to fix this but I can't figure out how! Every time I try to test my mod I always get an error saying it can't find the png file! Where do I put the file please help!!!


    Mods loaded: 2
    ModLoader 1.2.5
    mod_ObsidionDiamondSword 3.14159265

    Minecraft has crashed!
    ----------------------

    Minecraft has stopped running because it encountered a problem.




    --- BEGIN ERROR REPORT a65d89a --------
    Generated 5/19/12 4:02 PM

    Minecraft: Minecraft 1.2.5
    OS: Windows XP (x86) version 5.1
    Java: 1.7.0_04, Oracle Corporation
    VM: Java HotSpotâ„¢ Client VM (mixed mode), Oracle Corporation
    LWJGL: 2.4.2
    OpenGL: ATI Radeon HD 5400 Series version 4.0.9901 Compatibility Profile Context, ATI Technologies Inc.

    java.lang.RuntimeException: java.lang.Exception: Image not found: /items/ObsidianDiamondSword.png
    at net.minecraft.src.ModLoader.registerAllTextureOverrides(ModLoader.java:1451)
    at net.minecraft.src.ModLoader.onTick(ModLoader.java:1104)
    at net.minecraft.src.EntityRendererProxy.updateCameraAndRender(EntityRendererProxy.java:21)
    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:922)
    at net.minecraft.client.Minecraft.run(Minecraft.java:801)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.Exception: Image not found: /items/ObsidianDiamondSword.png
    at net.minecraft.src.ModLoader.loadImage(ModLoader.java:1024)
    at net.minecraft.src.ModLoader.registerAllTextureOverrides(ModLoader.java:1443)
    ... 5 more
    --- END ERROR REPORT 79ce356d ----------





    package net.minecraft.src;
    import java.util.Random;

    public class mod_ObsidianDiamondSword extends BaseMod
    {

    public static final Item ObsidianDiamondSword = new ItemSword(2102, EnumToolMaterial.ObsiDiamondSword).setItemName("Trains");


    public void load()
    {

    //ObsidianDiamondSword
    ObsidianDiamondSword.iconIndex = ModLoader.addOverride("/gui/items.png" , "/items/ObsidianDiamondSword.png");
    ModLoader.addName(ObsidianDiamondSword, "Obsidian Diamond Sword");
    ModLoader.addRecipe(new ItemStack(ObsidianDiamondSword,1), new Object[]{
    "&!&", "&*&", " X ", Character.valueOf('&'), Block.obsidian,
    Character.valueOf('*'), Item.swordDiamond,Character.valueOf('X') ,Item.stick ,
    Character.valueOf('!'), Item.diamond});



    }




    public String getVersion()
    {
    return "3.14159265";
    }


    }
    Posted in: Tutorials
  • 0

    posted a message on The Hunger Games came out of nowhere!
    Has anyone noticed that ever since the movie release (The Hunger Games) it was never really talked about and no one at all knew about it? I know there were books before but where did it come from? It just seemed to pop up out of nowhere after the movie came out. Everyone was happy about The Hunger Games but I had no idea what this movie was about and never even heard about it. It seemed like I said, kind of "unseen" until the movie came out. I just find it odd that I never heard of it before. And it's kind of funny how it was so talked about since the movie, like it would always come up in any and every conversation.

    I just get bored and start typing about random things on my mind and things that interest me so don't mind me xD
    Posted in: Culture, Media & Arts
  • 0

    posted a message on What Biome do you prefer to spawn in?
    Mine is a mix of plains and forest. Because a lot of easy wood in the forest and hopefully some sheep in the plains and also an easy building area in the plains :D
    Posted in: Survival Mode
  • 0

    posted a message on Minecraft login servers are down, please stop making topics.
    Yeah I had the same problem when logging on, one of the plugins on my server has been kind of messing up lately so I came to check on it and I couldn't log in.
    Posted in: Legacy Support
  • 0

    posted a message on Puncraft a new Mcmmo, PvP server
    Puncraft is a new Mcmmo Skyrim Role play server, it has factions, PvP, Marriages, and more cool stuff! We have very nice staff, looking for more staff, and also have a cool spawn! Join now at 71.28.240.83

    Have fun!

    If you want to apply staff copy and paste this and flll it out.

    How old are you?:
    Do you like the server?:
    Are you good with plugins?:
    How mature are you? 1-10:
    Have you been banned before?:
    If you have been banned tell us why (Leave blank if you haven't):
    What rank would you like to be?
    What you can do to help the server?:
    Why do you want to be staff?:

    Slots for staff available:
    Owner: None
    Co-Owner: None
    Admin: Two
    Moderator: 3
    Builder: 3


    No one will earn Op or Creative . So don't ask or apply for it or it will automatically be rejected.
    Posted in: Minecraft Survival Servers (archive)
  • To post a comment, please .