Have a macro idea but not sure where to start? Ask here.
Moderator: MacroQuest Developers
-
MacroUser
- orc pawn

- Posts: 10
- Joined: Sun Oct 17, 2004 7:54 pm
Post
by MacroUser » Sun Nov 07, 2004 9:25 pm
I know I saw it on MQ I remember looking at the source and it said Will use a spell instead of running up and hitting to agro I've been searching for like 3 days and I can't find it was wondering if ne1 can help me out
-
Rhysel
- orc pawn

- Posts: 11
- Joined: Wed Oct 06, 2004 11:04 am
Post
by Rhysel » Mon Nov 08, 2004 4:18 am
-
MacroUser
- orc pawn

- Posts: 10
- Joined: Sun Oct 17, 2004 7:54 pm
Post
by MacroUser » Mon Nov 08, 2004 1:06 pm
yeah I'm aware of both of those they aren't what I"m looking for I need one that will target mobs in a certain radius and cast slow on em or something to agro not run around and pull
Wolf's Macro = This macro will run your character around killing any mobs -- taken from the source
Screwballs = Assist tank at 95% -- taken from source it is from the Rogue Helper which I'm also familiar with
p.s. I've RTFM and used search over and over like 50 times I still can't find the one that pulls with a spell
-
fearless
- Not a Psychic
- Posts: 2684
- Joined: Wed Mar 10, 2004 3:52 pm
Post
by fearless » Mon Nov 08, 2004 1:11 pm
If you have searched, then perhaps you have come across the warning that AFK macro's are not supported, and should not be asked for.
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]
-
MacroUser
- orc pawn

- Posts: 10
- Joined: Sun Oct 17, 2004 7:54 pm
Post
by MacroUser » Mon Nov 08, 2004 1:50 pm
yes I've came across that fear
-
JGC84
- a ghoul

- Posts: 116
- Joined: Sat Nov 29, 2003 2:51 am
Post
by JGC84 » Mon Nov 08, 2004 3:32 pm
perhaps if you added in a /target npc radius xxx command, then use the post target pathing of the hunter script, then you could ninja the return to anchor source out of 1 of the million sof macros that have anchor scripts, and you'd have a pulling macro, wow
ACK! I think I blew it up....
I dont think your allowed to talk about this outside of a "free speech zone" anymore.
-
MacroUser
- orc pawn

- Posts: 10
- Joined: Sun Oct 17, 2004 7:54 pm
Post
by MacroUser » Mon Nov 08, 2004 8:15 pm
first off I don't know how the fuck to code these macro's I'm unsure if I would have to just /target npc 200 or some of that IF.Stunned (%[Weird.Shit]$) stuff ... etc but I guess I can just copy + paste the rest I'll look at it though
-
Cr4zyb4rd
- Plugins Czar
- Posts: 1449
- Joined: Tue Jul 20, 2004 11:46 am
Post
by Cr4zyb4rd » Tue Nov 09, 2004 12:42 am
IF.Stunned (%[Weird.Shit]$)
Just put that at the top of the .cpp and compile. Your macro should work no problem.
-
JGC84
- a ghoul

- Posts: 116
- Joined: Sat Nov 29, 2003 2:51 am
Post
by JGC84 » Tue Nov 09, 2004 8:17 am
cr4zy imgane the number of members of the IF class, IF.Stunned, IF.Thrusty, IF.IAmACrazyMotherFucker, IF.ILikeCheese, the possiblities are endless!
Code: Select all
(pCharSpawn->Data.pCharInfo->IF.ILikeCheese) {
pCharData->MakeConstipated();
}
ACK! I think I blew it up....
I dont think your allowed to talk about this outside of a "free speech zone" anymore.
-
MacroUser
- orc pawn

