Moderator: MacroQuest Developers

Judging by your post count and your attitude, you obviously need to spend more time searching and reading the fucking manual before spouting off, or even asking questions.obie411 wrote:I'm sorry I must be a STUPID FUCKING ASS and was just wanting some dickless wonder like you to come along and rape me. I came here looking for help or information since I am not a computer programmer or any other type of computer wiz just a regular Joe noob so thanks for the insight into how this board works. Oh by the way my ass is a LUBED UP SO RAPE AWAY.
That is what i have written in my hunter.mac file. I went to the castle of mistmoore and tried to run the macro, but it keeps saying[East Commonlands]
Mob1=Spiderling
[The Castle of Mistmoore]
Mob1=Ancille
Mob2=Shadowy
Mob3=Deathly
Mob4=Gargoyle
[The Feerrott]
Mob1=Spider


Code: Select all
|------------------------------------------------------------
|What is the minimum Z Value of mobs I should target?
|------------------------------------------------------------
/declare RV_MinZRange int outer -1000
|------------------------------------------------------------
|What is the maximum Z Value of mobs I should target?
|------------------------------------------------------------
/declare RV_MaxZRange int outer 1000
|------------------------------------------------------------
|What is the minimum X Value of mobs I should target?
|------------------------------------------------------------
/declare RV_MinXRange int outer -3600
|------------------------------------------------------------
|What is the maximum X Value of mobs I should target?
|------------------------------------------------------------
/declare RV_MaxXRange int outer -1500
|------------------------------------------------------------
|What is the minimum Y Value of mobs I should target?
|------------------------------------------------------------
/declare RV_MinYRange int outer -3400
|------------------------------------------------------------
|What is the maximum Y Value of mobs I should target?
|------------------------------------------------------------
/declare RV_MaxYRange int outer 500
|------------------------------------------------------------
Code: Select all
/if (${Int[${Target.Z}]}<${RV_MinZRange}) {
/echo Mob is BELOW Min Z Range, picking another...
/varset RV_InvalidTargetID ${Target.ID}
/call ResetSub
/goto :Acquire
}
/if (${Int[${Target.Z}]}>${RV_MaxZRange}) {
/echo Mob is ABOVE Max Z Range, picking another...
/varset RV_InvalidTargetID ${Target.ID}
/call ResetSub
/goto :Acquire
}
/if (${Int[${Target.X}]}<${RV_MinXRange}) {
/echo Mob is BELOW Min X Range, picking another...
/varset RV_InvalidTargetID ${Target.ID}
/call ResetSub
/goto :Acquire
}
/if (${Int[${Target.X}]}>${RV_MaxXRange}) {
/echo Mob is ABOVE Max X Range, picking another...
/varset RV_InvalidTargetID ${Target.ID}
/call ResetSub
/goto :Acquire
}
/if (${Int[${Target.Y}]}<${RV_MinZRange}) {
/echo Mob is BELOW Min Y Range, picking another...
/varset RV_InvalidTargetID ${Target.ID}
/call ResetSub
/goto :Acquire
}
/if (${Int[${Target.Y}]}>${RV_MaxYRange}) {
/echo Mob is ABOVE Max Y Range, picking another...
/varset RV_InvalidTargetID ${Target.ID}
/call ResetSub
/goto :Acquire
}
I'll take a Cleric, Enchanter, and Necro version, please.Lord_Vyper wrote:How bout I just give you a macro that will hack the server and make your rogue 70? Seems about as appropriate as what you're asking.
