• 0

    posted a message on GAListener Problem

    I have GAListener working, and by working i mean its listening to the vote and registering it on my vote count but i do not get the rewards for some reason. can someone help?



    #  GAListener v1.3.2
    #  http://www.minecraft-index.com
    
    #  settings section
    
    #  onlineonly - Only delivers rewards when the player is online.  If they are offline it will wait and deliver when they next join the server!
    #  luckyvote - Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote.
    #  permvote - Enables the permission voting section, this allows voters to receive different rewards based upon their permissions.
    #  cumulative - Enables the cumulative voting section, this allows voters to receive rewards once they have reached a certain number of votes.
    #  broadcastqueue - Show broadcast message for queued votes.
    #  broadcastoffline - Show broadcast message for offline queued votes.
    #  broadcastrecent - Show broadcast message to recent voters (last 24 hours)
    #  votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
    #  rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
    #  joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
    #  voteremind - Message players who haven't voted in the last 24 hours. Shows the message contained in the remindmessage section at the bottom of this config.
    #  remindseconds - How often (in seconds) between each reminder message.
    #  ratelimit - Ignore votes received within this many seconds since the last vote for the same player on the same site.  This should prevent duplicate votes.
    #  logfile - Log received votes to vote.log file.
    #  dbMode - Database mode. Use either mysql or sqlite.
    #  dbFile - Database filename for SQLite.
    #  dbHost - Database IP / Hostname for MySQL.
    #  dbPort - Database port for MySQL.
    #  dbUser - Database username for MySQL.
    #  dbPass - Database password for MySQL.
    #  dbName - Database name for MySQL.
    #  dbPrefix - Database table prefix.
    
    settings:
      onlineonly: true
      luckyvote: true
      permvote: true
      cumulative: true
      broadcastqueue: true
      broadcastrecent: true
      broadcastoffline: true
      votecommand: true
      rewardcommand: false
      joinmessage: true
      voteremind: false
      remindseconds: 300
      ratelimit: 10
      logfile: false
      dbMode: 'sqlite'
      dbFile: 'GAL.db'
      dbHost: 'localhost'
      dbPort: 3306
      dbUser: 'root'
      dbPass: ''
      dbName: 'GAL'
      dbPrefix: ''
    
    #  services section (default is used if service doesn't exist)
    #  The example below would give 5 diamonds per vote.
    
    services:
      default:
        broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}5 Diamonds!'
        playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
        commands: 
        - '/crate givekey {username} vote 1'
    
    #  luckyvotes section
    #  The example below would give a 1 in 10 chance of a voter receiving an extra $1000, and a 1 in 50 chance of an extra $1000 and 100XP.
    
    luckyvotes:
      '5':
        broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
        playermessage: '{GREEN}You were lucky and received an extra $1000!'
        commands:
        - '/crate givekey {username} vote 2'
      '10':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
        commands:
        - '/crate givekey {username} vote 3'
      '20':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
        commands:
        - '/crate givekey {username} vote 4'
      '40':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
        commands:
        - '/crate givekey {username} vote 5'
      '80':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
        commands:
        - '/crate givekey {username} vote 6'
      '160':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
        commands:
        - '/crate givekey {username} vote 64'
    
    #  permission reward section
    #  This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
    
    perms:
      double:
        broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
        playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
        commands: 
        - '/crate givekey {username} vote 1'
    
    #  cumulative reward section
    #  This example would give players 20 Diamonds once they have reached a total of 10 votes.
    
    cumulative:
      '5':
        broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}1 Vote Key'
        playermessage: '{GREEN}Thanks for voting {AQUA}5 times!'
        rewardmessage: '1 Vote Key'
        commands: 
        - '/crate givekey {username} vote 1'
      '10':
        broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}2 Vote Key!'
        playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
        rewardmessage: '2 Vote Key'
        commands: 
        - '/crate givekey {username} vote 2'
      '20':
        broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}3 Vote Keys!'
        playermessage: '{GREEN}Thanks for voting {AQUA}20 times!'
        rewardmessage: '3 Vote Key'
        commands: 
        - '/crate givekey {username} vote 3'
      '40':
        broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}4 Vote Key!'
        playermessage: '{GREEN}Thanks for voting {AQUA}40 times!'
        rewardmessage: '4 Vote Key'
        commands: 
        - '/crate givekey {username} vote 4'
      '80':
        broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}5 Vote Key!'
        playermessage: '{GREEN}Thanks for voting {AQUA}80 times!'
        rewardmessage: '5 Vote Key'
        commands: 
        - '/crate givekey {username} vote 5'
      '160':
        broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}64 Vote Key!'
        playermessage: '{GREEN}Thanks for voting {AQUA}160 times!'
        rewardmessage: '64 Vote Key'
        commands: 
        - '/crate givekey {username} vote 64'
    
    #  blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
    
    blocked:
    - world_blocked
    
    #  Available formatting codes for messages:
    
    #  {service} {servicename} {SERVICE} = service name
    #  {username} {player} {name} = player username
    #  {votes} = current vote total
    #  & = Colour Symbol to enter manual colours / control codes
    #  {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
    #  {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
    #  {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
    #  {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE} 
    #  {STRIKETHROUGH} {MAGIC} {RESET}
    
    votemessage:
    - '{GRAY}{BOLD}---------------------------------------------'
    - '{LIGHT_PURPLE}Link Removed
    - '{GRAY}{BOLD}---------------------------------------------'
    - '{RED}You currently have {GREEN}{votes} Votes'
    
    remindmessage:
    - '{GOLD}-----------------------------------------------------'
    - 'You have not voted recently, please vote to support the server'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}You currently have {GREEN}{votes} Votes'
    
    joinmessage:
    - '{GOLD}-----------------------------------------------------'
    - 'Vote for us every day for in game rewards and extras'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}You currently have {GREEN}{votes} Votes'
    
    #  Additional formatting codes for below:
    
    #  {TOTAL} = vote total - used for /rewards
    #  {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
    #  {POSITION} = current rank - used for /votetop
    #  {username} = player name - used for /votetop
    
    rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
    votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
    rewardheader: 
    - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
    votetopheader: 
    - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
    rewardfooter: 
    - '{AQUA}You currently have {GREEN}{votes} Votes'
    



    Posted in: Server Support and Administration
  • 0

    posted a message on Essentials Kits Error

    My kit wont work and i am not able to see what the problem is, i have unsafe enchantments set to true as well


    https://hastebin.com/naxedegura.swift


    I have tested yaml online and it does not show any errors.

    Posted in: Server Support and Administration
  • 0

    posted a message on 💙💙SKY NATIONS NETWORK💜💜OPEN BETA RELEASED💚💚

    We are also looking for staff! just join the discord and ask the owner.

    Posted in: PC Servers
  • 0

    posted a message on 💙💙SKY NATIONS NETWORK💜💜OPEN BETA RELEASED💚💚

    --------------------------


    Welcome to Sky Nations Network!


    Our Server is called Sky Nations Network, Currently only home to 2 awesome gamemodes. These gamemodes consists of Skyblock, or "Semi-Op Lucky Skyblock" and Survival, or "Mega Horror PvE Hardcore Survival". Now you may think that this is a pretty low amount of servers for a network, well this is because i worked very hard on perfecting them using my own creativity and many examples around. The network is currently under a "Beta" status so there are bound to be some problems here and there, maybe everywhere (rip), which is why i am requesting you guys to become Beta testers/Dedicated players for me. Don't worry, i won't leave helpful players empty handed! i will be giving a reward to does that find many issues with the server or just play for a long time to give us a player base! This will only last until January, which is when we will officially release, sending ads to many other sites and hiring Youtubers. I am sure many of you have done the same thing to many other servers but unfortunately the server went down due to certain reasons, I will guarantee my server to never shut down and become abandoned, in fact i cannot afford to after spending more than $800 on the production of this small unfinished server! Everyone here should be able to play lag free, since my server is hosted by a good 64GB Dedicated host! If anyone has a problem, just join our discord (in the end of the page) and PM the owner! We fully accept any suggestions you have to offer! (in fact please do)


    - No Duping or Hacking!
    - No Intentional Racism or Vulgar Language!
    - No Rude Names!
    - No Spamming or Flooding Chat!
    - No Advertising
    - No NOT having Fun!


    ==========Discord=================Website=============Play.McSkyNations.Com==
    Posted in: PC Servers
  • 1

    posted a message on Better/New EssentialsX alternative?

    I was wondering if anyone knows about a new and better EssentialsX plugin, could be a fork or maybe a whole other plugins but EssentialsX isnt working too well with the newer minecraft versions (this may not apply to all people with the newer versions). I am not sure if EssentialsX is being discontinued or its just taking an eternity to update (highly likely from update history) but i would appreciate the help!

    Posted in: Server Support and Administration
  • 0

    posted a message on Error: Permissions manager is not accessable. Is the PermissionsEX plugin enabled?

    When i type /spawn, i get the message in the title. i disabled PEX because i am trying out luckperms (migrated using migration command).


    Also does anyone know how to work the prefix's for luckperms? they are set but wont show up in chat.

    Posted in: Server Support and Administration
  • 0

    posted a message on World Problem

    I love you Carbonawk, it worked like a charm

    Posted in: Server Support and Administration
  • 0

    posted a message on World Problem

    I mistakenly did /gamerule randomtickspeed 5000 in a certain world, that world is now corrupt because of this and also corrupts any server that it lies in. i can join the server for 1 minute until i get kicked, saying the server is down, but its actually not. i also cannot type any commands in that 1 minute, only speak. is there a way to edit the gamerules from ftp or at least delete the gamerule file?

    Posted in: Server Support and Administration
  • 0

    posted a message on ★SkyNationsNetwork★Hiring Builders★Apply Now★

    ~~Update: say "Applied" after filling out the form!

    Posted in: Server Recruitment
  • 0

    posted a message on ★SkyNationsNetwork★Hiring Builders★Apply Now★

    SkyNationsNetwork is a newly founded network that currently consists of Skyblock, Factions, Survival and Creative, with Kit-PvP, Op-Prison and hopefully SkyBounds coming up! I currently only have 1 builder working on my survival spawn and would like to request more to start on other non-symmetrical spawns, including the hub! I am also looking for just random builds that can be used as decoration and Terraformers either voxel sniper or worldpainter too. Soon i will be moving to a 64GB dedicated server, but before that i need builds to be done so i would like to ask all of your help!

    Upon our interest on your application and portfolio, we will add you on discord and you will have access to a 10GB builders only server where you can work to your heart's content!

    Application: https://docs.google.com/forms/d/e/1FAIpQLSdYu8XFKORItR5vYUP6qc0VSEoy7VsjJteZ422rrtIn7fninA/viewform

    Posted in: Server Recruitment
  • 0

    posted a message on PermissionsEX or LuckPerms?

    PermissionsEX has not updated in quite some time and things are falling apart, one thing i realized that is going downhill on server around the version 1.12.1 with PEX is group inheritance/parenting it seems to have mostly stopped working. i have looked around on many popular servers and they seem to be using a permission plugin called LuckPerms. LuckPerms provides a comparison chart in which they seem to have everything other perm plugins don't, including PEX (i know that not everything is true) but should i switch to LuckPerms? do you recommend it?


    LuckPerms: https://www.spigotmc.org/resources/luckperms-an-advanced-permissions-plugin.28140/


    PermissionsEX: https://dev.bukkit.org/projects/permissionsex

    Posted in: Server Support and Administration
  • 0

    posted a message on SkyNationsNetwork Hiring Builders and Managers!

    Hello all, I am the owner of SkyNationsNetwork. Today i am here to request for Server Managers, and especially builders!

    My network is currently Skyblock, Creative (may replace), Survival and Factions (may also replace) server! We will be adding Kit-PvP, Op-Prison and SkyBounds Soon! Our network is in partnership with a in development MMORPG server!


    Positions Taken:


    Co-Owner (1/1)


    Plugin Developer (2/2)


    Website Developer (2/2)


    Manager (1/2)


    Admin (2/3)


    Builder (1/4)


    Builder App:
    https://docs.google.com/forms/d/e/1FAIpQLSdYu8XFKORItR5vYUP6qc0VSEoy7VsjJteZ422rrtIn7fninA/viewform

    Admin/Manager App:
    https://docs.google.com/forms/d/e/1FAIpQLSfwUDgxuL5HnJuq5b7Mq-QO2tIB0tFJ6jWfWXkY3q2Rt919Eg/viewform

    Upon interest of your application, My current Manager "TheGamingJew" will add you on discord!

    Posted in: Server Recruitment
  • 0

    posted a message on SkyNationsNetwork Hiring All Staff and Builders!

    need builders that can build non-symmetrical spawns and help with designs

    Posted in: Server Recruitment
  • 0

    posted a message on SkyNationsNetwork Hiring All Staff and Builders!

    The server is 1.9 to 1.12.2, im not able to make it go any lower.

    Posted in: Server Recruitment
  • 0

    posted a message on SkyNationsNetwork Hiring All Staff and Builders!

    Hello, My name is Ali, an 18-year-old college student (college on strike lol), and the Owner of the unreleased Sky Nations Network. This Network currently Consists of Skyblock, Factions, Survival and Creative. We even have a build server for any builder that want to work on a project. You may think that this is pretty plain and has probably no uniqueness to it. Well, i cant disagree with that, but i also cannot agree. Although i would consider my network a little bit different than others due to the variety of plugins that i have implemented. I am trying to think of as many ways as possible to make this network not just a little bit unique, but on another level. This doesn't mean i am going to add every single plugin into Skyblock, only things that actually go together with the game-mode at least a little bit. Although the server itself is currently ready for release. In the end, im just one person that did this whole project by himself with extreme dedication, literally all of my spare time was used up on Sky Nations. The server itself is done but still can be improved a whole lot more, its merely just a little different than others and is playable. But i need a partner to look after me and my work now, doing things alone is very hard on me. Btw Dedicated admins and up get paid after we achieve a decent player base and donation.


    Positions Taken:


    Co-Owner (1/1)


    Plugin Developer (2/2)


    Website Developer (2/2)


    Manager (1/2)


    Admin (0/3)


    Builder (1/4)


    Senior Mod (3/4)


    Mod (1/4)


    Helper (2/?)

    I am currently in dire need of builders!

    Check out my server if I'm busy (sleeping) Play.McSkyNations.Com

    Helper, Moderator and Senior Moderator:
    https://docs.google.com/forms/d/e/1FAIpQLSf0s6NmNqYcU3BpY-7KHTzG45CPbJQFaUqjsuceSIyVwRvOlw/viewform

    Admin and Manager:
    https://docs.google.com/forms/d/e/1FAIpQLSfwUDgxuL5HnJuq5b7Mq-QO2tIB0tFJ6jWfWXkY3q2Rt919Eg/viewform

    Builder:
    https://docs.google.com/forms/d/e/1FAIpQLSdYu8XFKORItR5vYUP6qc0VSEoy7VsjJteZ422rrtIn7fninA/viewform

    Posted in: Server Recruitment
  • To post a comment, please .