DEVELOPER TEAM FOR HIRE.

Status
This thread has been locked.

azamp19

Feedback score
0
Posts
8
Reactions
0
Resources
0
Hello I am one member of a small developer team.
we are very experienced and have made many plugins.
I specialize in in-game config and or plugin set-up as-well as creating them.
My partner Specializes in everything about plugins excluding html.
we work for 5$ a month and make good quality plugins.
We now have a third member.

we are open for 5 jobs so please post if you would like a ticket in which we will chose from.
10 tickets available only 5 get picked.

Links to plugins we have made:
https://www.spigotmc.org/resources/minetron-minigame-last-update-till-costs-money-hurry.13356/
https://www.spigotmc.org/resources/authors/thearchitectnoob.102152/
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

azamp19

Feedback score
0
Posts
8
Reactions
0
Resources
0
OK everyone 8 tickets left
nicolas you got one.[DOUBLEPOST=1445910097,1445910035][/DOUBLEPOST]It is in my documents
 

Andrew_Ellis

Feedback score
0
Posts
6
Reactions
0
Resources
0
Hi, I am looking for people like, but i have quite a huge project to make, I mean REALLY huge, so if interested write here -> Skype: rez30001
 

azamp19

Feedback score
0
Posts
8
Reactions
0
Resources
0
Yes to everyone above who said can I have a ticket I had been offline for a while so sorry for letting these build up
 

SpongyBacon

Feedback score
0
Posts
54
Reactions
33
Resources
0
I'm sure you're a nice guy, but you shouldn't be selling your work just yet.
Code:
package me.bukkit.azamp123;

import java.util.logging.Logger;
import org.bukkit.Bukkit;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.World;
import org.bukkit.block.Block;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.configuration.file.FileConfiguration;
import org.bukkit.entity.Horse;
import org.bukkit.entity.Horse.Color;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.player.PlayerMoveEvent;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.PlayerInventory;
import org.bukkit.plugin.java.JavaPlugin;

public class HappyBirthday
  extends JavaPlugin
{
  public void onEnable()
  {
    getLogger().info("MINETRON has come to minecraft");
  }
 
  public void onDisable() {}
 
  public static void Bikes(Horse h, Block b, Player player)
  {
    double p = h.getLocation().getY();
    h.getColor();Horse.Color k = Horse.Color.WHITE;
    if ((b.getLocation().getY() == p) || (h.getColor() == k)) {
      b.setType(Material.STATIONARY_WATER);
    }
    h.getColor();Horse.Color i = Horse.Color.CHESTNUT;
   
    double c = h.getLocation().getY();
    if ((b.getLocation().getY() == c) || (h.getColor() == i)) {
      b.setType(Material.STATIONARY_LAVA);
    }
  }
 
  public boolean arenasetspawn(CommandSender sender, Command cmd, String label, String[] args, Horse h)
  {
    Player player = (Player)sender;
    if ((cmd.getName().equalsIgnoreCase("sas1")) && ((sender instanceof Player)))
    {
      getConfig().set("sas1.world", player.getLocation().getWorld().getName());
      getConfig().set("sas1.x", Double.valueOf(player.getLocation().getX()));
      getConfig().set("sas1.y", Double.valueOf(player.getLocation().getY()));
      getConfig().set("sas1.z", Double.valueOf(player.getLocation().getZ()));
      getConfig().set("sas1.yaw", Float.valueOf(player.getLocation().getYaw()));
      getConfig().set("sas1.pitch", Float.valueOf(player.getLocation().getPitch()));
     
      return true;
    }
    if ((cmd.getName().equalsIgnoreCase("Mainframe")) && ((sender instanceof Player)))
    {
      Player play = (Player)sender;
      World w = Bukkit.getWorld("sas1.world");
      double x = getConfig().getDouble("sas1.x");
      double y = getConfig().getDouble("sas1.y");
      double z = getConfig().getDouble("sas1.z");
      float yaw = getConfig().getInt("sas1.yaw");
      float pitch = getConfig().getInt("sas1.pitch");
      Location loc = new Location(w, x, y, z, yaw, pitch);
      play.teleport(loc);
      h.teleport(loc);
      h.setColor(Horse.Color.CHESTNUT);
      h.setPassenger(play);
      return true;
    }
    if ((cmd.getName().equalsIgnoreCase("sas2")) && ((sender instanceof Player)))
    {
      getConfig().set("sas2.world", player.getLocation().getWorld().getName());
      getConfig().set("sas2.x", Double.valueOf(player.getLocation().getX()));
      getConfig().set("sas2.y", Double.valueOf(player.getLocation().getY()));
      getConfig().set("sas2.z", Double.valueOf(player.getLocation().getZ()));
      getConfig().set("sas2.yaw", Float.valueOf(player.getLocation().getYaw()));
      getConfig().set("sas2.pitch", Float.valueOf(player.getLocation().getPitch()));
     
      return true;
    }
    if ((cmd.getName().equalsIgnoreCase("Programs")) && ((sender instanceof Player)))
    {
      Player play = (Player)sender;
      World w = Bukkit.getWorld("sas2.world");
      double x = getConfig().getDouble("sas2.x");
      double y = getConfig().getDouble("sas2.y");
      double z = getConfig().getDouble("sas2.z");
      float yaw = getConfig().getInt("sas2.yaw");
      float pitch = getConfig().getInt("sas2.pitch");
      Location loc = new Location(w, x, y, z, yaw, pitch);
      play.teleport(loc);
      h.teleport(loc);
      h.setColor(Horse.Color.WHITE);
      h.setPassenger(play);
     
      return true;
    }
    return false;
  }
 
  @EventHandler
  public static void Damage(PlayerMoveEvent event, Player player)
  {
    PlayerInventory k = player.getInventory();
    ItemStack h = k.getHelmet();
    ItemStack l = new ItemStack(Material.GOLD_HELMET);
    ItemStack i = new ItemStack(Material.DIAMOND_HELMET);
    Player p = event.getPlayer();
    Material m = p.getLocation().getBlock().getType();
    if ((m == Material.STATIONARY_LAVA) || (h == i) || (h == l)) {
      p.damage(20.0D);
    }
    if ((m == Material.STATIONARY_WATER) || (h == l) || (h == i)) {
      p.damage(20.0D);
    }
  }
}
 

Web_

Feedback score
0
Posts
6
Reactions
8
Resources
0
My partner Specializes in everything about plugins excluding html.
HTML:
<plugin>
<yaml>
   <name>SuperAwesomePlugin</name>
   <version>1.0</version>
   <main>Main.php</main>
</yaml>
<main>
  <onenable override="true">
    server.getLogger("IM ENeBELD!!!!!!!!!11111!!!111!!!!!")
  </onenable>
  <ondisable override="true"></ondisable>
</main>
</plugin>
I'm clearly an expert in this field.
 
Last edited:
Status
This thread has been locked.
Top