What can you put after #chat

Need help with a macro you are writing? Ask here!

Moderator: MacroQuest Developers

omper
a ghoul
a ghoul
Posts: 110
Joined: Sat Dec 06, 2003 10:46 pm

What can you put after #chat

Post by omper » Thu May 06, 2004 11:43 pm

I know that you can put

#chat tell

But what else can you use..

ie i want an event to kick when i gain exp.. how would i do that.. and also when I am too far away from target..


tks

User avatar
ieatacid
Developer
Developer
Posts: 2727
Joined: Wed Sep 03, 2003 7:44 pm

Post by ieatacid » Thu May 06, 2004 11:46 pm

I think this is all of them.

Code: Select all

#chat say
#chat tell
#chat ooc
#chat shout
#chat auc
#chat guild
#chat group
#chat chat 
Pretty sure "#chat chat" is what you'd want to use for exp messages and similar.

omper
a ghoul
a ghoul
Posts: 110
Joined: Sat Dec 06, 2003 10:46 pm

Post by omper » Thu May 06, 2004 11:50 pm

tks .. will try that..

Preocts
a snow griffon
a snow griffon
Posts: 312
Joined: Thu Jan 29, 2004 1:02 pm

Post by Preocts » Fri May 07, 2004 8:33 am

#Chat is for.... chat. #Event would be for... events. Gaining experience is an event, OOC is a chat. Don't know if a chat event is going to work when you gain experience.

Code: Select all

#Event GainExp "You gain" 
#Event GainExp "You regain some experience from resurrection" 
#Event LoseExp "You have been slain" 
Cut and pasted from:
http://macroquest2.com/phpBB2/viewtopic.php?t=6962

If you happen to try #Chat for those events and it works let me know eh?

User avatar
bohicaseti
a lesser mummy
a lesser mummy
Posts: 33
Joined: Sat Mar 06, 2004 5:55 am

Post by bohicaseti » Fri May 07, 2004 1:53 pm

Just to satisfy a curiosity of mine, is there a #chat Raid? Or would the raid chatter be considered under the #chat Chat area? Just an odd question that popped in my head when I saw this. :)
Friends help friends move . . . .
Real friends help friends move dead bodies.

Rusty~
a hill giant
a hill giant
Posts: 244
Joined: Wed Apr 14, 2004 2:55 pm

Post by Rusty~ » Mon May 10, 2004 10:25 pm

raidsay seems to be counted as an event. not sure why though!

Lax
We're not worthy!
We're not worthy!
Posts: 3524
Joined: Thu Oct 17, 2002 1:01 pm
Location: ISBoxer
Contact:

Post by Lax » Mon May 10, 2004 10:27 pm

theyre all "event"s, but the above are built in. Raid chat wasnt added to EQ until ... ... last year? and was never put in MQ so ;)
Lax Lacks
Master of MQ2 Disaster
Purveyor of premium, EULA-safe MMORPG Multiboxing Software
* Multiboxing with ISBoxer: Quick Start Video
* EQPlayNice, WinEQ 2.0

gruefood
a lesser mummy
a lesser mummy
Posts: 30
Joined: Sat Mar 27, 2004 6:31 pm

Post by gruefood » Mon May 10, 2004 10:46 pm

You might be looking for something like this. I use this to give me an idea of how much exp I'm getting.

Code: Select all

#event CheckExp "slain"

|****  Put these at the top of your macro *****|
    /declare LastExp outer
    /varset LastExp ${Me.PctExp}



|***********************************************************|
Sub Event_CheckExp
    /echo ${Math.Calc[${Me.PctExp}-${LastExp}]}
    /varset LastExp ${Me.PctExp}
/return
|***********************************************************|
Edit: I'm guessing this doesn't work with the latest zip. I have some work to do on my macros. If I had to guess, the first line would be:

Code: Select all

#event CheckExp "#*#slain#*#"

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

Post by Chill » Tue May 11, 2004 6:15 pm

sup with the "#*#" around partial strings, and do we now need those?

also, do we need the #chat chat or whatever above, or can we just code for #events and trust it to pick stuff up?

Preocts
a snow griffon
a snow griffon
Posts: 312
Joined: Thu Jan 29, 2004 1:02 pm

Post by Preocts » Tue May 11, 2004 7:16 pm

RTFM and yes.

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

Post by Chill » Wed May 12, 2004 12:34 pm

thanks for the helpful comments Preocts. I read the readme.chm file and it still shows the old events.

Anyone else having trouble with events, I just found the CUSTOM EVENTS CHANGE COMING post in the Conversion Help forum, and it explains the new system.

I am still unclear if we need to define a "#chat" channel before defining events, however. What happens if we leave it blank? Will it use everything or does it have a default channel it will use if nothing is assigned?