The following should work for getting the number of spawns around a set loc. When using 'loc' in a search you must include a radius, otherwise EQ things it is a radius of 0. #turbo 30 sub Main /declare n int local /declare c int local /declare r int local 50 /declare X int local 600 | X loc /declare...
| - myfirst.mac - | | Just to prove I have a basic understanding of Event usage | Subroutine usage and return and paramaters for catching chat sequences. | #Event Assist "#1# tells the #*#Assist#*#" #Event UnderAttack "#1# has #2# you for#*#" Sub Main :Loop /if ( ${Target.State....
I have been working on a script for my shaman also and this is something that I have run into. My shaman is the same lvl as yours from what you shaman macro says. There are 3 ways I was thinking of doing this: 1 - cast the buff on yourself and group, then when you refresh it on yourself also refresh...
To get my magelo to work at work I had to change a setting... Tools - Internet Options... - Advanced - HTTP 1.1 settings - turn on 'Use HTTP 1.1 through proxy connections' That worked for me. Not sure if the Magelo website tells you to do that or not, but that is what I did and it work just fine. no...
like aChallenged1 said in advPath.inc there is a sub called 'CheckDoor'. That is the section of code that is called to open and walk you through a door. If you look through that sub you will see... /doortarget /if (${Target.Name.Find["door"]} && ${Target.Distance}<=12) { /keypress ...
Do the Trader of the Haven quest in SH and you will be able to trade afterwards. Atleast I could, did it on a barb and gnome, both could trade when wearing the amulet.
you are getting the error from your UI. Go to the UI section and read through the UI thread you are using. The frequency UI has been updated to fix the error (I don't play a bard so not sure for bards, but i bet you could find your answer there.) If the answer isn't there ask it in the UI thread cau...
I have no idea if this will work. I just changed the code to MQ2. DAS may need to be 6 instead of 5. If you have trouble with the "Fresh Fish" that may be what it is. | - Fishing.mac - | You need a fisherman's companion in an inventory slot for this macro to work properly. #event PrimaryHa...
I am also looking for suggestions on what 3 chars I should start. I asked last night on the message board and got some suggestions, but I figured I would also post in this thread to see if anyone else had any ideas. I am really up for any grouping. The only requirement that I have is that the 3 of t...
Haven't looked at any of the other numbers but for the problem with #9 from Nightshift it might be this: Your Heal sub never checks if you have enough mana to actually cast the spell, it just tries to cast the spell. So wither you have mana or not you stand up and try to heal your self then sit back...
One way to work on not pulling the whole zone when running around an obstacle is to constanly check if a new mob is closer as you run around the obstacle. That way in the above example from Saelinye you would find that the closest mob is Y3 once you get halfway around the obstacle. Then you could ju...