Auto attack

themon

New member
Messages
517
Points
0
Location
라그나로크
Github
ThemonChan (5468656d6f6e4368616e)
Emulator
I have downloaded before client version that when you attack for example a poring and there are more poring near your character. after you kill the 1st poring you attack your character will automatically attack the next monster same as the first you attack and in this case its a poring so your character will attack the next poring near your character.

is this still available on 2013 client?

what will I need to make it work again?

 
post the patch here and I'll try to figure out the issues

 
I dont remeber the patch or the client ragexere.exe date. but Ive downloaded it last july when I switch from eathena to rathena. now I using hercules and Its maybe in one of the packet

 
if I recall correctly it was a source mod made by goddameit released in rAthena, you may want to search there and post the .patch file here

 
File Name: @AutoAttack
File Submitter: goddameit
File Submitted: 13 Sep 2012
File Category: Source Modifications
Content Author: Goddameit


Idea : http://rathena.org/b...k-close-enemys/

Use this command you can turn on or off auto-attack.


It will auto-search 9x9 and attack the near one


if there is no monster in area, you will auto-walk randomly


ACMD_FUNC(autoattack)
{
nullpo_retr(-1, sd);
if (sd->sc.option & OPTION_AUTOATTACK)
{
sd->sc.option &= ~OPTION_AUTOATTACK;
unit_stop_attack(&sd->bl);
clif_displaymessage(fd, "You deactivated Autoattack.");
}else
{
sd->sc.option |= OPTION_AUTOATTACK;
add_timer(gettick()+200,autoattack_timer,sd->bl.id,0);
clif_displaymessage(fd, "You activated Autoattack.");

}
clif_changeoption(&sd->bl);
return 0;
}
@AutoAttack.patch

 

Attachments

Last edited by a moderator:
this is the  one that I found Goddameit @Autoattack,

but what I use before is automatic and you dont have to type @autoattack.

its like in a packet. I thinks its the one before judas put a packet that let you see the hp bar on the bottom of the monster you attack

 
then I don't know, sorry
default_sad.png
but I've never heard of something like this, maybe you should contact judas?

 
Back
Top