1. How to get currently time in game ?
    example:
    Actual game time: 17:00:00
    if (currentlyTime > 17) //<- Time in game
    {
    StartVote();
    }
    It's because I want to start a vote automatically if the hours are over 18:00 and below 24:00:00
     
  2. Code:
    float time = ConVar.Env.time;
     
  3. @Slydelix was right. One tip for you:
    Do not forget, that if you will make timer like:
    timer.Every(30, () => { if (time > 17) ... }, dont forget, that you should have some checks like bool isStarted.