Ok... Beep problem

Help section from before the user variable changes that broke all macros

Moderator: MacroQuest Developers

Iceassassin
a lesser mummy
a lesser mummy
Posts: 49
Joined: Tue Nov 05, 2002 11:40 am

Ok... Beep problem

Post by Iceassassin » Mon Dec 09, 2002 6:09 pm

Code: Select all

| - Auction.mac - 
| Made by Iceassassin

#chat auction
#chat tell 
#event tell "tells you"

Sub Main 
:loop 
/auction WTS Hi

|100 second pause 
/delay 1000
/doevents
/goto :loop 
/return

Sub Event_tell
/beep
/return 
Why won't my beep work? Kinda pissing me off. :evil:

zedisdeadbaby
a ghoul
a ghoul
Posts: 83
Joined: Sun Nov 03, 2002 4:24 pm

Post by zedisdeadbaby » Mon Dec 09, 2002 6:16 pm

Does typing /beep from the chatbox while MQ is running do anything?

Edit: also won't tells go to Event_chat if you have #chat tell at the top? I'm not sure about this, just spewing some random ideas to try to help...

lifewolf
a ghoul
a ghoul
Posts: 143
Joined: Fri Oct 18, 2002 6:29 pm

Post by lifewolf » Fri Dec 13, 2002 10:54 am

zedisdeadbaby wrote:Edit: also won't tells go to Event_chat if you have #chat tell at the top? I'm not sure about this, just spewing some random ideas to try to help...
Yes

But in this case it will call both. And there is no Event_Chat.. So..

/beep still hates 9x users..

ashplayah
decaying skeleton
decaying skeleton
Posts: 8
Joined: Tue Dec 10, 2002 5:55 pm

Post by ashplayah » Fri Dec 13, 2002 3:36 pm

I could be wrong on this I have not verified but I think that MQ only processes a line into a single event. So any /tells you receive will come across as Event_Chat events and your Event_tell will never be called (I'll have to look at the code and verify this one).

so remove #event tell and chance Sub Event_tell with Sub Event_Chat and look for "tells" in there.