Problem/Bug GAListener Not Working! -Please Help

Discussion in 'Plugin Help/Development/Requests' started by Smurtz, Sep 28, 2016.

Thread Status:
Not open for further replies.
  1. Offline

    Smurtz

    My GAListener isn't broadcasting that votes are being received, not is it giving voters their items!

    Code:
    #  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: false
      cumulative: true
      broadcastqueue: true
      broadcastrecent: true
      broadcastoffline: false
      votecommand: true
      rewardcommand: true
      joinmessage: true
      voteremind: true
      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}$5000 In-Game Cash, 16 XP Bottles, and 6 Diamonds!'
        playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
        commands:
        - '/eco give {username} 5000'
        - '/give {username} 264 6'
        - '/give {username} 384 16'
    
    #  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:
      '3':
        broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
        playermessage: '{GREEN}You were lucky and received an extra $1000!'
        commands:
        - '/eco give {username} 1000'
      '5':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 8 XP Bottles and $1000!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 8 XP Bottles and $1000!'
        commands:
        - '/give {username} 384 8'
        - '/eco give {username} 2000'
      '10':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received {GREEN}Kit Titan!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}Kit Titan!'
        commands:
        - '/kit titan {username}'
      '20':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received {GREEN}5 God Apples and an extra $10000!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}5 God Apples and an extra $10000!'
        commands:
        - '/give {username} 322:1 5'
        - 'eco give {username} 10000'
      '50':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received {GREEN}Kit Legendary and $20000!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}Kit Legendary and $20000!'
        commands:
        - '/kit legendary {username}'
        - 'eco give {username} 20000'
      '100':
        broadcast: '{GREEN}{username} {GOLD}was super lucky and received {GREEN}Kit Beast!'
        playermessage: '{GREEN}You were super lucky and received an {GREEN}Kit Beast!'
        commands:
        - '/kit beast {username}'
    
    #  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:
        - '/give {username} 264 10'
    
    #  cumulative reward section
    #  This example would give players 20 Diamonds once they have reached a total of 10 votes.
    
    cumulative:
      '10':
        broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}20 Diamonds!'
        playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
        rewardmessage: '20x Diamond'
        commands:
        - '/give {username} 264 20'
    
    #  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:
    - '{GOLD}-----------------------------------------------------'
    - 'Vote for us every day for in game rewards and extras'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}You currently have {GREEN}{votes} Votes'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}{BOLD}Lucky Votes'
    - '{GREEN}1/3  Chance Of {AQUA}An Extra $1000!'
    - '{GREEN}1/5  Chance Of {AQUA}An Extra 8 XP Bottles and $1000!'
    - '{GREEN}1/10  Chance Of {AQUA}Kit Titan!'
    - '{GREEN}1/20  Chance Of {AQUA}5 God Apples And An Extra $20000!'
    - '{GREEN}1/50  Chance Of {AQUA}Kit Legendary And An Extra $20000'
    - '{GREEN}1/100  Chance Of {AQUA}Beast Kit!'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}{BOLD}Vote Links'
    - '{GREEN}-http://minecraft-server-list.com/server/367929/vote/'
    - '{GREEN}-http://topg.org/Minecraft/in-443203'
    - '{GREEN}-http://www.minecraftforum.net/servers/10205-siberiapvp/vote'
    - '{GREEN}-http://minecraftservers.org/vote/387801'
    - '{GREEN}-http://www.minecraft-index.com/51851-siberiapvp/vote'
    
    
    remindmessage:
    - '{GOLD}-----------------------------------------------------'
    - 'You have not voted recently, please vote to support the server'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}You currently have {GREEN}{votes} Votes'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}{BOLD}Lucky Votes'
    - '{GREEN}1/3  Chance Of {AQUA}An Extra $1000!'
    - '{GREEN}1/5  Chance Of {AQUA}An Extra 8 XP Bottles and $1000!'
    - '{GREEN}1/10  Chance Of {AQUA}Kit Titan!'
    - '{GREEN}1/20  Chance Of {AQUA}5 God Apples And An Extra $20000!'
    - '{GREEN}1/50  Chance Of {AQUA}Kit Legendary And An Extra $20000'
    - '{GREEN}1/100  Chance Of {AQUA}Beast Kit!'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}{BOLD}Vote Links'
    - '{GREEN}-http://minecraft-server-list.com/server/367929/vote/'
    - '{GREEN}-http://topg.org/Minecraft/in-443203'
    - '{GREEN}-http://www.minecraftforum.net/servers/10205-siberiapvp/vote'
    - '{GREEN}-http://minecraftservers.org/vote/387801'
    - '{GREEN}-http://www.minecraft-index.com/51851-siberiapvp/vote'
    
    joinmessage:
    - '{GOLD}-----------------------------------------------------'
    - 'Vote for us every day for in game rewards and extras'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}You currently have {GREEN}{votes} Votes'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}{BOLD}Lucky Votes'
    - '{GREEN}1/3  Chance Of {AQUA}An Extra $1000!'
    - '{GREEN}1/5  Chance Of {AQUA}An Extra 8 XP Bottles and $1000!'
    - '{GREEN}1/10  Chance Of {AQUA}Kit Titan!'
    - '{GREEN}1/20  Chance Of {AQUA}5 God Apples And An Extra $20000!'
    - '{GREEN}1/50  Chance Of {AQUA}Kit Legendary And An Extra $20000'
    - '{GREEN}1/100  Chance Of {AQUA}Beast Kit!'
    - '{GOLD}-----------------------------------------------------'
    - '{AQUA}{BOLD}Vote Links'
    - '{GREEN}-http://minecraft-server-list.com/server/367929/vote/'
    - '{GREEN}-http://topg.org/Minecraft/in-443203'
    - '{GREEN}-http://www.minecraftforum.net/servers/10205-siberiapvp/vote'
    - '{GREEN}-http://minecraftservers.org/vote/387801'
    - '{GREEN}-http://www.minecraft-index.com/51851-siberiapvp/vote'
    
    #  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'
    
     
  2. Offline

    oceantheskatr

    Stop your server.
    Start your server.
    When it's fully started, log on, then vote.
    Wait 30 seconds, then stop your server.
    Go in to your server files.
    Go to the logs folder.
    Open the file called latest.log.
    Copy and paste the contents at http://pastebin.com/.
    Post it there and then link the URL here.
     
Thread Status:
Not open for further replies.

Share This Page