iBlockBlacklist

Discussion in 'Archived: Plugin Requests' started by Dr0iDzz, Jan 27, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    Woobie

    Lying is not a good thing, especially when we are talking about stealing someone elses plugin.
     
  2. Offline

    coolminecaleb I steal plugins as my own

    ok tell me what i'm lying about? you been bitching about me making this because you wanted to make it first just look at your post if you don't edit them


    EDIT: I also ingored you so go on with your life
     
  3. Offline

    Woobie

    Uh oh, now you've done it. When kids get mad, it's either "get a life", excessive swearing, yelling, or yo mama stuff.
    I highly doubt that you are 17.
     
  4. Offline

    coolminecaleb I steal plugins as my own

    Who said i was 17? and why do you edit every single post? thats not excessive swearing ill show you an example of excessive swearing: OMG YOU FUCKING FAG YOU HAVE AN AIMBOT HACKER YOU MOTHER FUCKER thats exessive swearing
     
  5. Offline

    Woobie

    Was I saying you were excessively swearing? No.
    Your profile says that you are 17, unless you lied about that too.

    You really should stop already, you aren't going to win this.
     
  6. Offline

    coolminecaleb I steal plugins as my own

    Win what? And i put in a random birthdate could you please stop this crap because your mad???
     
  7. Offline

    Woobie

    Why would I be mad, and about what?
     
    MrBluebear3 likes this.
  8. Offline

    coolminecaleb I steal plugins as my own

    You been trying to start up this fight been bitching since i put a download link
     
  9. Offline

    Woobie

    Obviously because you stole someones plugin, claimed it to be yours, and continuted arguing about it.
    You stole the code dude, staff knows about it already, they removed your link and replaced it, why do you just keep on going?
     
    MrBluebear3 likes this.
  10. Offline

    coolminecaleb I steal plugins as my own

    Your the one who keeps going on look at your post (If you dident edit them because every post says you edit it)
     
  11. Offline

    MayoDwarf

    Notified TNT about this. Be prepared for staff to have a conversation with you.

    - Jared
     
    MrBluebear3 and Woobie like this.
  12. Offline

    Woobie

    I really have no idea what you just said, you should probably go to school.
     
  13. Offline

    coolminecaleb I steal plugins as my own

    Then your really stupid. im home schooled and home schoolers are smarter then butthurt idiots like you
     
  14. Offline

    mbaxter ʇıʞʞnq ɐ sɐɥ ı

    Seems you should fire your teachers, because you were never taught to play well with others and more importantly you were never taught to not plagiarize. If you intend on succeeding in life, claiming others work as your own is going to have to stop, fast.

    Also, that attitude isn't going to get you far.


    You, coolminecaleb, have stolen a plugin and claimed it as your own.

    Original iBlock source:
    Show Spoiler
    public class iPlayerListener
    implements Listener
    {
    private iBlock plugin;

    public iPlayerListener(iBlock iblock)
    {
    this.plugin = iblock;
    this.plugin.getServer().getPluginManager().registerEvents(this, this.plugin);
    }

    public String iPrefix()
    {
    return this.plugin.getConfig().getString("iBlock.prefix");
    }
    @EventHandler
    public void onPlayerBucketEmpty(PlayerBucketEmptyEvent event) {
    Player player = event.getPlayer();
    if ((!player.hasPermission("iBlock.bucket.water")) && (event.getBucket() == Material.WATER_BUCKET)) {
    event.setCancelled(true);
    event.getPlayer().sendMessage(ChatColor.GREEN + iPrefix() + ChatColor.RED + this.plugin.getConfig().getString("Bucket.Water.message"));
    if (this.plugin.getConfig().getBoolean("Bucket.Water.kick"))
    event.getPlayer().kickPlayer(this.plugin.getConfig().getString("Bucket.Water.message"));
    }
    else if (player.hasPermission("iBlock.bucket.water")) { event.getBucket();
    }

    if ((!player.hasPermission("iBlock.bucket.lava")) && (event.getBucket() == Material.LAVA_BUCKET)) {
    event.setCancelled(true);
    event.getPlayer().sendMessage(ChatColor.GREEN + iPrefix() + ChatColor.RED + this.plugin.getConfig().getString("Bucket.Lava.message"));
    if (this.plugin.getConfig().getBoolean("Bucket.Lava.kick"))
    event.getPlayer().kickPlayer(this.plugin.getConfig().getString("Bucket.Lava.message"));
    }
    else if (player.hasPermission("iBlock.bucket.lava")) { event.getBucket();
    }
    }
    }

    "Your" code
    Show Spoiler
    public class PlayerListener
    implements Listener
    {
    private Main plugin;

    public PlayerListener(Main iblock)
    {
    this.plugin = iblock;
    this.plugin.getServer().getPluginManager().registerEvents(this, this.plugin);
    }

    @EventHandler
    public void onPlayerBucketEmpty(PlayerBucketEmptyEvent event)
    {
    Player player = event.getPlayer();
    if ((!player.hasPermission("iBlock.bucket.water")) && (event.getBucket() == Material.WATER_BUCKET)) {
    event.setCancelled(true);
    event.getPlayer().sendMessage(ChatColor.GREEN + "[iBlock] " + ChatColor.RED + this.plugin.getConfig().getString("Bucket.Water.message"));
    if (this.plugin.getConfig().getBoolean("Bucket.Water.kick"))
    event.getPlayer().kickPlayer(this.plugin.getConfig().getString("Bucket.Water.message"));
    }
    else if (player.hasPermission("iBlock.bucket.water")) { event.getBucket();
    }

    if ((!player.hasPermission("iBlock.bucket.lava")) && (event.getBucket() == Material.LAVA_BUCKET)) {
    event.setCancelled(true);
    event.getPlayer().sendMessage(ChatColor.GREEN + "[iBlock] " + ChatColor.RED + this.plugin.getConfig().getString("Bucket.Lava.message"));
    if (this.plugin.getConfig().getBoolean("Bucket.Lava.kick"))
    event.getPlayer().kickPlayer(this.plugin.getConfig().getString("Bucket.Lava.message"));
    }
    else if (player.hasPermission("iBlock.bucket.lava")) { event.getBucket();
    }
    }
    }



    Dr0iDzz if you wish to continue this request, please just create an identical new topic. I apologize that this one has been filled with nonsense.
     
    Unscrewed, MayoDwarf, Woobie and 2 others like this.
Thread Status:
Not open for further replies.

Share This Page