Endless Ages - Your Journey Begins > World Discussions > Planet IIA Guides & Tutorials

Planet IIA Guides & Tutorials Post guides and Tutorials for Endless Ages here. If your stuck on something or need help, check this forum for assistance.

Reply
 
LinkBack Thread Tools
Old 07-20-2008, 04:37 PM   #1
Senior Member
 
Join Date: Jul 2008
Posts: 212
Thanks: 6
Thanked 29 Times in 18 Posts
Rep Power: 1 PeterTheLeader is on a distinguished road
Macro Guide

Macros are legal as long as you don't use them for PvP or harassment (If a GM deems anything in this guide illegal, I will gladly edit the post or take it down). Macroing is also illegal if you shoot mobs unattended. Meaning, if you pull ash to the hill, use the macro, and come back a half hour later that is a no-no. However, macroing unattended for trade skills in an inconspicuous spot is fine, say you go to a corner in Trendor and leave the comp on all night, that's okay. Macroing I don't see a macroing guide and they are very cumbersome to get up and running without any help. I hope you enjoy it and it makes your EA life as easy as it does mine .

The macro Tool I use is AC Tool and you can download it here (found from a post plasticAiredale made): AC Tool Home Page

In order to use the following macros, download AC Tool and copy and paste the code that I have listed into it. Delete anything in parenthesis, as it is there to comment on the code and tell you why it's there.

Macroing may cause problems with looting, chatting, moving inventory around, etc... If you want to do something else turn off the macro before you do it.

