Search found 64 matches

by Scrime
Fri Nov 21, 2003 8:34 am
Forum: MacroQuest::Help (Outdated)
Topic: Telnet Help
Replies: 2
Views: 6098

Telnet is basically a text terminal, in MQs case, all the text that you receive in the game can be sent to a telnet client. You can also send commands to EQ thru MQ via telnet. People use it for different things. Some people turn off all their MQ text going to the actual EQ screen and just monitor i...
by Scrime
Thu Nov 20, 2003 12:26 pm
Forum: Macro Help (MQ1)
Topic: Working with Arrays
Replies: 2
Views: 789

afaik, arrays (and timers) are global. I dont know of any way to make them local.

As to the other two questions, I don't know. I always keep track of my array sizes manually.
by Scrime
Thu Nov 20, 2003 7:58 am
Forum: Macro Help (MQ1)
Topic: Still can't get included macros to work :/
Replies: 5
Views: 1817

Try changing the multi-line comments to single line comments.
by Scrime
Wed Nov 19, 2003 8:21 am
Forum: MQ2::General
Topic: Ziracle.com updated
Replies: 34
Views: 7848

Seems like there is always at least one knucklehead who decides that he is going to be some sort of savior to the masses in a situation like this. Someone who feels the need to keep the ignorant masses ignorant. I vote that the devs discontinue any public releases of MQ (or MQ2) until Zerix takes do...
by Scrime
Fri Nov 14, 2003 1:34 pm
Forum: MacroQuest::Help (Outdated)
Topic: compiled and runing but EQ not recognize any MQ commands!
Replies: 12
Views: 13408

I dl'd MQ and compiled it and it doesnt work.

Could you possibly be a little more vague?

/boggle

Most of the people who *know* how to use VS seem to have little problem getting MQ to run. Opening a project and clicking compile does not imply "knowing how to use" VS.
by Scrime
Thu Nov 13, 2003 4:13 pm
Forum: MQ2::General
Topic: weblog
Replies: 3
Views: 1038

Would probably be a piece of cake, depending on your access to the host of the website and they type of transport you would want to use.

If I can write a script to run MQ from IRC and AIM, I am sure I could write something to update a web page or database from an EQ log file.
by Scrime
Wed Nov 12, 2003 4:51 pm
Forum: Macro Help (MQ1)
Topic: Newbie with pottery macro
Replies: 9
Views: 2580

I don't mind helping people at all, as long as those people have at least made some small inkling of effort to help themselves first. However, people who make little to no effort to help themselves first and then come here looking for macros that already exist really sets me off. There is a macro th...
by Scrime
Wed Nov 12, 2003 4:43 pm
Forum: Macro Help (MQ1)
Topic: how are spells cast ?
Replies: 4
Views: 1325

As EqMule said, its making a direct call to the cast funtion. Its not using the mouse or the keyboard.
by Scrime
Wed Nov 12, 2003 7:58 am
Forum: Macro Help (MQ1)
Topic: Newbie with pottery macro
Replies: 9
Views: 2580

Numero uno, your script is written using the old variable schema. Maybe get a fresh download, check out some of the updated example scripts, and check some of the newer TS macros in the macro depot. There is also a newer readme.htm that is VERY helpful. (judging on how the info that is available isn...
by Scrime
Tue Nov 11, 2003 8:13 am
Forum: Macro Requests (MQ1)
Topic: Responding to tells from a master
Replies: 7
Views: 2977

It's been a while since I did a bit of scripting, but heres a bare bones (I think): #chat tell Sub Main :MainLoop /doevents /goto :MainLoop /return Sub Event_Chat /if "@Param1"!="MastersName" /return /if "@Param2"~~"sit" /sit /if "@Param2"~~"sta...
by Scrime
Mon Nov 10, 2003 10:18 am
Forum: Macro Requests (MQ1)
Topic: I need a macro creator or just somone who can help lol
Replies: 8
Views: 3203

RTFM, STFW, and don't piss off the people who do donate their spare time to help others (like Wassup).
by Scrime
Mon Nov 10, 2003 10:13 am
Forum: Macro Requests (MQ1)
Topic: question
Replies: 6
Views: 2424

Yes, its possible.
by Scrime
Tue Oct 28, 2003 9:52 pm
Forum: Macro Help (MQ1)
Topic: Fighting with { and }
Replies: 11
Views: 2816

LordGiddion wrote: you can't have a space between } and Else you need it to be }else {
Not true. I have macros that work just fine with:

Code: Select all

/if something {
  somecode
} else {
  someothercode
}
by Scrime
Tue Oct 28, 2003 4:28 pm
Forum: Macro Help (MQ1)
Topic: Fighting with { and }
Replies: 11
Views: 2816

Try:

Code: Select all

/if "$char(state)"=="SIT" {
  /varset state1 sitting
} else {
  some other code
}
by Scrime
Mon Oct 27, 2003 4:07 pm
Forum: MQ2::Development::Feature Discussion
Topic: $merchant(has,"Item") is crashing me
Replies: 7
Views: 1832

I think you are using $char(buff) incorrectly. If I remember correctly $char(buff, spellname) returns the buff slot number for a buff, 0 if you dont have the buff. So for what you are trying to do, I think that: /if n $char(buff,"Clarity II")!=0 /return would work much better. I don't know...