- Posts: 10
- Joined: Sun Oct 17, 2004 7:54 pm
Post
by MacroUser » Wed Nov 10, 2004 12:45 pm
Something like this? its from rogue helper source
Code: Select all
|- Check for leash tugging and move back to stake some if so
/if (${doLeash}) {
/if (${leashholder.Equal[Nobody]} && (${Math.Distance[${Me.Y},${Me.X}:${stakeY},${stakeX}]}>${leashlength})) {
/if (${verbosity}>=2) /${channel} CHOKE! We're at the leash's length! (${leashlength} ft.)
/if (${verbosity}>=1) /${channel} ** Autoassist is now OFF!
/varset doAutoassist FALSE
/attack off
/if (${useMU}) /squelch /stick off
/face ${If[${Me.Swimming},,nolook]} loc ${stakeY},${stakeX}
/keypress forward hold
/delay 1s ${Math.Distance[${Me.Y},${Me.X}:${stakeY},${stakeX}]}<${Math.Calc[${leashlength}*${leashflex}/100]}
/keypress forward
|- Slow 180degree turns take time, and we may have turned off attack, so...
/goto :ForeverLoop
}
/if (!${leashholder.Equal[Nobody]} && ${Spawn[${leashholder}].ID} && (${Spawn[${leashholder}].Distance}>${leashlength})) {
/if (${verbosity}>=2) /${channel} CHOKE! Tugging on ${leashholder}'s leash! (${leashlength} ft.)
/if (${verbosity}>=1) /${channel} ** Autoassist is now OFF!
/varset doAutoassist FALSE
/attack off
/if (${useMU}) /squelch /stick off
/squelch /face ${If[${Me.Swimming},,nolook]} id ${Spawn[${leashholder}].ID}
/keypress forward hold
/delay 1s ${Spawn[${leashholder}].Distance}<${Math.Calc[${leashlength}*${leashflex}/100]}
/keypress forward
|- Slow 180degree turns take time, and we may have turned off attack, so...
/goto :ForeverLoop
}
|- Broken leash check
/if (!${leashholder.Equal[Nobody]} && !${Spawn[${leashholder}].ID}) {
/if (${verbosity}>=1) /${channel} ** Master DEAD or ZONED! Leash is BROKEN!
/varset doLeash FALSE
/varset leashholder Nobody
/ini "RHSettings.ini" "General" "Leashing" "${doLeash}"
/ini "RHSettings.ini" "General" "LeashHolder" "${leashholder}"
/goto :ForeverLoop
}
}
-
Neolesh
- a hill giant

- Posts: 231
- Joined: Mon Aug 23, 2004 11:15 am
Post
by Neolesh » Wed Nov 10, 2004 1:50 pm
good grief, come back when you've actually put forth some effort into learning this scripting language. General consensus around here, if you can't figure this out, you don't deserve to use it.
first off I don't know how the fuck to code these macro's
This is good advice, if you don't know how the "fuck" to do it, either learn or leave this place. You are in a hostile environment.
-
insanitywiz
- a hill giant

- Posts: 250
- Joined: Mon Jul 08, 2002 7:50 am
Post
by insanitywiz » Wed Nov 10, 2004 2:11 pm
Some less angry advice for you, take one of the simple macros and use it, I don't care if it doesn't do what you want it too. Use it, then study it, and learn how it works. Then take a few of the more complicated macros out and do the same. If you don't know how to code them yourself, thats the only way to learn and no one here is going to write custom macros for your use.
-
mekaniak
- a hill giant

- Posts: 290
- Joined: Thu Sep 18, 2003 3:21 pm
Post
by mekaniak » Wed Nov 10, 2004 4:28 pm
insanitywiz gives good advice right there. How do you think I made my kiting macro. Just practice. It took me 15 tries just to get the advpath includes to work the way i wanted. Everything here just takes practice.
first off I don't know how the fuck to code these macro's
No one even began to show some hate towards you before you go swearing at the message board...tisk tisk tisk shame on you.
I love the Power Glove, it's so bad
Say hello to M.C. Smurf!
[quote]<mekaniak> adios guys.
<dont_know_at_all> idiot
* mekaniak is now known as mekaniak_dinner
<Jacensolo> me?
<dont_know_at_all> not this time
[/quote]
[quote]
<dont_know_at_all> A_Enchanter_00, how the fuck should i know? it's your code[/quote]
I love quoting IRC chat.
-
MacroUser
- orc pawn

- Posts: 10
- Joined: Sun Oct 17, 2004 7:54 pm
Post
by MacroUser » Thu Nov 11, 2004 1:04 pm
onos I'm sorry I said the F word

I wasn't swearing at anybody whats the deal plz