To macro, you must be in a windowed version of the game. To be windowed, go to the green login screen that you go to whenever you select the game start up icon. Un-check Fullscreen. You can then Alt-Tab to select AC Tool (if you don't have AC Tool or another program up, you can Ctrl+Alt+Delete and go to your start bar). To start your macro, go to the Macro tab and select Start Macro. You cannot edit the macro once it starts, and to do so you must stop the macro.

To use the macro for shooting, merely go to the endless ages window and it should begin. I recommend you move the window up enough so you can see the small tab at the bottem of AC tool that displays info (like how many loops it's been through). Ash takes over 100+ loops with acid gun, so I can tell when I need to be ready to pull him again.


Macro for leveling trade skills* (Just move your mouse over the skill you wish to use, as if you were clicking it manually):
SetActiveWindow ENDLESS (Sets the macro to stay open i guess, plastic had it in there and I don't want to mess with it)
While 1=1 (Sets the macro into an infinite loop)
LeftMouseDown
delay 150 (The reason this delay is here and I don't use the LeftMouseClick code, is because the LeftMouseClick code is so fast, EA can't read it. This is to be sure your actually clicking on the what your making)
LeftMouseUp
delay 5900 (This delay is so you always make the product on the mark. Set it higher and you lose time you could make items, set it lower and you'll get a "YOU CANNOT USE ANOTHER SKILL YET..." message)
end (ends the loop and restarts)


*Make sure you only do this for stackable items, else you'll find yourself wasting a macro.

Magic Leveling:
SetActiveWindow ENDLESS
While 1=1
delay 5500 (Ensures lowest amount of time to do magic)
keydown 3 150 ( 3 is the hot key I have for my spell, if you have a different hot key number, just replace the 3 with your number.)
end

Weapon Tech power leveling (Ash Farming. Note, this code is for acid guns, you might want to change it yourself if you use different weapons to reload automatically):
SetActiveWindow ENDLESS
While 1=1
LeftMouseDown (Reason why you don't need a LeftMouseUp is because you don't need to click to keep firing, leaving pressure on the mouse ensures a constant rate of fire)
delay 20000 (This delay is here to automatically reload your weapon so you don't have to worry about it yourself, provided you have the ammo to use of course. May need tweaking for different guns)
keydown r 150 (Reloads weapon, if you have your reload key set to something different, replace the r with your letter.)
end


Shape Shift power leveling* (Ash Farming. Using the lowest level ranged SS is best, just like for weapon tech):
SetActiveWindow ENDLESS
While 1=1
LeftMouseDown
delay 150 (Ranged SS shoot speed depends on how fast you can click. This macro allows you to constantly shoot at maximum speed without getting finger cramps . Increase the delays and you lose time to shoot, decrease it and it won't work)
LeftMouseUp
delay 150
end


*This macro pretty much only works in first person view.


Shape Shift AFK macroing (may or may not work. Please note, hit ESC to go into the main menu before using this macro. If you don't the game will automatically move the mouse away.)
SetActiveWindow ENDLESS
While 1=1
keydown 1 150 (Use whatever your hot key for SSing is)
delay 300 (wait for the window to pop-up)
LeftMouseDown
delay 150
LeftMouseUp
delay 5800
end


There are a couple Shape Shifting bugs you should be aware of:
One is that you do no damage. To solve the problem, Re-shift or Revert, then shift back into the form. This should solve it. Also, every time you die SSed you will not do damage and in order to do damage you must revert and SS back.
The second is that you use ammo. SS forms do NOT use ammo. If your using ammo or have a blue bar your using ammo from the gun you have equiped. Either revert and unequip the gun or try shifting again.
Thirdly, you may fall through the world and end up in water. This is easy to solve by using a jet pack to get up to the normal game terrain. All you have to do is look for where the normal terrain is and go to it. You will clip through the wall/floor and cannot fall back through the world unless you try to glitch with SS.


Some of these issues might affect you, some might not. I use MS XP, so if you use a different OS it may or may not work.


EDIT: Made an actual infinite loop and cut out the mouse positioning junk for AFK SS.

Last edited by PeterTheLeader; 07-21-2008 at 02:08 PM.
PeterTheLeader is offline   Reply With Quote
The Following User Says Thank You to PeterTheLeader For This Useful Post:
spiritwind (08-11-2008)
Old 07-20-2008, 04:44 PM   #2
Senior Member
 
Da Vinci's Avatar
 
Join Date: Dec 2007
Location: South Carolina
Posts: 499
Thanks: 31
Thanked 17 Times in 11 Posts
Rep Power: 2 Da Vinci is on a distinguished road
Send a message via AIM to Da Vinci Send a message via MSN to Da Vinci
lol i have a few that i use for AC Tool:

Polly rapid fire:

SetActiveWindow ENDLESS
loop 10000000
Delay 1
leftmousedown
delay 75
leftmouseup
delay 1
end



AFK ss macro:

SetActiveWindow ENDLESS
Loop 100000000
DragTo 400, 400
MousePos 400, 400
Keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
keys 9
Delay 5850
LeftMouseDown
delay 500
end
__________________
Da Vinci - HM
Da Vinci is offline   Reply With Quote
Old 07-20-2008, 04:48 PM   #3
n????b
 
bLeGh2jOo's Avatar
 
Join Date: Sep 2007
Location: New York, NY
Posts: 1,607
Thanks: 4
Thanked 108 Times in 71 Posts
Rep Power: 3 bLeGh2jOo is on a distinguished road
Send a message via AIM to bLeGh2jOo Send a message via MSN to bLeGh2jOo
Please note that this so called "power leveling" involves the attraction of mobs, making it ILLEGAL if you are afk.
__________________
bLeGh2jOo is offline   Reply With Quote
The Following User Says Thank You to bLeGh2jOo For This Useful Post:
Old 07-20-2008, 04:51 PM   #4
Senior Member
 
Join Date: Jul 2008
Posts: 212
Thanks: 6
Thanked 29 Times in 18 Posts
Rep Power: 1 PeterTheLeader is on a distinguished road
For the first, the shooting SS macro is hit and miss, my macro shoots constantly. Don't know if it's different for polly though.

For the second macro, my mouse doesn't move anywhere in the game. Oddly, if I'm out of the game on the desktop or the AC Tool window screen it works fine. How did you get it to move in the game?

EDIT: Blegh, this is NOT a bot program, it is a macro. You still have to pull the mob yourself to the ledge manually, so it doesn't violate anything.
PeterTheLeader is offline   Reply With Quote
Old 07-20-2008, 05:58 PM   #5
Flob
 
Join Date: Jun 2008
Posts: 31
Thanks: 10
Thanked 11 Times in 4 Posts
Rep Power: 0 Carl360 is on a distinguished road
peter he means if you were to pull it to the ledge and then go afk.
Carl360 is offline   Reply With Quote
Old 07-20-2008, 06:04 PM   #6
GM Latnia
Guest
 
Posts: n/a
For one unattended macroing as in shooting critters and auto loading is in violation of TOS, do not get caught doing unattended killing of critters or being in a position to have critters auto spawn and you still shooting while not being at the keyboard.

set the loop to 0 this makes the macro run in an infinite loop until you stop it, no need for 1000000000 loops.

Generally delays are set to 6 seconds, you are not going to lose that much time. This has been tested in the past many times and seems to be the best with lag and anything else the game or you encounter/

clip/(I tried using Mouse Position, doesn't seem to work)./clip

mouse positions do work with KT but you have to find the X/Y to set it up right the same goes for MS

clip/*This macro pretty much only works in first person view.
There are a couple Shape Shifting bugs you should be aware of:
One is that you do no damage./Clip

Never had any of these issues but that's using KT so might be selective only to MS

TRADE SKILLS: unless you are making STACKED items the macros will not work because you only have a certain number of slots in your inventory. when the slots fill up and you have no more room the macro is useless so there goes your 100000000 loops.
  Reply With Quote
Old 07-20-2008, 06:16 PM   #7
Senior Member
 
Join Date: Jul 2008
Posts: 212
Thanks: 6
Thanked 29 Times in 18 Posts
Rep Power: 1 PeterTheLeader is on a distinguished road
I copied Da Vinci's code exactly, with hot key set to 1 instead of 9. I moved my mouse all around and it never moved in game, it only works out of it.

Setting the Loop to 0 doesn't work for me.

Unattended macroing of shooting mobs is illegal, I'll edit that in. Unattended macroing of trade skills in an inconspicuous spot is still legal, though, right?

And what does KT mean?

EDIT: Those issues I have are pretty constant, but what is KT?

EDIT2: I added Da Vinci's code for AFK SS.

Last edited by PeterTheLeader; 07-20-2008 at 06:38 PM.
PeterTheLeader is offline   Reply With Quote
Old 07-21-2008, 12:02 AM   #8
GM Latnia
Guest
 
Posts: n/a
KT is short for keytext that program uses the X/Y coordinates along with a bullseye so you know exactly whats going on.

LOOP 0 is for KT i should have mentioned that sorry, 0= it loops forever until you hit the key to stop it.

cut/Unattended macroing of trade skills in an inconspicuous spot is still legal, though, right?/cut

inconspicuous spot: thats the key word
  Reply With Quote
Old 07-21-2008, 05:42 AM   #9
Senior Member
 
plasticAiredale's Avatar
 
Join Date: Jan 2008
Location: cle-ohio
Posts: 189
Blog Entries: 8
Thanks: 23
Thanked 43 Times in 29 Posts
Rep Power: 2 plasticAiredale is on a distinguished road
Quote:
Originally Posted by PeterTheLeader View Post
The reason all these Keys 3 are here is to use your spell. The problem with this macro, is that it is so fast that EA does not recognize the click. all of these Keys 3 ensures that EA will recognize the 3 has been clicked. If I find a way to code a held down and released 3, such as for my mouse clicks, I'll edit the post)
Instead sending the "keys 3" command a bunch of times you can use the "keydown 3 duration" command. Below is an example of my extractor/hide macro. Hop on your familiar, stock up on plants and level hide at the same time!!!!

Extractor/Hide Macro
Code:
SetActiveWindow ENDLESS
Loop 100000000
KeyDown X 1 sec
KeyDown H 1 sec
delay 201
end
plasticAiredale is offline   Reply With Quote
The Following User Says Thank You to plasticAiredale For This Useful Post:
PeterTheLeader (07-21-2008)
Old 07-21-2008, 06:01 AM   #10
Senior Member
 
plasticAiredale's Avatar
 
Join Date: Jan 2008
Location: cle-ohio
Posts: 189
Blog Entries: 8
Thanks: 23
Thanked 43 Times in 29 Posts
Rep Power: 2 plasticAiredale is on a distinguished road
KT = KeyText (shareware macro program)
MS =MacroScheduler (shareware macro program)

KeyText has a 30 day free trial, after which you will need to purchase a license to continue to use it. I am not sure on MacroScheduler, it has a license to purchase, but I can't tell from the website what restrictions are on the trial version. I am sure the users of those programs could chime in if they wanted to explain what the trial versions include, and if it is worth purchasing the full versions.

AC Tool is a nice alternative, since it is freeware.
plasticAiredale is offline   Reply With Quote
Old 07-21-2008, 06:25 AM   #11
Senior Member
 
plasticAiredale's Avatar
 
Join Date: Jan 2008
Location: cle-ohio
Posts: 189
Blog Entries: 8
Thanks: 23
Thanked 43 Times in 29 Posts
Rep Power: 2 plasticAiredale is on a distinguished road
Quote:
Originally Posted by PeterTheLeader View Post
Shape Shift AFK macroing (may or may not work)
...
If you press ESC before you exit the game (thus bringing up the menus), your mouse pointer does not move after you have shifted. So to level SS you don't need to use DragTo or be in 1st person mode (other than to ensure that your mouse hasn't drifted/been hit by your cat).

So your AFK SS macro could look like this (note this example has not been tested):
Code:
SetActiveWindow ENDLESS
Loop 100000000
KeyDown 2 1 sec
LeftMouseDown
delay 150
LeftMouseUp
delay 2001
end
Just drag your mouse pointer over the shift button, and away you go. No need to worry about what resolution you are currently running the game in.

Also setting the loop to 0 doesn't work in AC Tool, though it does in the other macro programs. Like Peter mentioned, AC Tool has a status bar at the bottom, which details how many times you have looped, which is nice to get an idea how long your macro has been running.

OK 3 posts in a row, instead of 1 single post, hopefully my forum privileges aren't revoked.

Last edited by plasticAiredale; 07-21-2008 at 06:27 AM. Reason: spelling
plasticAiredale is offline   Reply With Quote
Old 07-21-2008, 06:29 AM   #12
Subscriber
 
Join Date: Sep 2007
Location: Toulouse, France
Posts: 364
Thanks: 12
Thanked 28 Times in 12 Posts
Rep Power: 2 Mireillu is on a distinguished road
I use this for an infinite loop in AC-Tools (has to be put at the beginning of your macro) :

Code:
Constants
  Var1 = 0
  Var2 = 1
End
SetActiveWindow ENDLESS
While $Var1 <> $Var2

 [put your macro here]

End
Mireillu is offline   Reply With Quote
Old 07-21-2008, 07:31 AM   #13
§ölôÐÿñås???ý
 
solodynasty's Avatar
 
Join Date: Feb 2008
Posts: 487
Thanks: 19
Thanked 34 Times in 23 Posts
Rep Power: 1 solodynasty is on a distinguished road
Send a message via MSN to solodynasty
So we can use shoot macros so we dont get figure cramps? =D And what if we have to go afk for a little to say get a drink? Whats the max limit gone like 5 minutes?
Also for SS mob shoot you can use pid and jam the left mouse (If shoot is set to that anyway) and you dont need to click for pid to avoid finger cramps :P
__________________
If you can read this, you have listened to me too much ^.^
«§ólôÐŷn嚆ŷ R †êH NuB!»
solodynasty is offline   Reply With Quote
Old 07-21-2008, 10:00 AM   #14
GM Latnia
Guest
 
Posts: n/a
Quote:
Originally Posted by solodynasty View Post
So we can use shoot macros so we dont get figure cramps? =D And what if we have to go afk for a little to say get a drink? Whats the max limit gone like 5 minutes?:P
As long as you are at the computer macro away, running to get a glass of water or a drink still is ok a couple minutes is all it takes to do these things. If you think you are going to be longer than that then turn off the macro just to be safe.

Remember we travel the lands and when i come up on ashshes area as an example invisible and the player is shooting for 10 min after ash is dead that is unacceptable.

Be smart with your macro's and all will be ok
  Reply With Quote
Old 07-21-2008, 10:27 AM   #15
Senior Member
 
Join Date: Jul 2008
Posts: 212
Thanks: 6
Thanked 29 Times in 18 Posts
Rep Power: 1 PeterTheLeader is on a distinguished road
Another easy way to tell, is if he moves and the player keeps hitting the ground.
PeterTheLeader is offline   Reply With Quote
Old 07-21-2008, 12:38 PM   #16
Senior Member
 
8bitmessiah's Avatar
 
Join Date: Jun 2008
Location: Toronto, Ontario
Posts: 122
Thanks: 13
Thanked 27 Times in 16 Posts
Rep Power: 1 8bitmessiah is on a distinguished road
Send a message via MSN to 8bitmessiah
ya no one uses unattended shooting macros...... good luck staying awake to get lvl 18 WT
__________________
Thoroughly Eradicating Douchebaggery
It's time for one
Last Stand
8bitmessiah is offline   Reply With Quote
Old 07-21-2008, 01:49 PM   #17
Senior Member
 
Join Date: Jul 2008
Posts: 212
Thanks: 6
Thanked 29 Times in 18 Posts
Rep Power: 1 PeterTheLeader is on a distinguished road
The mob dies eventually. Your not gonna get that much out of ash farming all day compared to luring him then use the macro on all night. It will last only half an hour....unless someone USES A HEAL GUN!

To the Ash Cave dundundundadadun!
PeterTheLeader is offline   Reply With Quote
Old 07-21-2008, 02:40 PM   #18
Complete Loser
 
robot1002's Avatar
 
Join Date: Mar 2008
Location: Under Your Bed!
Posts: 156
Thanks: 15
Thanked 13 Times in 4 Posts
Rep Power: 1 robot1002 is on a distinguished road
is it ok if your at ur comp but paying no attension whatsoever to endless ages, say im reading or something.
__________________

The New generation of insect robots.
Ap - Termite
robot1002 is offline   Reply With Quote
Old 07-21-2008, 03:08 PM   #19
Senior Member
 
Join Date: Jul 2008
Posts: 212
Thanks: 6
Thanked 29 Times in 18 Posts
Rep Power: 1 PeterTheLeader is on a distinguished road
You'd have to reply if a GM asks you if your there.
PeterTheLeader is offline   Reply With Quote
The Following User Says Thank You to PeterTheLeader For This Useful Post:
Old 07-21-2008, 04:16 PM   #20
GM Latnia
Guest
 
Posts: n/a
Quote:
Originally Posted by 8bitmessiah View Post
ya no one uses unattended shooting macros...... good luck staying awake to get lvl 18 WT
Beg to differ, don't get caught i know of at least 3 ppl that do it and the locations that it's being done at. All I'm going to say.


snip/is it ok if your at ur comp but paying no attention whatsoever to endless ages, say im reading or something./snip

If you periodically look at the screen you can tell when a GM comes by, a simple acknowledgment is all it takes.

A simple reply is all it takes, it's not like we are going to disconnect you 2 seconds later if you do not answer. i watch and make judgment from there, also I'm somewhat lenient but don't take it as a sign of weakness.

bottom line is Be smart with your macro's and all will be ok.
  Reply With Quote
Old 07-21-2008, 05:29 PM   #21
Ghey Wad
 
BlanK's Avatar
 
Join Date: Sep 2007
Posts: 1,009
Thanks: 9
Thanked 28 Times in 13 Posts
Rep Power: 3 BlanK is on a distinguished road
Send a message via AIM to BlanK Send a message via MSN to BlanK Send a message via Yahoo to BlanK
Quote:
Originally Posted by PeterTheLeader View Post
Another easy way to tell, is if he moves and the player keeps hitting the ground.
Well that's not the best way, when I play EA I tend to be using 2 computers at the same time, so if I'm fighting a boss I'll just hold the mouse button down and reload every so often and look back every now and again to make sure I'm still hitting. I'm not using a shoot macro, but I'm not paying attention to EA totally.
__________________
http://www.endless-ages.com/image.php?type=sigpic&userid=67&dateline=119290029  5
BlanK is offline   Reply With Quote
Old 07-21-2008, 05:32 PM   #22
Senior Member
 
8bitmessiah's Avatar
 
Join Date: Jun 2008
Location: Toronto, Ontario
Posts: 122
Thanks: 13
Thanked 27 Times in 16 Posts
Rep Power: 1 8bitmessiah is on a distinguished road
Send a message via MSN to 8bitmessiah
The leveling system needs a massive overhaul I'm sorry but it's terrible at the moment you should actually be able to hunt to level WT and not be forced to just camp a mob for large amounts of time with a weak gun I'm aware you "could" hunt to level WT but leveling that way is laughably slow compared to camping with low dmg weaponry each mob should give you a set amount of exp no matter the weapon. Now to the subject of the macro rule I don't understand why the macro can't be unattended like it's somehow so much worse if you're not reading a book or watching tv beside your pc ? It's pretty laughable that you need something to entertain you while you're playing a game if you're going to insist on such a broken leveling system at least let people go afk its not hurting anyone.

on a side note Peter you said you cant level for hours on the same mob ? rune gun + rune boss = hours of leveling
__________________
Thoroughly Eradicating Douchebaggery
It's time for one
Last Stand
8bitmessiah is offline   Reply With Quote
Old 07-21-2008, 05:54 PM   #23
Senior Member
 
Join Date: Jul 2008
Posts: 212
Thanks: 6
Thanked 29 Times in 18 Posts
Rep Power: 1 PeterTheLeader is on a distinguished road
Here Here. They have to fix all those SS bugs though before they go into gameplay.
Major bugs (falling through the world, stat loss, fixing AI, etc...)
Leveling system
Skill system (That needs a major overhaul too)
minor bugs/fixes (adding a map, hold button down for ranged SS damage, etc..)
Adding new things (quests, maps, etc...)

That should be the order, as of now the game is still stuck on the first :/
PeterTheLeader is offline   Reply With Quote
Old 07-21-2008, 07:08 PM   #24
GM Latnia
Guest
 
Posts: n/a
The DV's are working daily to give you the best playing experience possible, We the GM's make reports nightly by going through the forums and talking with the players in the game.

The DV community is a small group of ppl doing the best they can, things are going to get better trust me

8bit you have some valid points there, pm me or toss me a post i will do my best to get it to the developers in a timely manner.
  Reply With Quote
Old 07-22-2008, 05:21 AM