|
You last visited: Today at 10:46
Advertisement
Auto Defense
Discussion on Auto Defense within the Mabinogi forum part of the MMORPGs category.
11/05/2009, 15:35
|
#16
|
elite*gold: 0
Join Date: May 2009
Posts: 855
Received Thanks: 149
|
do you have auto-combat on?
|
|
|
11/05/2009, 18:26
|
#17
|
elite*gold: 0
Join Date: Oct 2009
Posts: 89
Received Thanks: 22
|
It's an AI. I think he's _supposed_ to have auto-combat on.
|
|
|
11/05/2009, 20:34
|
#18
|
elite*gold: 0
Join Date: May 2009
Posts: 855
Received Thanks: 149
|
o yea xD forgot
all ai's have that as bug, they can't load the skill -> they attack
|
|
|
11/05/2009, 20:49
|
#19
|
elite*gold: 0
Join Date: Sep 2009
Posts: 45
Received Thanks: 12
|
Quote:
Originally Posted by princealtiar
My character still attacked back :/
|
I just used something simple for my script in autohotkey since when I was writing mine back when I was doing my mastery, where F1 was my defense key, F4 was HP potions and F5 was Stamina Potions (using the attach items to hotkey option in the options menu). It's really gross code but at the time I didn't want to try any image searches or anything since it didn't seem worth my time.
Code:
while , 1 == 1
{
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 100
Send, {F1}
Sleep, 500
Send, {F4}
Sleep, 100
Send, {F4}
Sleep, 100
Send, {F5}
Sleep, 100
Send, {F5}
Sleep, 100
Send, {F5}
Sleep, 500
}
|
|
|
11/06/2009, 00:13
|
#20
|
elite*gold: 0
Join Date: Oct 2009
Posts: 89
Received Thanks: 22
|
^ so you mean...
Code:
Loop
{
Loop, 50
{
Send, {F1}
Sleep, 100
}
Send, {F4}
Sleep, 100
Send, {F4}
Sleep, 100
Send, {F5}
Sleep, 100
Send, {F5}
Sleep, 100
}
|
|
|
11/06/2009, 00:48
|
#21
|
elite*gold: 0
Join Date: Sep 2009
Posts: 359
Received Thanks: 124
|
Na, using loops like that makes no sense. Why would you do it the easy way using less code? Geez -_-
|
|
|
11/06/2009, 02:47
|
#22
|
elite*gold: 0
Join Date: Oct 2009
Posts: 53
Received Thanks: 0
|
ima mess around with image search and see if i can get it to auto pot and stuff.
|
|
|
11/06/2009, 05:51
|
#23
|
elite*gold: 0
Join Date: Oct 2009
Posts: 53
Received Thanks: 0
|
i cant get it to start? >>;
|
|
|
11/06/2009, 06:38
|
#24
|
elite*gold: 0
Join Date: Sep 2009
Posts: 45
Received Thanks: 12
|
Quote:
Originally Posted by Infamy^^
^ so you mean...
Code:
Loop
{
Loop, 50
{
Send, {F1}
Sleep, 100
}
Send, {F4}
Sleep, 100
Send, {F4}
Sleep, 100
Send, {F5}
Sleep, 100
Send, {F5}
Sleep, 100
}
|
I did it like half a year ago when I wasn't playing mabi as much (also made a simple firework box bot like that too), as I said the code was messy, if I actually cared I would have added more functionality to it. Bots are fun but I just didn't have the time or care to learn the syntax originally I actually used a counter for it and then just gave up because it wouldn't detect some of the commands a lot of the time so I just made it spam them so that they were recognizable.
|
|
|
11/06/2009, 12:29
|
#25
|
elite*gold: 0
Join Date: Oct 2009
Posts: 53
Received Thanks: 0
|
whats the key i have to press to start it?
Edit: i got it to work,with some copying and pasting lol. It just gets cut short half way thro
|
|
|
11/06/2009, 20:51
|
#26
|
elite*gold: 0
Join Date: Nov 2008
Posts: 3,695
Received Thanks: 891
|
Quote:
Originally Posted by Kefkai
I did it like half a year ago when I wasn't playing mabi as much (also made a simple firework box bot like that too), as I said the code was messy, if I actually cared I would have added more functionality to it. Bots are fun but I just didn't have the time or care to learn the syntax originally I actually used a counter for it and then just gave up because it wouldn't detect some of the commands a lot of the time so I just made it spam them so that they were recognizable.
|
I cant believe thats one single sentence.
|
|
|
11/06/2009, 21:00
|
#27
|
elite*gold: 0
Join Date: Sep 2009
Posts: 45
Received Thanks: 12
|
Quote:
Originally Posted by Dark Raccoon
I cant believe thats one single sentence.
|
Only the second half of it, I think I wrote it when I was tired last night, atleast I didn't comma splice it several times, almost like this sentence.
|
|
|
11/06/2009, 22:08
|
#28
|
elite*gold: 0
Join Date: Oct 2009
Posts: 53
Received Thanks: 0
|
lol wow xD
i got it working,but it didnt do the heal or stam pot :/
thanks neways,i got it looping. Should i post it?
|
|
|
11/07/2009, 04:20
|
#29
|
elite*gold: 0
Join Date: Nov 2009
Posts: 6
Received Thanks: 0
|
Quote:
Originally Posted by lostmage333
You could just write a script...
Code:
F1::
Loop
{
Send s
Sleep 100
}
return
That'll do in (in autohotkey) if s is your defense key.
|
uhhh ok sooo? where do you put this code? lul im so confused (is it in a notepad?) :O if it is ima b ******
|
|
|
11/07/2009, 07:05
|
#30
|
elite*gold: 0
Join Date: Nov 2008
Posts: 3,695
Received Thanks: 891
|
Quote:
Originally Posted by uniquemabi
uhhh ok sooo? where do you put this code? lul im so confused (is it in a notepad?) :O if it is ima b ******
|
Its AHK.
People on here sadly dont bother compiling the finished Script into .exe-Files, so you have to do it yourself.
|
|
|
 |
|
Similar Threads
|
Tower Defense
03/14/2012 - Off Topic - 15 Replies
Joa also ich finde das spiel ganz lustig nur langsam wirds langweilig weil ich nie game over habe versuche mal in die top 5 bei dem spiel zukommen war nie hoeher als platz 6 ... ok hf damit
Tower Defense
|
[HELP] Defense LoL
06/26/2010 - EO PServer Hosting - 5 Replies
i got some confusing here with the eudemon defense..when the star too high their defence become negative..see this pic below..from what i know it dosent include the client to repair this..so its database side..so can someone tell me where column in db to repair this thing?:handsdown:
http://img266.imageshack.us/img266/3857/tetete.jp g
|
[Request] Shield prof mod.(auto defense?)
11/06/2009 - Mabinogi - 3 Replies
hi
i like to request a shield prof mod..
which is all basically charging infinite defense.. i think..
thanks!!
|
Auto cast stigma, magic defense, pots, sit.
10/01/2009 - Conquer Online 2 - 5 Replies
I've looked around and couldn't find anything, but is there a tool that would auto cast stigma, magic defense, potions, sitting, and meditation on myself? I saw bots, but I don't want to bot. I'm tired of manual selecting these skills all of the time. I tried the simple clicker but it didn't seem fast enough. Any help would be great, thanks!
|
All times are GMT +1. The time now is 10:47.
|
|