Hot Summer Deals are Here!
Celebrate with up to 99% off on 16,900 resources
04
Days
00
Hours
56
Mins
14
Secs

Cannon patches

Status
This thread has been locked.

TheFatLemur

Deactivated
Feedback score
1
Posts
153
Reactions
16
Resources
0
hi guys today I'm looking for a plugin with cannon patches like cob webs world border or just in general all of the cannon patches like making cannons work better too if you have something like this msg me on discord

HardWorking#4962
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Torciv

Premium
Feedback score
7
Posts
47
Reactions
77
Resources
0
Easier and cheaper:

Patch for cannons:

- Use PaperSpigot.1.8.8 latest build

Anti Cobweb:

https://www.spigotmc.org/resources/raidingpatches.35056/
https://www.spigotmc.org/resources/raidingpatches.35056/
AntiRoof Cannons:
Go to paper.yml and then
tnt-entity-height-nerf: 256

Fix sand on paper.yml:
falling-blocks-collide-with-signs: true

Fix cannons on paper.yml:
fix-cannons: true

Some minor performance:
load-chunks:
enderpearls: false
tnt-entities: true
falling-blocks: true
remove-unloaded:
enderpearls: true
tnt-entities: false
falling-blocks: false

Max tnt per tick on spigot.yml:
max-tnt-per-tick: 3000

Remove TNTDamange and knoback use:
EssentialsProtect.jar https://ci.drtshock.net/job/essentialsx/
Go to config.yml of essentials search for:
tnt-playerdamage: true

Go to paper.yml:
disable-explosion-knockback: true


Disable wither spawn:
Again EssentialsProtect -> config.yml
disable:
wither: true

NetherWater: https://www.spigotmc.org/resources/nether-water.16777/

AntiLootSteal: https://www.spigotmc.org/resources/fbasics-the-factions-anti-glitch-plugin.503/
You can set the amount of time to wait before anybody can get your loot in the config.yml

Solve the problem with RegenWalls:
https://github.com/MinelinkNetwork/AntiRegenWalls => You will need to ask somebody to compile the plugin for you if you do not know how to do it

Items wont explode by TNT:
Code:
    @EventHandler
    public void onDamage(final EntityDamageByEntityEvent event) {
        if (event.getCause() == EntityDamageEvent.DamageCause.ENTITY_EXPLOSION && event.getEntity().getType() == EntityType.DROPPED_ITEM) {
            event.setCancelled(true);
        }
    }

Again you will have to ask somebody to compile this for you unless you know how to.

SellWand Plugin: https://www.spigotmc.org/resources/sell-stick-sell-wand.38119/

HarvestHoe: https://www.spigotmc.org/resources/factions-harvester-hoe.45927/

Custom Pickaxes: https://github.com/Torciv/CustomPicks
#My Own version

Edit mob drop: https://www.spigotmc.org/resources/dropedit-easy-edit-mob-drops.10858/

This is cheapear and almost the same efficient as having only all in one plugin. And after that if you are that lazy you can mix all in one.
 
Status
This thread has been locked.
Top