Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Dekaron > Dekaron Exploits, Hacks, Bots, Tools & Macros
You last visited: Today at 15:33

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] Impulse Resurgence Bot **No bypass required (Updated 12/21)

Discussion on [Release] Impulse Resurgence Bot **No bypass required (Updated 12/21) within the Dekaron Exploits, Hacks, Bots, Tools & Macros forum part of the Dekaron category.

Reply
 
Old 01/11/2013, 13:15   #16
 
elite*gold: 0
Join Date: Nov 2012
Posts: 3
Received Thanks: 0
3.1.11 Block.
ebene123 is offline  
Old 01/11/2013, 13:17   #17
 
elite*gold: 0
Join Date: Jul 2009
Posts: 23
Received Thanks: 0
Hi SkyDrag0n..

Plz fixed Impulse Resurgence Ver 3.1.11 now detected XIGNCODE

Thanx..
Tressy is offline  
Old 01/19/2013, 01:40   #18
 
myty's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 621
Received Thanks: 30
hmm after this will be fixed,is there anyway to use it for fishing?with automatic rod(dshoped) just to drop useless items and start fishing again?would be awesome
myty is offline  
Old 01/19/2013, 13:20   #19
 
SkyDrag0n's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 311
Received Thanks: 137
Quote:
Originally Posted by myty View Post
hmm after this will be fixed,is there anyway to use it for fishing?with automatic rod(dshoped) just to drop useless items and start fishing again?would be awesome
Its fixed. I just forgot to post about the update...

12 Jan 13
-Update as of block


Yes, it is completely possible to do that. I don't have a rod so I can't make one.
SkyDrag0n is offline  
Thanks
1 User
Old 01/19/2013, 15:51   #20
 
myty's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 621
Received Thanks: 30
u can buy rods from fisher , the only thing is that u cant get argates/maverics
myty is offline  
Old 01/19/2013, 19:20   #21
 
elite*gold: 0
Join Date: Jun 2009
Posts: 5
Received Thanks: 0
my bot dont open script window pot window skill window help plz

Quote:
Originally Posted by jota332 View Post
my bot dont open script window pot window skill window help plz
forget im a noob xD i know now

hmm can u make a script for buy each hour for buy a autofishing rod for one hour and sell fish and bk to fishing
jota332 is offline  
Old 01/19/2013, 23:40   #22
 
SkyDrag0n's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 311
Received Thanks: 137
I don't make scripts. I will help you debug one, but you have to show me that you have made some effort of making a script yourself. Its very easy to learn. The hardest part is the logic.
SkyDrag0n is offline  
Old 01/20/2013, 01:28   #23
 
elite*gold: 0
Join Date: Jun 2009
Posts: 5
Received Thanks: 0
can u give me your email or something

*i,125,-i,
*l,125,-l,
mov;510;323,ldn,mov;510;323,250,lup,
nomatch;1581089;995;602;1,esc,

now im thinking how i put only sell's fish and no mavric and argates
jota332 is offline  
Old 01/20/2013, 02:54   #24
 
SkyDrag0n's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 311
Received Thanks: 137
Quote:
Originally Posted by jota332 View Post
can u give me your email or something

*i,125,-i,
*l,125,-l,
mov;510;323,ldn,mov;510;323,250,lup,
nomatch;1581089;995;602;1,esc,

now im thinking how i put only sell's fish and no mavric and argates
I would rather not hand out my email. We should be fine in the thread. That way, others can learn also.

