Strawberry KitMapCore With HCFCore

Status
This thread has been locked.

Salt

Banned
Feedback score
0
Posts
73
Reactions
3
Resources
0
https://gyazo.com/f3f28fd823ed0278bd1b6cc64135c6f0

Peachy is a plugin that handles alot of hcfcommands and essentials commands and officer chests and other verious cool utils and commands.
foqQHR1.png

Cc:
coords:
feed:
fly:
forcespawn:
freeze:
gmc:
gms:
help:
invsee:
lore:
punishments:
reloadconfig:
rename:
rules:
spawn:
staffchat(sc):
ts:
tp:
tphere:
wrench:

EXTRAS:
OfficerChest / Subclaims
StatTrack

Also has scoreboard with:
CombatTag, Enderpearl, Kill/deaths, Faction home, Koth
But if you want hcfcore aswell supports pvptimer etc.

Config:
Code:
SCOREBOARD:
    TITLE: "&D&lDaftHCF &c[Map 1]"
    LINES:
        - "%bars%"
        - "&b%kothname%&7:&6 %kothtime%"
        - "&eActive Class&7:&a %active_class%"
        - "&5 \u00BB &dEnergy&7:&6 %energy%"
        - "&2&lSpawn Tag&7:&6 %combat%"
        - "&dEnderpearl&7:&6 %enderpearl%"
        - "Kills: %kill%"
        - "Deths: %death%"
        - "%bars%"
    SETTINGS:
        BARS: "&7&m--|-|---------------|-|--"
        COOLDOWNS:
            COMBAT_TAG: 46
            ENDERPEARL_COOLDOWN: 16
#
CLEARCHAT_MESSAGE:
- '&a&l%PLAYER% has cleared chat'
COORDS_MESSAGES:
- '&bspawn - *,*'
- '&bkoth - *,*'
- '&bkoth - *,*'
- '&bkoth - *,*'
- '&bend portal - *,*'
- '&bnetherspawn - *,*'
- '&bmapkit - *,*'
- '&bEnd - *,*'
# You can create spacers and extra lines by doing "- 'TEXT'"
HELP_MESSAGES:
- 'HELP 1'
- 'HELP 1'
- 'HELP 1'
- 'HELP 1'
- 'HELP 1'
- 'HELP 1'
- 'HELP 1'
- 'HELP 1'
forcespawn: '%TARGET% has been sent to spawn by: %PLAYER%'
# Teamspeak supports multi lines
TEAMSPEAK_MESSAGE:
- '&Bts.myself.com'
PUNISHCOMMAND_MESSAGE:
- '&BREASON 1'
- '&BREASON 1'
- '&BREASON 1'
- '&BREASON 1'
- '&BREASON 1'
- '&BREASON 1'
- '&BREASON 1'
- '&BREASON 1'
- '&BREASON 1'
- '&BREASON 1'

uGZfBfn.png

Follow the steps below.

1) Download the plugin.
2) Place it in your plugins directory.
3) Start the server.
4) You're good to go! Start creating kits and arenas for players to play on.
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Salt

Banned
Feedback score
0
Posts
73
Reactions
3
Resources
0
f3f28fd823ed0278bd1b6cc64135c6f0.png

Yofou's core eh? Scam...
Exuse me i coded it for yofou but before the project was finished i left Yofou so dont come on my thread acusing me of scamming
 
Banned forever. Reason: Account Compromised (Temp)

Vapey

mcteams.com
Premium
Feedback score
7
Posts
495
Reactions
234
Resources
0
Exuse me i coded it for yofou but before the project was finished i left Yofou so dont come on my thread acusing me of scamming
So why are you selling work you claim you did for yofou?
 

Salt

Banned
Feedback score
0
Posts
73
Reactions
3
Resources
0
Can we see code snippets? I want to know what my server is going to run.
Okay

Code:
    @EventHandler
    public void onInventoryClick(InventoryClickEvent event) {
        Block blocktype = event.getWhoClicked().getTargetBlock(null, 10);

        if(blocktype.getType() == Material.FURNACE || blocktype.getType() == Material.BURNING_FURNACE) {
            if((event.getSlot() == 0 || event.getSlot() == 1) && event.getCursor().getType() != Material.AIR) {
                Furnace furnace = (Furnace) blocktype.getState();
                furnace.setCookTime(cooktime);
            }

Code:
public boolean isCooldownActive(Player player){
        if(!combatTag.containsKey(player)){
            return false;
        }
        long value = combatTag.get(player);
        return value > System.currentTimeMillis();
    }
Code:
               if ((sign != null) &&
                        ((ChatColor.GREEN + "Officer Chest").equals(sign.getLine(0))))
                {
                    Faction faction = Board.getInstance().getFactionAt(new FLocation(block));
                    if (faction.isNormal())
                    {
                        FPlayer fplayer = FPlayers.getInstance().getByPlayer(event.getPlayer());
                        if ((fplayer.getFaction().equals(faction)) && (!faction.isRaidable()) &&
                                (fplayer.getRole() == Role.NORMAL))
                        {
                            event.setCancelled(true);
                            event.getPlayer().sendMessage(ChatColor.RED + "You are not permitted to open this chest!");
                        }
                    }
                }
            }
            else if ((state instanceof org.bukkit.block.Sign))
            {
                org.bukkit.block.Sign sign = (org.bukkit.block.Sign)state;
                if ((ChatColor.GREEN + "Officer Chest").equals(sign.getLine(0)))
                {
                    Faction faction = Board.getInstance().getFactionAt(new FLocation(block));
                    if (faction.isNormal())
                    {
                        FPlayer fplayer = FPlayers.getInstance().getByPlayer(event.getPlayer());
                        if ((fplayer.getFaction().equals(faction)) &&
                                (fplayer.getRole() == Role.NORMAL)) {
                            event.setCancelled(true);
                        }
                    }
                }
            }
        }
    }
 
Banned forever. Reason: Account Compromised (Temp)

Rj

PhD Candidate, Control Theorist
Supreme
Feedback score
7
Posts
730
Reactions
221
Resources
0
Using Eclipse is a preference, most 'minecraft' 'coders' use IntelliJ instead of Eclipse because they think IntelliJ is superior in comparison to Eclipse while most of you don't even have a proper reason to use IntelliJ over Eclipse because you don't know the differences. So don't.
I using netbeans for big projects. I only use Intellj for smallers ones.
 
Status
This thread has been locked.
Top