Page 12 of 16

Posted: Tue Oct 05, 2004 10:05 am
by obie411
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.

Posted: Sun Oct 10, 2004 3:21 pm
by Madman
very nice macro thank you kindly. It looks to be well written I only hope that I will learn from the code in this to write my own in the future.

Posted: Sun Oct 10, 2004 5:44 pm
by obie411
I did go through all and change all the < > . I do not work for RPG Experts I happen to be a machine operator at a plant in NY that makes foam products such as Hefty,Kordite and Great Value foam plates and other products of that type. I take the name directly from the Zone in ie You are now entering Everfrost Peaks.

Monk Hunter Mod

Posted: Mon Oct 11, 2004 3:06 am
by MvXciter
This macro rocks! Even this being my first time looking at macros i could tell what was going on.


MvX

I HAVE A SPOON!

Posted: Tue Oct 19, 2004 9:23 am
by Gag
how would i make this macro set a bind point and when non of the mobs i have in my Huntermob.ini are up have it run back to said bind point ONLY when no mobs are up if any one could help i would be great full

Posted: Thu Oct 21, 2004 7:27 pm
by TheAFKBard
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.
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.

Could use some help

Posted: Sun Oct 24, 2004 4:51 pm
by Libwick16
First, i would like to say thanks for this nice macro. I'm having a problem with it however. I'm trying to put my rog into hunter mode, in Mistmoore. So i tried to write the castle of mistmoore as a zone in the .ini file:
[East Commonlands]
Mob1=Spiderling

[The Castle of Mistmoore]
Mob1=Ancille
Mob2=Shadowy
Mob3=Deathly
Mob4=Gargoyle

[The Feerrott]
Mob1=Spider
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
"Attempting to Read section "The Castle of Mistmoore" Zone information from Huntermob.ini...

"The Castle of Mistmoore" is not a Valid Section for FILE:HunterMob.ini, ending macro...

Mob Array Creation Error, ending macro...

I am confused as to how to fix this so that i can set up the hunter macro in the castle of mistmoore. Any help would be appreciated.

Posted: Sun Oct 24, 2004 5:23 pm
by user001
type /who and look in your MQ window for the true zone name. Use that name in your ini file and it should work correctly.

Wow... really cool mac!

Posted: Wed Nov 24, 2004 7:21 am
by EQ007
Just wanted to give you prop's for the awsome mac. I'm using it to level my melee alt's, especially my rogue till i can use Rogue Helper on him.

Can this be made to watch for the "You have gained experiance" instead of doing the istarget dead thing?? Reason i ask is, if my ds kills it, the mac stays in the fighting loop untill i press escape to clear the target.

Why is this happening, you might ask. Well when the ds kills a mob it places the ds hit fist which kills the mob, you see exp message then the final hit of the mob which i presume sends it back into the combat loop.

Other than that, it works great gained 2.5 lvls in about 40 min last night in EC with it and only intervention on my part was stoping mac to take him back to my mage for a ds or clearing target from the issue above.


Keep up the awsome work all you macro makers!!!! /salutes

Posted: Wed Nov 24, 2004 11:52 am
by Lord_Vyper
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.

Posted: Wed Nov 24, 2004 12:17 pm
by insanitywiz
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.
As opposed to the completely appropriate automation of toons that you use macros for?

awesome

Posted: Thu Dec 09, 2004 2:17 pm
by jtanida
This macro is great! I've been using it to farm the goblin ghazhouli ring <spelling?> in LoIO and it's been great. I did make a small change though that mey be usefull for other people too. Problem I had was that greater scalebones and some of the sarnaks spawn way out of the spawn area for the courier, but shrinking the target radius so it wouldn't reach across the lake meant that there could be a courier spawn near the windmill that I wouldn't pick up. So I moded the code so it was more like this:

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 
   |------------------------------------------------------------ 

and then added the x and y conditions to the targeting parameters:

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 
            } 
This tossed out all targets outside the couriers spawn area (the numbers still need some smudging, but I had to leave before I finished). Now, this is something I'm not too good at, but was thinking it might be a nice feature to be able to add the x and y limits ingame.. perhaps by using like a /setmin /setmax command while the macro is paused or something and having it capture you loc and setting the limits bassed off that.
Anyhow.. I hope this is helpefull to some of ya :)

Posted: Mon Dec 13, 2004 11:36 pm
by endymion
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.
I'll take a Cleric, Enchanter, and Necro version, please.

Hell, a Warrior one too, while you're at it. My guild needs a new MT.

I need these by tomorrow night.





jackass.

Posted: Mon Dec 20, 2004 1:53 pm
by gxs
I've been trying to modify the code, but My intentions are to not loot all together, im using this to PL my new monk and I dont much care for looting stuff off skeletons and stuff, any pointers?

Posted: Sat Jan 01, 2005 10:05 am
by aChallenged1
It really wouldn't be hard. Just comment out the section that calls the loot sub.