I see you are using the recording device. Though this works, you can simplify the script and make it faster. For example, a simplified version of what you have:
Code:
i,                             => (opens inventory)
l,                             => (Not sure why you want this...)
mov;510;323,lck,               => (Move to a certain location and left click)
nomatch;1581089;995;602;1,esc, => (if color does not match, skip the next 1 command [which is esc])
(remove all my comments so it doesn't mess up the code. I just do it to see what each step of the script is doing)

Now to select certain items, you are going to want to use the "scan" command. I would grab 2 or 3 colors of each item you want to sell. The more colors you have, the better off you'll be. Also remember, most items (all fish do) have a 'glow' to them every now and then. These will change the color codes.
SkyDrag0n is offline  
Old 01/20/2013, 03:28   #25
 
elite*gold: 0
Join Date: Jun 2009
Posts: 5
Received Thanks: 0
i have one ideia and its at ardeca u have a fisher near from water so the character dont need to move to sell things.. that script will check if at last slot have any item for see if are full or not and if bag are full he will do esc

ohh i dont understand how delay works can u do a eg

i was trying, and i take one hour for only one slot for check if it is a fish or argate.. but im a little stupid its more easy if do the inverse check if its argate if not click left for sell
jota332 is offline  
Old 01/21/2013, 00:08   #26
 
SkyDrag0n's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 311
Received Thanks: 137
I suggest using scan to check if the last row is filled instead of notcol for the last object.
The rational behind this is that the color of the object can easily change (weather in game, you could move, and a few other things) and I say last row because the last object could be an argate. Either one of those would cause the selling portion to fire constantly and it would not be as efficient.

I don't think you understand what the scan function does. It will search for multiple colors (separated by ":") and then execute the code until endscript is found.

For example, this is part of the fishing script I use:
Code:
here;f,                   => Difines position F in the script
scan;112;128;184;168;210, => Scans for the color 210 within 112:128 and 184:168
mov;sx;sy,                => Move mouse where the color was found
rck,                      => Right click
mov;450;450,              => Move the mouse
lck                       => Left click
mov;672;436, lck,         => Move the mouse to a button and click it
endscan,                  => End loop.
As long as the color 210 is found within those 2 coords, the script will loop. It will only move past the scan loop when the color(s) is(are) not found anymore.
SkyDrag0n is offline  
Old 01/24/2013, 15:40   #27
 
jeppej's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 10
Received Thanks: 1
Think its bypassed, can you please update it? Ty
jeppej is offline  
Old 01/24/2013, 15:42   #28
 
SkyDrag0n's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 311
Received Thanks: 137
Yeah, I'm working on it. They did something out of the normal so I have to track it down.

Impulse Resurgence Ver 3.1.12 - 24 Jan 2013
- Updated version as of block.
- Changed default pot setting from "N2" to "F1"
SkyDrag0n is offline  
Thanks
3 Users
Old 01/24/2013, 22:02   #29
 
galati112's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 19
Received Thanks: 0
skydrag0n i have a little problem... i start impulse resurcence 3.1.13 and i start game ... etc. after i chose char and i start i got d/c with no explication or error code... can you tell me what i can do pls?
galati112 is offline  
Old 01/25/2013, 02:13   #30
 
Missmodd's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 304
Received Thanks: 129
Quote:
Originally Posted by galati112 View Post
skydrag0n i have a little problem... i start impulse resurcence 3.1.13 and i start game ... etc. after i chose char and i start i got d/c with no explication or error code... can you tell me what i can do pls?
It's because it is patched. Be patient and SkyDragOn will update it when he gets the chance.

EDIT, Sorry I didn't notice he already did the update. This is WORKING fine. Have you tried again? Did you have anything else running in the background? No other hacks, or program?
Missmodd is offline  
Reply


Similar Threads Similar Threads
[RELEASE] Impulse - KabbotFixed By: 0wnU (GlobalDekaron bot) **NO BYPASS REQUIRED
12/23/2012 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 771 Replies
!!!PROJECT CHANGED MANAGEMENT!!! http://www.elitepvpers.com/forum/dekaron-exploits -hacks-bots-tools-macros/2308268-release-impulse-r esurgence-bot-no-bypass-required.html Impulse Resurgence *DOES NOT REQUIRE A BYPASS OR OFFSET UPDATES



All times are GMT +2. The time now is 15:33.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.