SELLING HARDCOREGAMES | PVPGAMES | NETWORKMANAGERS | AND ETCS

Status
This thread has been locked.

lucasrfr

Feedback score
0
Posts
4
Reactions
0
Resources
0
Hello, I'm selling hardcore games, pvp games, skywars and network managers. All plugins come with source-code, the sources are from large servers that have already been opened.

All sources codes / plugins are working correctly.

The PVPGAMES plugin has a hardcore game simulator with several skills and kits, with kit customization system, buying and selling skills, Trade system of coins, kits, skills mysterious boxes system, points, kill streak and etc

The HARDCOREGAMES plugin counts on a system of customization of kits, feast and minifeasts with different schematics, kits and abilities and etc.

The SKYWARS plugin counts a system of skills, NEXUS system (If your nexus is destroyed your island gets destroyed and you are not reborn anymore), Trade system with players, and several other things.

The NETWORKMANAGER plugin has system to manage all plugins, RANKS, TAGS, GLOBAL COMMANDS, NPCS and etc!
If you are interested, you can call me on skype live:f6d05fd5830fe015 or discord Jona2K#1281


NOTE: I HAVE ALL PERMISSIONS OF SALE AND I AM THE 2# CREATOR.

NOTE 2: PRINTS OF THE SOURCES CODES BELOW, I HAVE NOT HOW TO SEND IN-GAME PHOTOS SINCE I CAN NOT OPEN IN MY MACHINE BECAUSE IT IS BAD
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

TamataPvP

Premium
Feedback score
12
Posts
347
Reactions
109
Resources
0
Any ingame pics, code snippets, new member is selling things, sketchy?
 

lucasrfr

Feedback score
0
Posts
4
Reactions
0
Resources
0
Any ingame pics, code snippets, new member is selling things, sketchy?


Hello, I can not send pictures in game because I am not able to open in my machine.
But I can send photos of the codes as follows:

PVPGAMES
upload_2017-12-29_20-44-45.png


NETWORKMANAGER:

upload_2017-12-29_20-45-28.png


HARDCOREGAMES

upload_2017-12-29_20-46-2.png


SKYWARS

upload_2017-12-29_20-46-38.png
[DOUBLEPOST=1514587565][/DOUBLEPOST]
Do you have permission to resell these?

Yes, I have full permission and am the 2 # creator
 

Attachments

  • upload_2017-12-29_20-44-45.png
    upload_2017-12-29_20-44-45.png
    14.7 KB · Views: 239
  • upload_2017-12-29_20-45-28.png
    upload_2017-12-29_20-45-28.png
    13.8 KB · Views: 230
  • upload_2017-12-29_20-46-2.png
    upload_2017-12-29_20-46-2.png
    17 KB · Views: 225
  • upload_2017-12-29_20-46-38.png
    upload_2017-12-29_20-46-38.png
    12.1 KB · Views: 229

TamataPvP

Premium
Feedback score
12
Posts
347
Reactions
109
Resources
0

lucasrfr

Feedback score
0
Posts
4
Reactions
0
Resources
0
Im not java dev but this is not code snippets ? :D


I thought you wanted source-code photos.
But as you requested a snippet of the codes here is an excerpt from the NETWORKMANAGER MAIN class

