Strange macro request

Have a macro idea but not sure where to start? Ask here.

Moderator: MacroQuest Developers

Effico
a lesser mummy
a lesser mummy
Posts: 69
Joined: Mon Oct 18, 2004 6:03 am

Strange macro request

Post by Effico » Mon Oct 25, 2004 2:19 pm

Could someone point me in the right direction where i could create a macro for the following scenario.

When my guild raids PoTime, the raid leaders ask, in Guildchat, for people who are unable to the join the raid due to limit of 72 being reached, to send her a tell so she can register them for DKP`s qas we sit outside in PoTa waiting for a slot to open up.

What i would need is a system beep everytime the word "DKP" is mentioned in guildchat.

Is this possible?

Thanks

Eff.

User avatar
TheUnholy
a hill giant
a hill giant
Posts: 269
Joined: Wed Mar 03, 2004 11:59 pm

Post by TheUnholy » Mon Oct 25, 2004 5:09 pm

thats.... sad..... hahaha. There's a hundred different macros that "beep if <event>" You can just change the event to watch guild chat for "DKP" Since it seems you gonna be just sitting around afk at a raid, it gives you something to do.

Chill
Contributing Member
Contributing Member
Posts: 435
Joined: Fri May 07, 2004 5:06 pm
Location: Erie, PA

Post by Chill » Tue Oct 26, 2004 3:23 am

Effico, this is a pretty easy one. Try doing a search for "#Event AND /beep" and see what you come up with.

Put a little effort into it and try to come up with something. If you get stuck, post your code and I will help.

Effico
a lesser mummy
a lesser mummy
Posts: 69
Joined: Mon Oct 18, 2004 6:03 am

Post by Effico » Tue Oct 26, 2004 9:23 am

Thanks for the starting points guys,

Off to wreak havoc.

Will posts results later ;)

thanks again.

Effico
a lesser mummy
a lesser mummy
Posts: 69
Joined: Mon Oct 18, 2004 6:03 am

Post by Effico » Tue Oct 26, 2004 9:59 am

hmm,

The problem i have is that i cannot test it without it looking suspicious ;)

Code: Select all

|------------------------------- DKP Alert ----------------------------- 
|--------------------------- Beep "DKP Tells" Notification -----------------------
|----------------------------------------------------------------------------- 
|-------------------- System Beeps when the phrase " DKP " is used by anyone in guildchat
|----------------------------------------------------------------------------- 
|*******************************************************

#event DKP alert "#*#tells the guild,#*#dkp#*#" 

|============================================================================= 

Sub Main 
   /echo Beep DKP alert! 
   :MainLoop 
      /doevents 
      /delay 3s 
      /goto :MainLoop 
/endmacro 

ok please don`t laugh ;)

A_Druid_00
Macro Maker Extraordinaire
Posts: 2378
Joined: Tue Jul 13, 2004 12:45 pm
Location: Rolling on the Lawn Farting

Post by A_Druid_00 » Tue Oct 26, 2004 10:12 am

Just ask someone to say DKP, it's not THAT suspicious. Or, alternatively modify it to listen in group or tells and log in a 2nd toon to test it. I'm consistently amazed at what I'm able to converse about in EQ with no repurcussions whatsoever. Short of sending a GM a tell saying, "Hi, I'm using MQ, please ban me", you're not in any danger. Hell, even then you probably have 50/50 odds since the GM is probably AFK
[quote]<DigitalMocking> man, A_Druid_00 really does love those long ass if statements
<dont_know_at_all> i don't use his macro because i'm frightened of it[/quote]
[quote][12:45] <dont_know_at_all> never use a macro when you can really fuck up things with a plugin[/quote]

User avatar
fearless
Not a Psychic
Posts: 2684
Joined: Wed Mar 10, 2004 3:52 pm

Post by fearless » Tue Oct 26, 2004 10:53 am

Untested

Code: Select all

|------------------------------- DKP Alert ----------------------------- 
|--------------------------- Beep "DKP Tells" Notification ----------------------- 
|----------------------------------------------------------------------------- 
|-------------------- System Beeps when the phrase " DKP " is used by anyone in guildchat 
|----------------------------------------------------------------------------- 
|******************************************************* 

#event DKP "#*#tells the guild,#*#dkp#*#" 

|============================================================================= 

Sub Main 
   /echo Beep DKP alert! 
   :MainLoop 
      /doevents 
      /delay 3s 
      /goto :MainLoop 

Sub event_DKP
  /beep
  /echo "OMGZ SOMEBODY SAID DKP IN GUILD CHAT!"
  /popup "OMGZ SOMEBODY SAID DKP IN GUILD CHAT!"
/return

/endmacro 
You gave it the event, but did not define what it is supposed to do in the sub, also events should be single words, not two words (DKP or DKPalert vs "DKP alert").
Reading . . . it's not just for me.

[url=http://www.catb.org/~esr/faqs/smart-questions.html]How To Ask Questions The Smart Way[/url]
[quote="Ccomp5950"]Fearless showed me the light, you too shall learn.[/quote]

Effico
a lesser mummy
a lesser mummy
Posts: 69
Joined: Mon Oct 18, 2004 6:03 am

Post by Effico » Tue Oct 26, 2004 11:19 am

Thanks Fearless.

really appreciated ;P

I can now watch tv and earn phat DKP`s ;P

Thanks for your help guys, the mind really does boggle at the limitless possibilites.

:)

User avatar
fearless
Not a Psychic
Posts: 2684
Joined: Wed Mar 10, 2004 3:52 pm

Post by fearless » Tue Oct 26, 2004 11:23 am

WTH, I helped somebody that wasn't in VIP . . . the wonders that can happen when the questioner puts forth some effort.
Reading . . . it's not just for me.

[url=http://www.catb.org/~esr/faqs/smart-questions.html]How To Ask Questions The Smart Way[/url]
[quote="Ccomp5950"]Fearless showed me the light, you too shall learn.[/quote]

Chill
Contributing Member
Contributing Member
Posts: 435
Joined: Fri May 07, 2004 5:06 pm
Location: Erie, PA

Post by Chill » Tue Oct 26, 2004 12:20 pm

Code: Select all

|----------------------------- DKP Alert -----------------------------|
|-------------------------- DKP Notification -------------------------|
|---------------------------------------------------------------------| 
| System Beeps when the phrase " DKP " is used by anyone in guildchat |
|---------------------------------------------------------------------|
|-------------------- Written By Effico 26 OCT 04 --------------------|
|---------------------------------------------------------------------| 

#event DKP "#1# tells the guild,#*#dkp#*#" 

Sub Main 
   /echo DKP Alert Active! 
   :MainLoop 
      /doevents 
      /delay 1s 
      /goto :MainLoop 
/endmacro

Sub Event_DKP(string Line, string Name)
   /beep
   /popup ${Name} said DKP!
/return