1. #1
    Mechagnome Zhaine's Avatar
    15+ Year Old Account
    Join Date
    Sep 2008
    Location
    United Kingdom
    Posts
    650

    Weakaura at certain time of day

    I need a weakaura that appears on my screen during a certain time of the day, for example 10pm-7am.

    Getting complaints from the neighbours that I'm too noisy (Because I'm shouting during PvP) I mean its a friday night so I dunno why its an issue lol

    Thought it would be a good idea to remind me to keep quiet!

  2. #2
    Use a profile...?

  3. #3
    Code aside, it doesn't matter what day of the week you're being noisy. It is socially expected that residential areas are to be quiet between 10pm and 6am.

    With that said, you can use the following for a trigger:

    Code:
    function()
        local hour = tonumber( date( "%H" ) )
        return hour >= 22 or hour <= 6
    end

    That will return true if your computer's time is between 10:00pm and 6:59am.
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •