Hello MCM!
I am looking for a plugin that does exactly what I ask for below. I NEED this plugin within 24 hours, and will pay $5 USD paypal whoever makes it.
BEFORE REPLYING I NEED YOU TO SPECIFY THIS IN YOUR REPLY:
- Your portfolio/link main MCM post (I ONLY WANT PROFESSIONAL DEVELOPERS):
- Will you respond to my messages on Skype (yes/no):
- Can you complete this plugin within 24 hours (yes/no):
- I will accept $5 as payment, PayPal friends & family (yes/no):
YOU MUST ADD ME ON SKYPE: kylesihota
I've gotten around 10 people on my last post saying they can do this. Sending me PMs, adding me on skype, only to completely ignore me when I respond back with what I want. I mean Wtf? Please only reply if you will respond back.
PLUGIN DESCRIPTION:
Basically this is what I want, you can code the plugin to be like this:
Player joins the server. The plugin delay the player from joining until it checks IP. Plugin sends an API request to http://tools.xioax.com/networking/ip/{ip}/{api}, where {ip} is replaced with the IP address of the player, and {api} is replaced with the API key (##option in config.yml to specify this##). When the API server responds back, if
"host-ip": true,
then deny the player from joining with a message (###option in config.yml to specify deny message###)
if
"host-ip": false,
then allow the player to connect.
If the API server does not respond within 5 seconds, assume the API server is offline and allow the player to connect. (###allow an option to specify a timeout time in config.yml###)
So the config.yml needs to be like this:
I am looking for a plugin that does exactly what I ask for below. I NEED this plugin within 24 hours, and will pay $5 USD paypal whoever makes it.
BEFORE REPLYING I NEED YOU TO SPECIFY THIS IN YOUR REPLY:
- Your portfolio/link main MCM post (I ONLY WANT PROFESSIONAL DEVELOPERS):
- Will you respond to my messages on Skype (yes/no):
- Can you complete this plugin within 24 hours (yes/no):
- I will accept $5 as payment, PayPal friends & family (yes/no):
YOU MUST ADD ME ON SKYPE: kylesihota
I've gotten around 10 people on my last post saying they can do this. Sending me PMs, adding me on skype, only to completely ignore me when I respond back with what I want. I mean Wtf? Please only reply if you will respond back.
PLUGIN DESCRIPTION:
Basically this is what I want, you can code the plugin to be like this:
Player joins the server. The plugin delay the player from joining until it checks IP. Plugin sends an API request to http://tools.xioax.com/networking/ip/{ip}/{api}, where {ip} is replaced with the IP address of the player, and {api} is replaced with the API key (##option in config.yml to specify this##). When the API server responds back, if
"host-ip": true,
then deny the player from joining with a message (###option in config.yml to specify deny message###)
if
"host-ip": false,
then allow the player to connect.
If the API server does not respond within 5 seconds, assume the API server is offline and allow the player to connect. (###allow an option to specify a timeout time in config.yml###)
So the config.yml needs to be like this:
Code:
# The API key to check players IPs with the API server
api-key: ''
#The deny message if a player is connecting using a VPN. Default: This server does not allow VPNs
deny-message: 'This server does not allow VPNs'
#The time in miliseconds to allow the server to respond before assuming API server is down and allowing player to join. Default: 5000
timeout-time: '5000'

