1

DEVELOPERS AND MODS NEEDED TO STAFF NEW SERVER

BlackxRose •6/3/16 5:51 pm
•
152
•
6/3/2016 10:07 pm
Hello I am a server owner trying to push myself off my feet. I'm currently working on my server and need the much appreciated help to start the server and keep it running. I am also looking for someone to help me host the server, Just so i can afford it much more easily, if you would like to help me with this please message me here or on Skype: Blacky_Rose3 (PLEASE BE 15 YEARS OF AGE OR OLDER)
If you would like to apply please post replies to the information below:

What is your Name and ingame name? (if you don't feel comfortable sharing this on this site feel free to message me with the details)

Age?

Skype, Discord, Teamspeak, etc. (I do need a form of communication so I can contact you)

What your experience is how long have you been working with the field your trying to apply for?

how long have you been working with different programs and what programs are you fluent in?(if Dev position.))

Examples of your previous work experiences, (if youre applying for mod for example, list some references of different servers)

Your attitude towards dealing with people and conflict?

Your general personality, (I don't want people clashing and causing trouble between staff members, I need someone fair that can judge what to do in the right situation)

What can you yourself bring to the server?

What is your main language? I do need english speakers please.

Where do you come from?

What times you can be available?

Why do you want to be the position you're applying for? What makes you the right person for the job?

Any negatives, please share these now, instead of having me find out later, just so we can avoid any conflict

Feel free to share anything else you would like me to know
Posted by
BlackxRose
Level 1 : New Miner
0

  Have something to say?

Join • Sign in

3

iroke1
• 06/03/2016 10:07 pm
• Level 5 : Apprentice Network
What is your Name and ingame name? Name: Steven Ingame: iroke1

Age? 18

Skype, Discord, Teamspeak, etc. (I do need a form of communication so I can contact you) Steven.Ziggy

Position Desired Moderator

What your experience is how long have you been working with the field your trying to apply for? I have been working in management of mine craft servers since beta 1.5

Examples of your previous work experiences, (if youre applying for mod for example, list some references of different servers) I have ran minecraft faction server before back in beta 1.5-1.8 and again upon release of the game fully. I have also had adequate experience in public relations through my work experience outside of minecraft. Besides that I also have acquired multiple computer and network certifications including CompTIA A+, Net+, TestOut PcPro, NetworkPro, LinuxPro, SecurityPro etc...

Your attitude towards dealing with people and conflict? I typically look at situation objectively and weigh out the most logical side, and act accordingly.

Your general personality I can sometimes be a bit callous in my work as I often disregard emotions when making decisions, which has its pros and cons. Also I typically am very content no matter the conditions i'm in, often finding the best of the situation despite it seeming dull. I am a hard worker, particularly when it is something that I enjoy.

What can you yourself bring to the server? I can bring my technical knowledge gained from the IT Industry

What is your main language? English

Where do you come from? United States of America

What times you can be available? Mon-Fri after 5pm EDT, weekends til 3am

Why do you want to be the position you're applying for? What makes you the right person for the job? I want the position of Moderator because I have a liking towards running things, and a liking towards Minecraft so naturally when playing Minecraft I enjoy making sure everyone else has a smooth time. I have countless hours of experience in these positions, and thus think that I am more suited than most for such a position. Also as stated before I have experience in public relations and IT, which has given me a bit of a analytical mindset which I think translates well into server administration.
1
hassansyyid
• 06/03/2016 9:39 pm
• Level 48 : Master Technomancer
Hello, we offer professional development services. We support plugins, mods, sidemods, and more! http://negafinity.com
1
HaxOn__Waxoff
• 06/03/2016 8:10 pm
• Level 1 : New Miner
IGN: HaxOn__Waxoff

Real name: I'll say on Skype

Age? Skype

Skype, Discord, Teamspeak, etc. (I do need a form of communication so I can contact you) Skype

What your experience is how long have you been working with the field your trying to apply for? I have been working in plugin development for about 6 months now. I can create plugins of many kinds.

how long have you been working with different programs and what programs are you fluent in?(if Dev position.)) I use Eclipse and am very good at it.

Examples of your previous work experiences, (if youre applying for mod for example, list some references of different servers) I am a Dev on one server currently, and one that I am head mod on, I am looking to become a Dev or help out with that kind of stuff.

Your attitude towards dealing with people and conflict? I am a very good people person, very social, and conflict, well, I feel that I am good at handling it, but not at starting it

