echo guild chat to chanle?

Need help running MacroQuest 1? Too bad! Use MQ2.

Moderator: MacroQuest Developers

crackerhackhead

echo guild chat to chanle?

Post by crackerhackhead » Mon Jun 17, 2002 5:31 am

anyone able to come up with a marco that can read log file as its being wrote and echo it back into a chanle?

User avatar
L124RD
Site Admin
Site Admin
Posts: 1343
Joined: Fri Jun 14, 2002 12:15 am
Location: Cyberspace
Contact:

Post by L124RD » Mon Jun 17, 2002 12:27 pm

Salutations,
just insert one of the folling lines after a /mqlog command

Code: Select all

/mqlog <stuff>

Code: Select all

/say <stuff>
/auction <stuff>
/gsay <stuff>
/guild <stuff>
/ooc <stuff>
/emote <stuff>
/shout <stuff>
/echo <stuff>
Just remember that everything but echo is shown to the server, so it might not be good for some macros.

crackerhead

Post by crackerhead » Tue Jun 18, 2002 12:35 am

was kinda looking for it to be a content runing marco that would do like this for example

mojojojo tells guild:Lord bob is up
/1 <mojojojo> tells guild:lord bob is up
jackshit tells the guild:lets go kill lord bob
/1 <jackshit> tells the guild:lets go kill lord bob


useing whos saying what and reverting it back to the /1 chan or witch ever someone tells it to dump it into

Plazmic
The One
The One
Posts: 800
Joined: Fri Jun 14, 2002 12:31 am
Contact:

Post by Plazmic » Tue Jun 18, 2002 1:24 am

New version has support for all communications channels (that I could think of at least)

This will be supported easily in the next version:

Code: Select all

#chat guild
Sub Main
   :Loop
      /doevents
   /goto :Loop
/return

Sub Event_Chat
  | $p0 will be guild since it's our only #chat
  /1 Hey! $p1 told our guild that $p2
/return
- Plazmic

Guest

Post by Guest » Wed Jun 19, 2002 12:18 am

tryed this it was returning ooc and merchents to the chat

Plazmic
The One
The One
Posts: 800
Joined: Fri Jun 14, 2002 12:31 am
Contact:

Post by Plazmic » Wed Jun 19, 2002 1:47 am

Small bug... #chat enables all due to an extra ampersand in the source ;(

This was fixed in 2002-06-19
- Plazmic