• 0

    posted a message on Server not running?

    I've updated forge and that fixed it. Thank you! I'm an idiot.

    Posted in: Java Edition Support
  • 0

    posted a message on I need help installing Pixelmon

    I said 0.5, which is half a gig. Also, look at @sazrock's comment. That's how I see it.

    Posted in: Java Edition Support
  • 0

    posted a message on I need help installing Pixelmon

    You need to allocate more RAM to the game. It can't handle everything your doing with a measly little 0.5GB.

    Posted in: Java Edition Support
  • 0

    posted a message on Server not running?

    Hi! I'm trying to make a server using Cauldron but it isn't cooperating. I have all the libraries required, and the Minecraft Server file for 1.7.10 named "minecraft_server.jar".

    My start.bat is:

    java -Xmx3G -Xms3G -jar cauldron-1.7.10-1.1231.04.209-server.jar nogui

    When I run the start.bat, I get this:


    Log:

    A problem occurred running the Server launcher.java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at cpw.mods.fml.relauncher.ServerLaunchWrapper.run(ServerLaunchWrapper.java:43)
    at cpw.mods.fml.relauncher.ServerLaunchWrapper.main(ServerLaunchWrapper.java:12)
    Caused by: java.lang.NoClassDefFoundError: org/apache/logging/log4j/Level
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:94)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    ... 6 more
    Caused by: java.lang.ClassNotFoundException: org.apache.logging.log4j.Level
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    ... 8 more


    Any help?

    Posted in: Java Edition Support
  • 0

    posted a message on Minecraft Raspberry Pi next update?

    mabe you could download minecraft.jar from minecraft.net

    that breaks the point of the Pi edition

    the regular minecraft would murder a Pi spec wise but Pi edition runs on it fine.

    Posted in: Minecraft: Pi Edition
  • 0

    posted a message on Post your trolls here :-)

    :)

    Posted in: Survival Mode
  • 1

    posted a message on Post your trolls here :-)

    I was playing on a multiplayer server and this chick wouldn't stop chasing and attacking me

    so I went to her house, it was GriefPrevention'd. It turns out, the outside wasn't. I could place blocks right infront of the door. I got her to go back to house and barricaded her in with dirt and just kept going up and up higher and higher until she ragequit. Don't mess with me. xD

    Posted in: Survival Mode
  • 0

    posted a message on Devs or Dev Team needed!

    IGN: (required) IAmTheWolfie
    Skype: (required) wolfsareawesome
    MIC: (required) Yeah, I've got one. It's part of the Turtle Beach x12 headset I own.
    Age: (recommended) 11
    Experience of being a dev: (required)


    package me.wolfie.customplugin;
    import java.util.logging.Logger;
    import org.bukkit.command.PluginCommand;
    import org.bukkit.craftbukkit.v1_8_R1.entity.CraftPlayer;
    import org.bukkit.plugin.java.JavaPlugin;
    import net.minecraft.server.v1_8_R1.ChatSerializer;
    import net.minecraft.server.v1_8_R1.EnumTitleAction;
    import net.minecraft.server.v1_8_R1.IChatBaseComponent;
    import net.minecraft.server.v1_8_R1.PacketPlayOutTitle;
    import java.io.File;
    import java.io.PrintStream;
    import org.bukkit.Bukkit;
    import org.bukkit.ChatColor;
    import org.bukkit.GameMode;
    import org.bukkit.Location;
    import org.bukkit.Material;
    import org.bukkit.OfflinePlayer;
    import org.bukkit.Server;
    import org.bukkit.command.Command;
    import org.bukkit.command.CommandSender;
    import org.bukkit.entity.Player;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.entity.PlayerDeathEvent;
    import org.bukkit.event.player.AsyncPlayerChatEvent;
    import org.bukkit.event.player.PlayerEvent;
    import org.bukkit.event.player.PlayerJoinEvent;
    import org.bukkit.inventory.ItemStack;
    import org.bukkit.inventory.PlayerInventory;
    import org.bukkit.plugin.PluginManager;
    import org.bukkit.plugin.java.JavaPlugin;
    public class Main
    extends JavaPlugin
    {
    public final Logger logger = Logger.getLogger("Minecraft");
    public Main plugin;
    public int build;

    public void onEnable()
    {
    this.build = 1;
    this.logger.info("Title Build " + this.build + " successfully enabled. Whoo hoo!");
    }

    public void onDisable()
    {
    this.logger.info("Title Build " + this.build + " has been disabled.");
    }
    public void sendTitleOrSubtitle(Player player, EnumTitleAction titleType, String text, int fadeInTime, int showTime, int fadeOutTime, ChatColor color)
    {
    IChatBaseComponent chatTitle = ChatSerializer.a("{\"text\": \"" + text + "\",color:" + color.name().toLowerCase() + "}");

    if(titleType != EnumTitleAction.TITLE && titleType != EnumTitleAction.SUBTITLE) return;
    PacketPlayOutTitle title = new PacketPlayOutTitle(titleType, chatTitle);
    PacketPlayOutTitle length = new PacketPlayOutTitle(fadeInTime, showTime ,fadeOutTime);

    ((CraftPlayer) player).getHandle().playerConnection.sendPacket(title);
    ((CraftPlayer) player).getHandle().playerConnection.sendPacket(length);
    }
    public void onPlayerJoin(PlayerJoinEvent e) {
    Player p = e.getPlayer();
    p.sendMessage(ChatColor.RED + "Hello," + p.getDisplayName() + "!");
    p.sendMessage(ChatColor.RED + "Welcome to The Vurge!");
    }
    @SuppressWarnings("deprecation")
    public void onPlayerDeath(PlayerDeathEvent e){
    Player player = e.getEntity();
    Location loc = player.getLocation();
    int x = loc.getBlockX();
    int y = loc.getBlockY();
    int z = loc.getBlockZ();
    player.sendMessage(ChatColor.RED + "You've just died! Your killer was:" + player.getKiller() + " and your coords have been globally broadcasted to everyone.");
    player.sendMessage(ChatColor.RED + "Thank you for playing on The Vurge.");
    Player[] players = Bukkit.getServer().getOnlinePlayers();
    for (int i = 0; i < players.length; i++){
    players[ i ].sendMessage(ChatColor.GREEN + player.getName() + ChatColor.RED + " has just died. Their coords were: " + x + ", " + y + ", " + z + ".");
    players[ i ].sendMessage(ChatColor.RED + "Thanks for playing on The Vurge, " + players[ i ] + "!");
    }
    }
    }


    - please note, this is a chunk of a plugin i'm writing for a server
    Ability to work in groups: (1-10) Depends on the people. If they're polite, then yes, i'll work in groups. If they're disrespectful to me, then no. I'd say on a average, 7/10.
    Have you ever been banned before? If yes, for what reason. (please don't lie here. Lying will result in your application being denied) I'm sure everyone here has been banned atleast ONCE before. I have before, obviously. I've been banned on multiple occasions from insulting bad owners/moderators.
    Questions that you must answer from a devs pov.
    What do you do if a player threatens to ddos the server? Well: I'm not a moderator. Please note that. I'm a programmer. I shouldn't have to deal with situations like this, as it isn't my job. If there was a situation where I was the only one, then I'd just attempt to conceal the situation, and if the player is acting like he will, I will mute him, then if he attempts to do anything more, I'll kick him. He does one more thing, and I'll ban him. If I see any packeting/lag on the server, then it's an instant ban for the player. It'd have to be noticeable lag that players are complaining about.
    What do you do if you find a player(s) exploiting a bug for their own uses?

    Get a configuration dev to fix the issue, and if it's a code issue, edit the plugin and fix it. Temp ban the player for up to 30 days.

    What do you do if a player continually swears/spams after being told to stop?

    Temporary mute, maybe 5mins top. If they continue after the mute, permanent.

    What do you do if a player is disrespectful to staff/members?

    Tell them to stop, and if they continue, a temporary mute. If they continue after the mute, a permanent mute. If they find a work around and a way to contact other staff members/players, I'll ban them.
    What do you do if a current staff members mentions to grief/destroy ANYTHING?

    Remove their group and deop them, and if they attempt to do it even as a member, ban them.
    Any other info that me and the owner may find useful?

    I believe that's it. If you or the owner have any questions for me, please just contact me on skype.

    Posted in: Server Recruitment
  • 0

    posted a message on [Vuln-RPG-Factions] *** [Total New Concept] ==== [Need Authors, Devolopers, Artists, Builders] $$$

    Name: Alex Crossen (Wolfie3D)

    Age: 11 - Please don't judge me for my age, trust me, I can impress if I get a chance.

    Skype: wolfsareawesome

    Knowledge in Coding: I've been doing java development for about over a year now.

    Knowledge of bukkit configurations and plugins: I can configure plugins, but I prefer just to write them.

    Experience: 1+ year of java experience and 3+ (since Alpha 1.2.4) years minecraft experience

    Can you create custom plugins that are functional: Yes.

    Price: $0.00. I just code as a hobby.

    Anything Else: I love pie


    Thank you for taking the time to read my application!

    Posted in: Server Recruitment
  • 0

    posted a message on Minecraft Developers for Hire

    Hi! I can be a developer for your server. I can even write you custom plugins, as I know Java. My skype is: wolfsareawesome (I'm not Brian Carter, that's someone else.)

    Thanks! - Wolfie

    Posted in: Server Recruitment
  • 0

    posted a message on Experienced (1+ years) java developer looking for servers to write plugins for
    Quote from anthony562591»

    Wolfe I need m asap kingsqiuads.serv.nu I'll open it in th morning I need a level up plugin by planing minigames...


    like I said, contact me on Skype.

    Posted in: Server Recruitment
  • 0

    posted a message on Experienced (1+ years) java developer looking for servers to write plugins for
    Quote from Diego_Panda»

    hey i need one join my server 108.170.60.72:25565

    i really need one ty


    Contact me on skype.

    EDIT: also, no one is on there, and it's whitelisted. my IGN is OfficalWolfie

    Posted in: Server Recruitment
  • 0

    posted a message on Experienced (1+ years) java developer looking for servers to write plugins for

    Hi! I'm Wolfie3D, I'm eleven. I know:


    Lua, VB.net( check out a program I wrote in my signature), Java, and a bit of C++. I'd love to write plugins for you or your servers. Just hit me up on skype: wolfsareawesome


    :3


    EDIT: I am not Brian Carter. I'm [LUNR_WOLF].


    DO NOT CONTACT ME ON THE FORUMS. CONTACT ME ON SKYPE

    Posted in: Server Recruitment
  • 0

    posted a message on Developer.

    I've sent you a request on Skype. I'm a 1+ year java coder.

    Posted in: Server Recruitment
  • 0

    posted a message on Request: real life to skin conversion

    no problem! :)

    Posted in: Skins
  • To post a comment, please .