Skip to content

Commit

Permalink
Merge pull request #1 from grimmier378/dev
Browse files Browse the repository at this point in the history
Feat: more events per channel
  • Loading branch information
grimmier378 committed Mar 14, 2024
2 parents 6226edd + 8d0535d commit abe5fd8
Show file tree
Hide file tree
Showing 2 changed files with 198 additions and 196 deletions.
121 changes: 121 additions & 0 deletions default_settings.lua
@@ -0,0 +1,121 @@
return {
['Channels'] = {
['Exp AA pts'] = {
['Events'] = {
[2] = {
['color'] = 'orange',
['eventString'] = '#*#gained an ability point#*#',
},
[1] = {
['color'] = 'yellow',
['eventString'] = '#*#You have gained#*#experience!#*#',
},
},
['enabled'] = true,
},
['Group'] = {
['Events'] = {
[2] = {
['color'] = 'grey',
['eventString'] = '#*#You tell your party, \'#*#',
},
[1] = {
['color'] = 'teal',
['eventString'] = '#*#tells the group#*#',
},
},
['enabled'] = true,
},
['Say'] = {
['Events'] = {
[2] = {
['color'] = 'grey',
['eventString'] = '#*#You say, \'#*#',
},
[1] = {
['color'] = 'white',
['eventString'] = '#*#says,#*#',
},
},
['enabled'] = true,
},
['Tells'] = {
['Events'] = {
[2] = {
['color'] = 'grey',
['eventString'] = '#*#You told #1#,#*#',
},
[1] = {
['color'] = 'magenta',
['eventString'] = '#*#tells you,#*#',
},
},
['enabled'] = true,
},
['OOC'] = {
['Events'] = {
[2] = {
['color'] = 'grey',
['eventString'] = '#*#You say out of character,#*#',
},
[1] = {
['color'] = 'dkgreen',
['eventString'] = '#*#say#*# out of character,#*#',
},
},
['enabled'] = true,
},
['Shout'] = {
['Events'] = {
[2] = {
['color'] = 'grey',
['eventString'] = '#*#You shout, \'#*#',
},
[1] = {
['color'] = 'red',
['eventString'] = '#*#shouts,#*#',
},
},
['enabled'] = false,
},
['Raid'] = {
['Events'] = {
[2] = {
['color'] = 'grey',
['eventString'] = '#You tell your raid,#*#',
},
[1] = {
['color'] = 'dkteal',
['eventString'] = '#*#tells the raid#*#',
},
},
['enabled'] = false,
},
['Guild'] = {
['Events'] = {
[2] = {
['color'] = 'grey',
['eventString'] = '#*#You say to your guild, \'#*#',
},
[1] = {
['color'] = 'green',
['eventString'] = '#*#tells the guild#*#',
},
},
['enabled'] = false,
},
['Auction'] = {
['Events'] = {
[2] = {
['color'] = 'grey',
['eventString'] = '#*#You auction,#*#',
},
[1] = {
['color'] = 'dkgreen',
['eventString'] = '#*#auctions,#*#',
},
},
['enabled'] = true,
},
},
}

0 comments on commit abe5fd8

Please sign in to comment.