andru wrote:
Anywhere one of you programming-adepts could guide a hopeful such as myself?
Cheers!
Ok the way i taught myself was simple, think of a simple macro i want to do.
(Forage)
Then look at other macros and learn the basics by looking at every start in the macro.
all start with
then normally a Heading
then a check to see if the ability exists and if true execute
Code: Select all
/if (${Me.AbilityReady[Forage]}) /doability "Forage"
to break the top code down:
if (/if) i have the ability Forage AND its ready to be used ( (${Me.AbilityReady[Forage]}) ) THEN forage ( /doability "Forage" )
then we need to tell the program to delay a second and then loop.
so above we say wait 1 second then goback to that heading we spoke of earlier and start again.
We will also need to put what we forage into the inventory you will need to insert somewhere:
I will let you decide where it goes.
ALLWAYS remember Case Sensitive so :forage is not the same as :Forage
from there you could decide to record your stuff in an ini file and destroy the crap, Look for a macro that already does it and COPY it then break it down to see how it works, if you are really really stuck and dont understand, look at another and see if its done a different way, if your still stuck paste what you HAVE figured out in the help section and then ask about what you dont understand, People WILL help you if you have shown you can do SOMETHING yourself, if you post something like HELP ME i want to forage you will get jack shit help and shitfull of flame'ing, if you post your code so far and say please help me add this with a little bit of text explaining what you want to do then most likely someone will help.
I can 100% tell you it will work because i DID IT, i started with NO knowledge of macros AT ALL, i started that way and have now posted a number of working macros for others to use and enjoy.
It is not that hard ONCE you understand 2 things.
No one is obliged to help you
Everything you need to do the job is HERE on this forum ( Everything ).
Good Luck.