[EXCLUSIVE] Selling My HCF Server (Custom)

Status
This thread has been locked.

severely

Feedback score
0
Posts
43
Reactions
2
Resources
0
Hello MCM!

Today I am selling my HCF server that I have worked on for quite a while now, it comes with the server files, fully custom core as well as the domain (Divine.rip). I will help you set it up when you purchase, such as setting up the A and SRV records to point the domain the the IP and any issues you may come across. If you would like to see the server now, you can connect to it for a limited amount of time @ divine.rip or 192.99.106.36:25649 (1.7.10)

[+] Custom Builds
[+] Custom Core
[+] Custom Map
[+] Fully Setup
[+] Everything Included
[+] My Assistance With Setting Everything Up

Server:
3SxFXMq.png


Domain:
5127aaa641d30b3a548adb7e7732b09d.png


Server Files:
de313ad29e4273cfab88139aad292de5.png


(Ends 8/10/2017)
Starting Bid: $25
Bid Increment: $5
Buy It Now: $150
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Uash

Lives in the souls of the Slain
Supreme
Feedback score
3
Posts
131
Reactions
11
Resources
0
Test server still up?
 

severely

Feedback score
0
Posts
43
Reactions
2
Resources
0
public boolean onCommand(CommandSender sender, Command command, String string, String[] args)
{
if (!(sender instanceof Player))
{
sender.sendMessage(ChatColor.RED + "You can only execute this command in-game.");
return true;
}
if (args.length == 0)
{
if (PickUpListener.STONE.contains(sender.getName()))
{
PickUpListener.STONE.remove(sender.getName());
sender.sendMessage(ChatColor.YELLOW + "You " + ChatColor.RED + "disabled" + ChatColor.YELLOW + " stone item pickup");
}
else
{
sender.sendMessage(ChatColor.YELLOW + "You " + ChatColor.GREEN + "enabled" + ChatColor.YELLOW + " stone item pickup");
PickUpListener.STONE.add(sender.getName());
}
return true;
}
return false;
}
}


public class XrayCommand
implements CommandExecutor
{
public boolean onCommand(CommandSender sender, Command command, String string, String[] args)
{
if (args.length == 0)
{
if (ConfigurationService.FD_DIAMOND)
{
ConfigurationService.FD_DIAMOND = false;
sender.sendMessage(ChatColor.GRAY + "Found diamond notification is now " + ChatColor.RED + "disabled.");
}
else
{
ConfigurationService.FD_DIAMOND = true;
sender.sendMessage(ChatColor.GRAY + "Found diamond notification is now " + ChatColor.GREEN + "enabled.");
}
return true;
}
return false;
}
}
Code snippets of the core please?
 

Ambrosia

Premium
Feedback score
22
Posts
2,340
Reactions
1,384
Resources
0
public boolean onCommand(CommandSender sender, Command command, String string, String[] args)
{
if (!(sender instanceof Player))
{
sender.sendMessage(ChatColor.RED + "You can only execute this command in-game.");
return true;
}
if (args.length == 0)
{
if (PickUpListener.STONE.contains(sender.getName()))
{
PickUpListener.STONE.remove(sender.getName());
sender.sendMessage(ChatColor.YELLOW + "You " + ChatColor.RED + "disabled" + ChatColor.YELLOW + " stone item pickup");
}
else
{
sender.sendMessage(ChatColor.YELLOW + "You " + ChatColor.GREEN + "enabled" + ChatColor.YELLOW + " stone item pickup");
PickUpListener.STONE.add(sender.getName());
}
return true;
}
return false;
}
}


public class XrayCommand
implements CommandExecutor
{
public boolean onCommand(CommandSender sender, Command command, String string, String[] args)
{
if (args.length == 0)
{
if (ConfigurationService.FD_DIAMOND)
{
ConfigurationService.FD_DIAMOND = false;
sender.sendMessage(ChatColor.GRAY + "Found diamond notification is now " + ChatColor.RED + "disabled.");
}
else
{
ConfigurationService.FD_DIAMOND = true;
sender.sendMessage(ChatColor.GRAY + "Found diamond notification is now " + ChatColor.GREEN + "enabled.");
}
return true;
}
return false;
}
}
Can I see the screenshot of the packages please?
 

severely

Feedback score
0
Posts
43
Reactions
2
Resources
0
Status
This thread has been locked.
Top