Your general personality, (I don't want people clashing and causing trouble between staff members, I need someone fair that can judge what to do in the right situation) I am nice to everyone, even if they aren't nice to me. I am happy to help anyone, and everyone who needs it!

What can you yourself bring to the server? I can bring new, custom made plugins like the one right here package me.bothcmds;

import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.GameMode;
import org.bukkit.Material;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.enchantments.Enchantment;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;
import org.bukkit.plugin.java.JavaPlugin;

public class dmageetc extends JavaPlugin {
@Override
public void onEnable() {
Bukkit.getServer().getLogger().info("FOD loaded");
}
@Override
public void onDisable(){
Bukkit.getServer().getLogger().info("FOD unloaded");
}
public boolean onCommand(CommandSender sender, Command command, String label, String[] args){

if(label.equalsIgnoreCase("fodsilk")){
Player player = (Player) sender;
ItemStack fod = new ItemStack(Material.FEATHER);
ItemMeta im = fod.getItemMeta();
im.setDisplayName(ChatColor.BLUE + "" +ChatColor.BOLD + "Feather Of Death w/ Silk Touch");
fod.setItemMeta(im);
fod.addUnsafeEnchantment(Enchantment.DAMAGE_ALL, 1000);
fod.addUnsafeEnchantment(Enchantment.DAMAGE_ARTHROPODS, 1000);
fod.addUnsafeEnchantment(Enchantment.DAMAGE_UNDEAD, 1000);
fod.addUnsafeEnchantment(Enchantment.DIG_SPEED, 1000);
fod.addUnsafeEnchantment(Enchantment.DURABILITY, 1000);
fod.addUnsafeEnchantment(Enchantment.FIRE_ASPECT, 1000);
fod.addUnsafeEnchantment(Enchantment.KNOCKBACK, 1000);
fod.addUnsafeEnchantment(Enchantment.LOOT_BONUS_BLOCKS, 1000);
fod.addUnsafeEnchantment(Enchantment.LOOT_BONUS_MOBS, 1000);
fod.addUnsafeEnchantment(Enchantment.SILK_TOUCH, 1000);
fod.addUnsafeEnchantment(Enchantment.WATER_WORKER, 1000);
player.getInventory().addItem(fod);
sender.sendMessage(ChatColor.DARK_AQUA + "" + ChatColor.BOLD + "FEATHER OF DEATH WITH SILK TOUCH SPAWNED!!!");
}

if(label.equalsIgnoreCase("fodnormal")){
Player player = (Player) sender;
ItemStack fod = new ItemStack(Material.FEATHER);
ItemMeta im = fod.getItemMeta();
im.setDisplayName(ChatColor.DARK_AQUA + "" + ChatColor.BOLD + "Feather Of Death w/o Silk Touch");
fod.setItemMeta(im);
fod.addUnsafeEnchantment(Enchantment.DAMAGE_ALL, 1000);
fod.addUnsafeEnchantment(Enchantment.DAMAGE_ARTHROPODS, 1000);
fod.addUnsafeEnchantment(Enchantment.DAMAGE_UNDEAD, 1000);
fod.addUnsafeEnchantment(Enchantment.DIG_SPEED, 1000);
fod.addUnsafeEnchantment(Enchantment.DURABILITY, 1000);
fod.addUnsafeEnchantment(Enchantment.FIRE_ASPECT, 1000);
fod.addUnsafeEnchantment(Enchantment.KNOCKBACK, 1000);
fod.addUnsafeEnchantment(Enchantment.LOOT_BONUS_BLOCKS, 1000);
fod.addUnsafeEnchantment(Enchantment.LOOT_BONUS_MOBS, 1000);
fod.addUnsafeEnchantment(Enchantment.WATER_WORKER, 1000);
player.getInventory().addItem(fod);
sender.sendMessage(ChatColor.DARK_AQUA + "" + ChatColor.BOLD + "FEATHER OF DEATH WITHOUT SILK TOUCH SPAWNED!!!");
}
if (label.equalsIgnoreCase("c")){
Player player = (Player) sender;
player.setGameMode(GameMode.CREATIVE);
sender.sendMessage(ChatColor.AQUA + "" + ChatColor.BOLD + "Your gamemode has been set to creative!");
}
if (label.equalsIgnoreCase("s")){
Player player = (Player) sender;
player.setGameMode(GameMode.SURVIVAL);
sender.sendMessage(ChatColor.AQUA + "" + ChatColor.BOLD + "Your gamemode has been set to survival!");
}
if (label.equalsIgnoreCase("bleach")){
Player player = (Player) sender;
String name = sender.getName();
player.setHealth(0);
Bukkit.broadcastMessage(ChatColor.GOLD + "" + ChatColor.BOLD + name + " Drunk bleach D:");
}


return true;

}

}


What is your main language? I do need english speakers please. English

Where do you come from? CALIFORNIA!!!

What times you can be available? From 5:30-7:00 every day

Why do you want to be the position you're applying for? What makes you the right person for the job? I want this position because I love coding, and I love helping other people. I am the PERFECT candidate!

Any negatives, please share these now, instead of having me find out later, just so we can avoid any conflict I don't like cats. Dogs only sorry! But for real, I am going to go with what you want, not me.

Feel free to share anything else you would like me to know
1

Welcome