GuessTheNumber

Moved

Total Downloads: 1,151 - First Release: Jul 18, 2016 - Last Update: May 9, 2017

5/5, 20 likes
  1. Please, can I suggest some features?

    1- Can set the Winning number for the next game
    2- Can set Min and Max number IN-GAME
    3- Can set Number of chances for each player IN-GAME
    4- Can set Enable/Disable the Number of chances IN-GAME
    5- Can set Enable/Disable the Economics reward IN-GAME
    6- Can set Enable/Disable the ServerReward IN-GAME
    7- Can set Amount of Economics or ServerReward points IN-GAME
    8- Add a hook for GUIAnnouncements then all ppl will see it on the middle of screen, not only chat.
    9- Add items/kit as reward (or a permission) for the person that win.
    10- Maybe can add some sound like the old sound when you raise up the XP level... can be possible?
     
  2. Hi Im quite new to hosting a server so forgive my noobness but I was wondering is there any way to just award an in game item to the winner such as an airdrop or weapon?

    Thanks in advance
     
  3. Looks like the author is'nt active anymore...
     
  4. I know it isn't active but does anyone else's generate a config file? Mine doesn't seem to want to. Maybe just outdated?
     
  5. Hey I was wondering if you ever thought of being able to have to option for the reward to be an item, for example a supply signal etc? Love the idea of this though!
     
  6. redBDGR updated Guess The Number with a new update entry:

    2.0.0

     
  7. where do we see the winning number/s
     
  8. just added this to my test server and my auto event message keeps saying guess between (0 and 0) even after changing it to 1-100 and reloading plugin

    {
    "Settings": {
    "Auto Event Repeat Time": 90.0,
    "Auto Events Enabled": true,
    "Economics Win Reward": 20,
    "Event Length": 30.0,
    "Max Default Number": 50,
    "Max Tries": 1,
    "Min Default Number": 1,
    "ServerRewards Win Reward": 20,
    "Use Economics": false,
    "Use ServerRewards": true
    }
    }
     
  9. add console commands
     
  10. Im trying to change the numbers by using chat command it keep saying guess between 0-0... and another thing you should look up, when it says use /number <guess> is really confusing since its using /guess number
     
  11. redBDGR updated GuessTheNumber with a new update entry:

    2.0.1

     
  12. Sooo this is strange. One time game started and said guess the number between 0-0 then when it starts again it says correct numbers but you can guess 0 and still win. My numbers are between 10-70 yet 0 wins.

    this is my config
    {
    "Settings": {
    "Auto Event Repeat Time": 600.0,
    "Auto Events Enabled": true,
    "Economics Win Reward": 20,
    "Event Length": 60.0,
    "Max Default Number": 70,
    "Max Tries": 10,
    "Min Default Number": 10,
    "ServerRewards Win Reward": 20,
    "Use Economics": false,
    "Use ServerRewards": true
    }
    }
     
  13. Fix in plugin
    bool autoEventsEnabled = true;
    float autoEventTime = 600f;
    float eventLength = 30f;
    int minDefault = 1;
    int maxDefault = 1000;
    int maxTries = 1;
    ...
    bool Changed = false;
    bool eventActive = true;
    Timer eventTimer;
    Timer autoRepeatTimer;
    int minNumber = 1;
    int maxNumber = 100;
    bool hasEconomics = false;
    bool hasServerRewards = true;
    int number = 0;
     
  14. alright ill take a look at fixing this
     
  15. Win guess 0!!! Autoevent.
     
  16. Hey, some of the text is wrong, for instance it says do /number <guess> but it's actually /guess <number>, also it doesn't work with the latest ServerRewards
     
  17. alright, will fix when i get home, thankyou
     
  18. Actually i just remember, have you made sure that ServerRewards has been enabled in the config?
     
  19. redBDGR updated GuessTheNumber with a new update entry:

    2.0.2