|
You last visited: Today at 16:47
Advertisement
[RELEASE] Kab-Bot (GlobalDekaron bot) **NO BYPASS REQUIRED
Discussion on [RELEASE] Kab-Bot (GlobalDekaron bot) **NO BYPASS REQUIRED within the Dekaron Exploits, Hacks, Bots, Tools & Macros forum part of the Dekaron category.
08/22/2010, 12:06
|
#451
|
elite*gold: 0
Join Date: Aug 2009
Posts: 399
Received Thanks: 735
|
Quote:
Now next thing i need is executing emitid flash skill only when mobs are present man i love figuring things out on my own feels good!
Edit: guess what lol it wont execute because it switches skill slots and that skill isn't on there Now gona code rest of the dg ill post the final ver later if u like u can add to ur next release.
|
Pretty good stuff.. One thing I see is that yo need to make use of the match/nomatch commands. I created iscol/notcol mainly for when you need to loop stuff.
For example iscol;code;x;y(mob hp bar),1,2,3,4,5,endis;l
Now if there is a target, this code will loop 1-5, as soon as the target is gone the script will move on to the next command after endis;l. So you want to use these to loop something until the condition changes then move on.
NOW Playing with match/nomatch is a whole other world. It is much more versatile as it allows you to just check a color, and do a series of commands if it matches once. No looping involved. This is most helpful because you can use unlimited amount of them inside iscol loops or any other time.
Like you CANNOT do this: iscol;x;x;x,1,2,iscol;x;x;x,3,4,endis;l,5,6endis;l
But you CAN do iscol;x;x;x,1,2;match;x;x;x;x,3,4,match;x;x;x;x,5, 6,endis;l
I will explain by commenting my current skillbot.txt below
Quote:
notcol;7037423;419;24, 'notcol is good for grouping checks this one fires if theres no target
u,0,=,25, 'commands that will run if notcol fires (no target)
nomatch;16754299;124;421;1,n2, 'checking mana while no target
nomatch;5921279;195;406;1,n1, 'checking hp while no target
match;526484;48;407;6,20000, 'this checks my hp bar for being dead
mov;168;238,ldn,50,lup,stop, 'it waits 20 seconds and clicks accept then turns off bot
endnot, 'end the no target check no looping
iscol;7037423;419;24, 'this is the target match(is a target) this one loops
nomatch;16754299;124;421;1,n2, 'checking mana in the loop
nomatch;5921279;195;406;1,n1, 'checking hp in the loop
1,2,5,6,8,50, - the skills to run in the loop
match;526484;48;407;6,20000, 'the dead check again
mov;168;238,ldn,50,lup,stop, 'same as before
endis;l, 'this is set to loop so it will loop from iscol to endis until the match it made does not match anymore (the target is gone)
sp,sp,'at this point either we just fought something or it ran the whole
routine and didn't find a target so we should loot
|
match btw is perfect for what you want to do with intimid flash.
|
|
|
08/22/2010, 23:10
|
#452
|
elite*gold: 0
Join Date: Feb 2009
Posts: 666
Received Thanks: 60
|
I have a perfect one for Crev dg C B A that runs all the way through but working on one for abyss thats a lil harder.
|
|
|
08/22/2010, 23:53
|
#453
|
elite*gold: 0
Join Date: Aug 2009
Posts: 399
Received Thanks: 735
|
Quote:
Originally Posted by jhipson
-how about making it auto relauch dekaron/2moons when dc and log in for you
Could be done with a script command to run a file. But there is some protection from sendkeys at the login screen. Been working on this.
-and go back to draco to re buy pots them go back to the area you wanna farm? or too far fetched? This is already very possible if you write a script for it.-and make it auto respond to different text in the chat like if someone says are you a bot it will auto say something like "you kidding me? im vc hunting" or something like that. Very difficult to read chat with pixel bot.
|
Quote:
Originally Posted by shinitenshi
I have a perfect one for Crev dg C B A that runs all the way through but working on one for abyss thats a lil harder.
|
Thats awesome. Btw if you check my first post I added a spoiler too add Scripts to. I added all of the current public ones that have no errors. If you want one added just post it here. Make sure it works without error and has good in-bot commenting. Then I will add it.
So I did another edit to skillbot.txt. This time I wanted to display how to make the same thing without using iscol/notcol. This does exactly like the old skillbot.txt but with different commands and works faster imo. It also shows how to use goto; as a conditional loop.
Quote:
|
Originally Posted by KabFlash
0,-,=,u,[first do buffs and then find a target],
here;a,[set a point to come back for istarget loop],
match;7037423;419;24;11,
nomatch;16754299;124;421;1,n2,
nomatch;5921279;195;406;1,n1,
1,2,5,6,8,50,
goto;a,
[match = the enemy hp bar far left. so if we
have a target it runs the next 11 commands. The
11th command is the goto which takes us back to check
again if we still have a target. If there is no target the 11
commands will be skipped bringing the code to the next
line"sp" The nomatch commands are for potting hp and mp],
sp,sp,[time to loot],
nomatch;16754299;124;421;1,n2,[check for mp potting],
nomatch;5921279;195;406;1,n1,[check for hp potting],
match;526484;48;407;6,20000,mov;168;238,
ldn,50,lup,stop,[this match checks the far left of my hp bar
and if I'm dead waits 20 seconds-clicks accept-turns off bot]
|
|
|
|
08/23/2010, 00:16
|
#454
|
elite*gold: 0
Join Date: Feb 2009
Posts: 666
Received Thanks: 60
|
heheh thats what with my skillbot 
Edit:
Add a drag on feature for selecting pixles, if you hold down the left click and move your mouse around it shows u what colors are selected that way we can get a more correct location.
Another thing i notice is auto load the last scriped used in the script bot.
|
|
|
08/23/2010, 01:05
|
#455
|
elite*gold: 0
Join Date: Aug 2009
Posts: 399
Received Thanks: 735
|
Quote:
Originally Posted by shinitenshi
heheh thats what with my skillbot 
Edit:
Add a drag on feature for selecting pixles, if you hold down the left click and move your mouse around it shows u what colors are selected that way we can get a more correct location.
Another thing i notice is auto load the last scriped used in the script bot.
|
That's like an idea I had that I just never bothered putting in. I will add it to next release though. When you click GetClick the boxes will update to mouse movements in the dekaron window until you click in it. You won't have to hold the mouse or anything just do like normally.
But the way you explained it gave me an idea for another cool feature I will also try to add for next release.
|
|
|
08/23/2010, 02:57
|
#456
|
elite*gold: 0
Join Date: Jul 2010
Posts: 145
Received Thanks: 10
|
what is op?
|
|
|
08/23/2010, 05:23
|
#457
|
elite*gold: 0
Join Date: Feb 2009
Posts: 666
Received Thanks: 60
|
what are u talking bout?
|
|
|
08/23/2010, 07:38
|
#458
|
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 2
|
Tried to set up fish bot but it didnt work...any guess?
|
|
|
08/23/2010, 09:50
|
#459
|
elite*gold: 0
Join Date: Aug 2009
Posts: 399
Received Thanks: 735
|
Quote:
Originally Posted by antoraptor
Tried to set up fish bot but it didnt work...any guess?
|
Like I said time and time again, it's not gonna work until you update the color codes and x,y coordinates to match your own system. Follow the commenting and use the GetClick button in the bot.
|
|
|
08/23/2010, 20:14
|
#460
|
elite*gold: 0
Join Date: Feb 2009
Posts: 666
Received Thanks: 60
|
I been working on a script for a couple of days now and i don't want to update the x:y on the whole thing is there a way to make something that changes them for u? Like just select resolution and I'll read ur script and do the changes needed. Maybe implement something so the bot knows those ate the values that it needs to change. I have very little experiance with coding but am sure there's has to be a formula to acomplish this. Just an opinion tho
|
|
|
08/24/2010, 09:50
|
#461
|
elite*gold: 0
Join Date: Aug 2009
Posts: 399
Received Thanks: 735
|
Quote:
Originally Posted by shinitenshi
I been working on a script for a couple of days now and i don't want to update the x:y on the whole thing is there a way to make something that changes them for u? Like just select resolution and I'll read ur script and do the changes needed. Maybe implement something so the bot knows those ate the values that it needs to change. I have very little experiance with coding but am sure there's has to be a formula to acomplish this. Just an opinion tho 
|
I'm sure I can work out some kind of converting routine. Probably not in the next release though.
Next release coming in a day or two has already the other function you requested, it's working very nicely and is alot of help when scripting because you can now make sure your getting exactly the color your trying to before you click it.
The new version will be ready when I finish another helpful little feature I'm working on. It's a pretty difficult feature to code, and it's immediate benefits probably won't be too noticeable, but it's going to open the door for some other very cool features in the near future.
So the conversion thing will be the first thing I add for the release after this coming one. Maybe I'll do it in a small update shortly after.
btw-Remember when I said I was out of ideas for ScriptBot, because it had become everything I hope it would already? Well, I have a bunch of new sweet ideas, so GAME ON!
|
|
|
08/24/2010, 15:42
|
#462
|
elite*gold: 0
Join Date: Feb 2009
Posts: 666
Received Thanks: 60
|
HEHEHE! Cant wait to see e'm
|
|
|
08/24/2010, 23:31
|
#463
|
elite*gold: 0
Join Date: Jul 2009
Posts: 684
Received Thanks: 55
|
do you can do that i can open 2x dekaron and play on bouth your bot?
|
|
|
08/25/2010, 02:22
|
#464
|
elite*gold: 0
Join Date: Feb 2010
Posts: 52
Received Thanks: 118
|
--
|
|
|
08/25/2010, 02:54
|
#465
|
elite*gold: 0
Join Date: Feb 2009
Posts: 666
Received Thanks: 60
|
Quote:
Originally Posted by gonger
do you can do that i can open 2x dekaron and play on bouth your bot?
|
u can multiclient with bypass but its outdated so ur SOL
@KabFlash dude is there a way to select the levers in crespo without left clicks? that way ppl don't have to update scripts? thnx oh and am almost out of dil bacuse of the script am making lol i have to test it inside >.<
|
|
|
All times are GMT +1. The time now is 16:47.
|
|