• 0

    posted a message on Titans Of Bokohaven 1.6.2 RPG warring nations with custom races
    The server has been relaunched after fixes have been made to prevent abuse.
    Posted in: PC Servers
  • 0

    posted a message on Titans Of Bokohaven 1.6.2 RPG warring nations with custom races
    IP: 193.0.159.107:25597
    www.titansofbokohaven.tk


    The shields and swords clash to the rhythm of the war drums as the Great Continents once more send their warriors to their death. The ninjas leap high and far, stabbing and poisoning the enemy. The Orcs use their large bodies to smash the enemy away and crash them with hard blows. The elves stand back watching the chaos caused by the rain of their arrows overhead killing everyone and everything. The Barbarians simply kill, they do not need special weapons and magic, they just slaughter the enemy like cattle and the dwarfs use their strong tools to hack the enemy away all day long. Yet one by one the the strongest, fastest and deadliest warriors in the land lose their hopes of a better life when a gleaming sword is thrust through their flesh and their head falls limp on the ground.

    They were the greatest fighters of their time, and yet they were so easily dispatched of by the other nations.

    Now though, the time of war has come to an end, and a new more fierce battle is erupting between the Continents races. No longer can you sleep under the stars, or sit down with your family, because they will get you. The races have spent hundreds of years building their cities and training their skills, but it didn't feel right, it didn't give them the warm fuzzy feeling of blood on their sword. So now they prepare to fight, and show who is the ultimate race. They want to kill.

    Races:

    Orcs - The strong orcs who live by the Great Volcano are hearty beasts who can use their giant muscles to knock back any enemy nearby, the also have a greater defense and a slightly higher attack and are slightly resistant to poison. However all their muscle makes these beats a lot slower than other races.

    Barbarians - These battle hardened warriors have the greatest attack of any race and a slightly better defense they can also use their anger and power to knock back enemies.

    Elves - Elves and very majestic beasts that have powers that are often forgotten. They have a large range of very powerful bows that can take down even the strongest of enemies and they are fast and have a good jump.

    Ninjas - Ninjas are extremely fast and agile meaning they can easily sneak into towns and assassinate enemies. Their huge jump means they can jump from roof to room and can also shoot Ender Bows that allows to to teleport in or out of difficult situations. they also use their poisonous weapons to their advantage.

    Dwarfs - Dwarfs are a peaceful race that enjoy mining, they have perfect technique which means they can mine very quickly and forge strong tools that take a long time to break. Dwarfs also have thick bones which means they do not get very hurt from large falls down the mines.

    Features of the server:
    • All races have unique abilities (or disabilities)
    • All races have a different starting area
    • The map is a custom made continent map, so it is very different to a normally generated map.
    • PvP is encouraged between opposite races and teamwork within races is recommended.

    Posted in: PC Servers
  • 0

    posted a message on Push "x" for as long as you can hold your breath.
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Posted in: Forum Games
  • 0

    posted a message on Flan's Mod 5.5.2 Update : 1.12.2, 100s of new Skins! : Helicopters, Mechas, Planes, Vehicles, 3D Guns, Multiplayer, TDM, CTF
    Hello. I have installed flans mod for 1.5.2 with simple parts and manus vehicle pack and everything works until I try to place one of the vehicles from Manus's pack where it says "Turbo Model Thingy is not installed". I cannot find Turbo Model Thingy for 1.5.2 to fix this though. Can anyone help me out?
    Posted in: Minecraft Mods
  • 0

    posted a message on What do you think of my new channel? (Minecraft and other games)
    Hello!
    I have decided it would be fun to create a Youtube channel with a few of my friends. We have released a few videos, and I think they have turned out nicely. I would be really appreciative if you guys could check out the channel and let me know what you think so we can make improvements if possible.

    I also make sure to get involved with our subscribers so we take note of any suggestions and often respond to comments.

    Also check out my partner channel as well. They currently don't have any videos at the time of this post but check them out when they do.

    Our channel: http://www.youtube.c...mpollAndFilchid


    Sample video:
    Thank you!
    Posted in: Let's Plays
  • 0

    posted a message on addRenderer Help!
    Easy fix. Just replace your code
     public void addRenderer(Map map) {
    
    this.map.put(EntityMugger.class, new RenderMugger(new ModelMugger(), 0.5F)); 


    with this
     public void addRenderer(Map var1)
    {
    var1.put(EntityMugger.class, new RenderLiving(new ModelMugger(),.5f));
    }
    Posted in: Modification Development
  • 0

    posted a message on Mob animations- back and forwards along X axis
    Hello I have been messing around with My animation code to try and get my mobs head to move back and forwards. All I have been able to do is make the head swing like arms or legs in different directions. How would I change this code to make the head slide back and forwards along the x axis just like a slugs movement.
    super.setRotationAngles(f, f1, f2, f3, f4, f5, null);
    	Head.rotateAngleX = MathHelper.cos(f * 0.6662F) * 1.0F * f1;


    Thanks you in advanced.
    Posted in: Modification Development
  • 1

    posted a message on (Modloader) How to play custom mob sounds?
    Sorry its not working :( Is there a problem in this code here?
    Minecraft mc = ModLoader.getMinecraftInstance();
    mc.installResource("sound3/mob/dog/bark.ogg", new File(
    mc.mcDataDir,"resources/sound3/mob/dog/bark.ogg"));
    mc.installResource("sound3/mob/dog/dogtalk.ogg", new File(
    mc.mcDataDir,"resources/sound3/mob/dog/dogtalk.ogg"));
    }
    Posted in: Modification Development
  • 0

    posted a message on (Modloader) How to play custom mob sounds?
    Dude you are the best!
    Posted in: Modification Development
  • 0

    posted a message on (Modloader) How to play custom mob sounds?
    Sorry for the noob question but for some reason my sounds wont play. Is there something wrong with my code, or is it outdated?

    mod_Dogs.Java exert:

    Minecraft mc = ModLoader.getMinecraftInstance();
    mc.installResource("sound3/mob/Bok/bark.ogg", new File(mc.mcDataDir,"resources/sound3/mob/Bok/bark.ogg"));


    EntityDog.Java exert:

    protected String getHurtSound()
    {
    return "Bok.Bark";
    }
    protected String getDeathSound()
    {
    return "Bok.Bark";
    }
    protected float getSoundVolume()
    {
    return 0.4F;
    }


    Any help is greatly appreciated :)
    Posted in: Modification Development
  • 0

    posted a message on Minecraft News, and Server Spotlights
    Please review Bokodile Craft ( http://bokodilecraft.enjin.com/ ). We are a semi serious role playing server, with 3 main warring factions to join. we have also managed to make custom plugins to add mobs such as the wraith, which will teleport around mine shafts and drop books about its tormented life. Since we are new it would really help to get a review :D
    Posted in: Minecraft News
  • 0

    posted a message on [1.4] Bokodile Craft (lag free non whitelisted 24/7!)
    We have made some major changes to the server including a new map, 3 main warring factions to join, custom mobs (wraith) and much more!
    Posted in: PC Servers
  • 0

    posted a message on [1.4] Bokodile Craft (lag free non whitelisted 24/7!)
    We have made some big changes to the server including super powers! come check it out.
    Posted in: PC Servers
  • 0

    posted a message on [1.4] Bokodile Craft (lag free non whitelisted 24/7!)
    Added a few pics of the server. We have also added a few more plugins and features. Come along and check it out.
    Posted in: PC Servers
  • 0

    posted a message on [1.4] Bokodile Craft (lag free non whitelisted 24/7!)
    sorry we need to get to know you before we can make you stuff. Come along and join the server first.
    Posted in: PC Servers
  • To post a comment, please .