Buying a plugin to stop Magma Cubes splitting

Status
This thread has been locked.
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Nagi

PM Only - No Skype
Supreme
Feedback score
12
Posts
535
Reactions
679
Resources
0
Oh common. It's like 2 lines of code? You're going to charge $8 for that? ._.

Code:
package com.kthisiscvpv;

import org.bukkit.Bukkit;
import org.bukkit.entity.EntityType;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.entity.CreatureSpawnEvent;
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
import org.bukkit.plugin.java.JavaPlugin;

public class NoMagmaSplit extends JavaPlugin implements Listener {

    public void onEnable() {
        Bukkit.getServer().getPluginManager().registerEvents(this, this);
    }

    @EventHandler
    public void onSpawn(CreatureSpawnEvent evt) {
        if (evt.getSpawnReason() == SpawnReason.SLIME_SPLIT && evt.getEntityType() == EntityType.MAGMA_CUBE)
            evt.setCancelled(true);
    }
}

Download: https://www.kthisiscvpv.com/NoMagmaSplit.jar
Vouch my profile please <3
 

PoluxKing

Feedback score
0
Posts
444
Reactions
123
Resources
0
Oh common. It's like 2 lines of code? You're going to charge $8 for that? ._.

Code:
package com.kthisiscvpv;

import org.bukkit.Bukkit;
import org.bukkit.entity.EntityType;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.entity.CreatureSpawnEvent;
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
import org.bukkit.plugin.java.JavaPlugin;

public class NoMagmaSplit extends JavaPlugin implements Listener {

    public void onEnable() {
        Bukkit.getServer().getPluginManager().registerEvents(this, this);
    }

    @EventHandler
    public void onSpawn(CreatureSpawnEvent evt) {
        if (evt.getSpawnReason() == SpawnReason.SLIME_SPLIT && evt.getEntityType() == EntityType.MAGMA_CUBE)
            evt.setCancelled(true);
    }
}

Download: https://www.kthisiscvpv.com/NoMagmaSplit.jar
Vouch my profile please <3
Hahah you killed me :') You just rekt him xD
 

Nagi

PM Only - No Skype
Supreme
Feedback score
12
Posts
535
Reactions
679
Resources
0
Hey there!
I just want to say that this thread is in the wrong forums.
Coco Doge

Also, Elcro might be able to help you with this plugin.

- TrifleTower
Why would you bump a thread that's 3 days old and already solved?
Also, couldn't you have just reported the post instead of making a statement about it?
There are more staff members that could've dealt with the problem other than the 2 you've listed.
These features exist for a reason... no reason for you to try to be a mod wannabe. lol
 

FluxDesigns

Feedback score
0
Posts
22
Reactions
8
Resources
0
Why would you bump a thread that's 3 days old and already solved?
Also, couldn't you have just reported the post instead of making a statement about it?
There are more staff members that could've dealt with the problem other than the 2 you've listed.
These features exist for a reason... no reason for you to try to be a mod wannabe. lol
I'm not mod wannabe. The last thing I want is to be staff on this website.
 
Status
This thread has been locked.
Top