Thread Tools Display Modes
07/08/15, 07:26 AM   #1
Meai
 
Meai's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2015
Posts: 13
GuildEvents

I've been working on an event addon, so people guild members can sign up for events right in the game.

It works by adding events to the guild MOTD.
Members can sign up for events by adding the event ID to their member note.
This addon can then see who is signed up for each event.

FEATURES
  • Create/Delete events via the UI
  • See events for a guild by selecting a guild on the left.
  • Sign up for events by checking the check box and unsign up by unchecking the check box.
  • Everyone in the guild can see who signed up for an event.
  • Attendee list is updated in real time when members sign up for an event
  • Open/close the window with a hotkey.
  • You can only create up to 5 events. (for now)


To be added (in no particular order)
  • Button for event leaders that automatically invites all attendees when clicked.
  • Alerts when new events have been created. (Option to turn off in addon settings)
  • Functionality to send whispers to attendees.
  • Show of the people that signed up for the event, who is actually in the group. (So leaders can see who they still need to invite)
  • Alert when someone signed up for an event. (Option to turn this off in the addon settings)
  • Ability to define roles when signing up. (Tank, healer, damage)

Last edited by Meai : 07/11/15 at 06:57 AM.
  Reply With Quote
07/08/15, 10:46 AM   #2
Atropos
 
Atropos's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 19
Nice idea, Meai. It's sad that we have to resort to abusing tools like MOTD and member notes in order to pass information like this. I realize ZOS has some serious concerns about cross-addon communication, but there's a huge number of quality of life improvements that could be made if some restricted ability to maintain background communication were allowed.
  Reply With Quote
07/08/15, 11:11 AM   #3
Meai
 
Meai's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2015
Posts: 13
Thanks Atropos.
Yes I wish there was an easier way, but alas...
Part of me feels a little dirty having to do some sort of work around like using guild MOTD, but oh well. It works and so far words somewhat well. =)
  Reply With Quote
07/10/15, 08:17 AM   #4
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,903
Are we able to keep our guild member note as it is and just add the id somewhere at the end/at the bginning in a particular format?
Something like "|1,2|" e.g. to attend to events 1 and 2?
  Reply With Quote
07/10/15, 10:29 AM   #5
Meai
 
Meai's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2015
Posts: 13
Yes, it just adds to the guild note.

So if your guild note is:

v14 NB, Temp
God Of Crafting

It will just add #1# to the end of it. SO it would look like this:
v14 NB, Temp
God Of Crafting
#1#

The only problem is that is someone puts another # in their guild note, it may confuse the addon. Something to add to the TODO list I guess =)

Last edited by Meai : 07/10/15 at 10:30 AM. Reason: Forgot to metion the #
  Reply With Quote
07/12/15, 01:34 PM   #6
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,903
Perhaps use another character like the pipe symbol in my example, or a combination someone would manually use, like <|1,2,5|>
  Reply With Quote
07/12/15, 03:06 PM   #7
Meai
 
Meai's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2015
Posts: 13
I tried pipe at first, but couldn't get it to work right for some reason, not sure why tbh.

Edit: BTW I see your did FCO Item save, I use that addon al l the time, great addon!

Last edited by Meai : 07/12/15 at 03:07 PM. Reason: Added stuff
  Reply With Quote
08/16/15, 07:56 PM   #8
Treaborne
Join Date: Aug 2015
Posts: 1
Have you tried printing the character using string formating?

Lua Code:
  1. string.char(124)

That would or rather should represent the pipe symbol '|'

Not sure how ESO stores this data yet though.. only worked with LUA for RIFT but hope to make some addons for ESO very soon.

Congrats on your addon btw and good luck on progression

Last edited by Treaborne : 08/16/15 at 07:59 PM. Reason: ;)
  Reply With Quote
08/16/15, 08:15 PM   #9
merlight
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 671
Just use anything other than pipe, ESO uses it as escape, so you'd need to double each one.
  Reply With Quote
08/16/15, 11:26 PM   #10
Meai
 
Meai's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2015
Posts: 13
Oh ok, thanks for the feedback, I'll give it a try!
  Reply With Quote

ESOUI » AddOns » Released AddOns » Event SignUp Addon

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off