Snippet:
Code:
@Override
    public void onEnable() {
        static_instance = this;
        getServer().getMessenger().registerOutgoingPluginChannel(this, "BungeeCord");
        loadServerType();
        System.out.println("NetworkManager listening " + type);
        connect = new Connect(this);
        mainConnection = connect.trySQLConnection();
        connect.prepareSQL(mainConnection);
        inventory = new InventoryManager();
        permissionManager = new PermissionManager(this);
        permissionManager.onEnable();
        log = new Changelog(this);
        name = new NameFetcher(this);
        rm = new ReflectionManager();
        perm = new Permissions(this);
        scoreboard = new ScoreboardManager(this);
        scoreboard.onEnable();
        tag = new TagManager(this);
        tag.onEnable();
        ranking = new RankingManager(this);
        ranking.onEnable();
        title = new TitleManager(this);
        title.onEnable();
        multiplier = new MultiplierManager(this);
        multiplier.onEnable();
        copa = new CopaManager(this);
        copa.onEnable();
        clan = new ClanManager(this);
        clan.onEnable();
        uuidfetcher = new BukkitUUIDFetcher();
        new CommandManager(this);
        globalmute = false;
        getServer().getScheduler().runTaskTimer(this, new UpdateScheduler(), 1L, 1L);
        getServer().getPluginManager().registerEvents(new PlayerListeners(this), this);
        System.out.println("LOADING");

    }

    @Override
    public void onDisable() {
        if (permissionManager != null) {
            permissionManager.onDisable();
        }
        if (scoreboard != null) {
            scoreboard.onDisable();
        }
        if (tag != null) {
            tag.onDisable();
        }
        if (ranking != null) {
            ranking.onDisable();
        }

        if (title != null) {
            title.onDisable();
        }

        if (copa != null) {
            copa.onDisable();
        }

    }

    public static Main getInstance() {
        return static_instance;
    }
   
    public Permissions getPermissions() {
        return perm;
    }

    public NameFetcher getAPI() {
        return name;
    }

    public TagManager getTagManager() {
        return tag;
    }

    public ScoreboardManager getScoreboardManager() {
        return scoreboard;
    }

    public PermissionManager getPermissionManager() {
        return permissionManager;
    }

    public Connection getSQL() {
        return mainConnection;
    }

    public RankingManager getRankManager() {
        return ranking;
    }

    public TitleManager getTitleManager() {
        return title;
    }

    public MultiplierManager getMultiplierManager() {
        return multiplier;
    }

    public CopaManager getCopaManager() {
        return copa;
    }

    public ClanManager getClanManager() {
        return clan;
    }

    public Changelog getChangelog() {
        return log;
    }

    public UUIDFetcher getUUIDFetcher() {
        return uuidfetcher;
    }

    public InventoryManager getInventoryManager() {
        return inventory;
    }

    public void loadServerType() {
        if (getConfig().getString("serverType") != null) {
            if (getConfig().getString("serverType").equals("lobby")) {
                type = ServerType.LOBBY;
            }
            if (getConfig().getString("serverType").equals("hg")) {
                type = ServerType.HG;
            }
            if (getConfig().getString("serverType").equals("kitpvp")) {
                type = ServerType.KITPVP;
            }
            if (getConfig().getString("serverType").equals("hc")) {
                type = ServerType.HC;
            }
        } else {
            getConfig().set("serverType", "hg");
            type = ServerType.HG;
            saveConfig();
        }
    }
 

lucasrfr

Feedback score
0
Posts
4
Reactions
0
Resources
0
This is not HCGames xd

Yes it is! HardcoreGames![DOUBLEPOST=1514591607][/DOUBLEPOST]Logo
upload_2017-12-29_21-54-20.png


IP: wombocraft.com.br - CLOSED
 

Attachments

  • upload_2017-12-29_21-54-10.png
    upload_2017-12-29_21-54-10.png
    175.3 KB · Views: 17
  • upload_2017-12-29_21-54-20.png
    upload_2017-12-29_21-54-20.png
    175.3 KB · Views: 200
Last edited:

matthewp

Software Developer
Supreme
Feedback score
14
Posts
542
Reactions
503
Resources
0
Holy Crap, aids plugins, aids name, aids logo, aids "developer"/"creator".

All of these plugins look like ass and if you cannot follow something as basic as package naming conventions I wonder how you could even write a mysql back-end.
 

TamataPvP

Premium
Feedback score
12
Posts
347
Reactions
109
Resources
0
Holy Crap, aids plugins, aids name, aids logo, aids "developer"/"creator".

All of these plugins look like ass and if you cannot follow something as basic as package naming conventions I wonder how you could even write a mysql back-end.
Aids logo? What about yours kid, why the fuck you trashing someone's thread, you said aids NAME and LOGO, just because of the "plugins", please get out of here before you get trashed
 

sores

MineBOI
Premium
Feedback score
5
Posts
305
Reactions
210
Resources
0
HCGames -> HardcoreGames .........................
The name of the plugin is HardcoreGames as in a Hunger Games style gamemode I assume.

The HARDCOREGAMES plugin counts on a system of customization of kits, feast and minifeasts with different schematics, kits and abilities and etc.

Where in that description do you see anything relatively close to what HCGames is?
 

matthewp

Software Developer
Supreme
Feedback score
14
Posts
542
Reactions
503
Resources
0
Aids logo? What about yours kid, why the fuck you trashing someone's thread, you said aids NAME and LOGO, just because of the "plugins", please get out of here before you get trashed

Wow someone is salty even though I wasn't flaming them. At-least mine actually makes sense, and if you are talking about Fure Studios I made that logo in like 5 minutes, just a temporary logo. "Wombocraft" when the thread says "HardcoreGames" and the logo looks okay but with that name it looks like ass.

Before you try to flame me before flaming someone else back the fuck off of me.
 
Status
This thread has been locked.
Top