Minecraft Name:
Itz_TheBlackCat
Suggestion:
when you talk in chat, if you are currently in /ch afk an automated message will remind you that you are afk.
Reason:
I often go afk and forget that i am in /ch afk when i come back. Then i talk in chat, someone might pm me, and a message will appear telling them i am afk. This is slightly annoying and unprofessional.
Other Information:
There should be a command to toggle off the reminder, as some people use afk to send links instead of typing them, or to provide other information.
Link to this plugin/Is this a custom addition?:
I don't know
Sorry if this is a stupid suggestion, i'm bad at ECC, especially on forums.
Thread Tools
Thread Tools
-
Blizzard_04 BuilderBuilder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade
-
There is already a reminder. I would hate to have a notice every time I chatted.
-
Agree x 1 -
Potato x 1 - List
-
-
Expipiplusone BuilderBuilder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade
-
The reminder message shows when someone PM's you.
http://i.imgur.com/4VUHpQL.png -
I don't see any reason for the server to create another reminder for this, perhaps you can contact someone who is good with macros, I'm sure someone would be able to make something for you.
-
Expipiplusone BuilderBuilder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade
Oh wait now I get it. Yes, you get a reminder when you receive a pm, but you don't when you send a pm (and this is what this suggestion was about, in my understanding).
So, if you pm someone when you come back, you don't get any alert before you receive their reply: and then it's too late because they received it too.
About solving this with macromod: I did exactly this a long time ago. I have a "control light" in my chat gui showing me whether I'm afk or not. It's a bit tricky, but it roughly works like this:
- add a button to your chat gui, set it to conditional macro
- condition: @afk
- if true: $${unset(@afk)}$$|/ch afk
- if false: $${set(@afk)}$$|/ch afk your message
- add a progress bar to your chat gui, next to the button you just created
- expr: @afk
- min value: false (set flag expr)
- max value: true (set flag expr)
- macro binding event: OnJoinGame
- if you already have an init macro file, add the following line to that file:
- unset(@afk);
- if you don't, then set the macro binding to:
- $${unset(@afk)}$$
- if you already have an init macro file, add the following line to that file:
If you want to be able to chose among a set of predefined messages every time you push the button (and not always the same message), then replace "your message" with "$$0".
Hope this helps!-
Agree x 1 - List
- add a button to your chat gui, set it to conditional macro
-
Expipiplusone BuilderBuilder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade
basically macromod allows you to automatize some functions. for instance, whenever you login, you might want to disable lottery and sg broadcasts, leave global, join trivia, enable fly and cheats... you get the idea. you can write a script and bind that script to the OnJoinGame event, and it will be executed automatically whenever you login. that's just an example of how you can use it, you'll find plenty of examples searching for it in the tutorial section