Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Silkroad Online > SRO Private Server > SRO PServer Guides & Releases
You last visited: Today at 02:43

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

Advertisement



[Release] Auto Alchemy: Attribute Stone Fuser (vSro)

Discussion on [Release] Auto Alchemy: Attribute Stone Fuser (vSro) within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Reply
 
Old 04/29/2013, 18:19   #196
 
elite*gold: 0
Join Date: Apr 2013
Posts: 3
Received Thanks: 0
my problem here
( )
abdo5366 is offline  
Old 04/29/2013, 20:56   #197
 
HardGroove's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 44
Received Thanks: 19
Quote:
Originally Posted by Se7eN4G4G View Post
Much appreciated, I don't know if this has been asked before but does it work when the client is minimized?. Thanks again.
Yes, it is working on minimized window. Since it is based on packets receive and send method.

Quote:
Originally Posted by abdo5366 View Post
my problem here
( )
I am releasing an update for this soon!
HardGroove is offline  
Thanks
1 User
Old 05/01/2013, 12:25   #198
 
elite*gold: 130
Join Date: Mar 2008
Posts: 2,485
Received Thanks: 934
If you're willing to help me out understanding packets and the way applications handle packets, I may be able to construct something in C#.
intercsaki is offline  
Old 05/01/2013, 13:40   #199
 
HardGroove's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 44
Received Thanks: 19
Quote:
Originally Posted by intercsaki View Post
If you're willing to help me out understanding packets and the way applications handle packets, I may be able to construct something in C#.
Well, you got my contacts, feel free to ask anything
HardGroove is offline  
Old 05/01/2013, 15:28   #200
 
elite*gold: 0
Join Date: Feb 2012
Posts: 75
Received Thanks: 0
good job
spider560 is offline  
Old 05/02/2013, 14:50   #201
 
Se7eN4G4G's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 160
Received Thanks: 39
Ok, I'm confused. I followed every tip but it seems like I can't fuse because the number of stones is shown as 0 even after teleporting! I used ''ItemIDFinder'' to edit the stone's ID, didn't work.


This only happened in V2.0 & V2.1
V1.0 works but stops after the first try! so is this a bug or something I did wrong? Thanks.
Se7eN4G4G is offline  
Old 05/02/2013, 17:40   #202
 
elite*gold: 130
Join Date: Mar 2008
Posts: 2,485
Received Thanks: 934
Quote:
Originally Posted by spider560 View Post
good job
Press thanks, then.

Quote:
Originally Posted by Se7eN4G4G View Post
Ok, I'm confused. I followed every tip but it seems like I can't fuse because the number of stones is shown as 0 even after teleporting! I used ''ItemIDFinder'' to edit the stone's ID, didn't work.


This only happened in V2.0 & V2.1
V1.0 works but stops after the first try! so is this a bug or something I did wrong? Thanks.
Try emptying your inventory, leave only the items you want to work with (no avatar, no dimension, no grabpet, take everything out..).
intercsaki is offline  
Old 05/02/2013, 23:37   #203
 
HardGroove's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 44
Received Thanks: 19
Post ASF Tool v2.2 release!

New version of ASF Tool v2.2 has been released! Check out my blog for description and download.



New version have:

* Hide and show button. This will allow you to hide your client.

* Changed auto reset time. This was changed due problem of result lag. Now it will wait longer, but hope wont give you problems.

* 3013 opcode is merged now! No more 2x packets confused problem! This should fix the problem for the people, that have over crowded inventory. And program was not able to find the stones, because server was sending 2x packets with inventory information. And program picked up last one...

* New phConnector, compiled directly from original open source. It is more clean, and hope more easier to use.

In case of problems or bugs, please report me!

Happy fusing!

HardGroove
HardGroove is offline  
Thanks
2 Users
Old 05/03/2013, 15:53   #204
 
elite*gold: 0
Join Date: Mar 2009
Posts: 291
Received Thanks: 164
Code is really messed up, but it works.
You should use Array instead of repeating everything again and again, because code length is huge and its pretty unreadable..

And please, change this part:
Code:
Do
	$pos = StringMid($data, $elixsearch - 10, 2)
	IniWrite("settings.ini", "StonePos", $elixkey, $pos)
	$icount = StringMid($data, $elixsearch + 8, 2)
	IniWrite("settings.ini", "StonesCount", $elixkey, $icount)
	$ipos = $elixsearch + 8
	$elixkey = $elixkey + 1
	$elixsearch = StringInStr($data, IniRead("settings.ini", "StonesID", "value", "ERROR"), 0, 1, $ipos)
	$totalelixirs = $i + Dec($icount)
	$i = $totalelixirs
Until $elixsearch = 0

If $elixsearch = 0 Then
	GUICtrlSetData($stonesleft_box, $totalelixirs)
	$opcodecheck = True
EndIf
Write StonePos and StoneCount into array...
M4n1ak is offline  
Old 05/03/2013, 18:00   #205
 
HardGroove's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 44
Received Thanks: 19
Wink

Quote:
Originally Posted by M4n1ak View Post
Code is really messed up, but it works.
You should use Array instead of repeating everything again and again, because code length is huge and its pretty unreadable..

And please, change this part:
Code:
Do
	$pos = StringMid($data, $elixsearch - 10, 2)
	IniWrite("settings.ini", "StonePos", $elixkey, $pos)
	$icount = StringMid($data, $elixsearch + 8, 2)
	IniWrite("settings.ini", "StonesCount", $elixkey, $icount)
	$ipos = $elixsearch + 8
	$elixkey = $elixkey + 1
	$elixsearch = StringInStr($data, IniRead("settings.ini", "StonesID", "value", "ERROR"), 0, 1, $ipos)
	$totalelixirs = $i + Dec($icount)
	$i = $totalelixirs
Until $elixsearch = 0

If $elixsearch = 0 Then
	GUICtrlSetData($stonesleft_box, $totalelixirs)
	$opcodecheck = True
EndIf
Write StonePos and StoneCount into array...
Since I never study any programming language, and all that, is self learned. So I just improvised... Free free to contact me on my email "", and give me a lesson. So I can learn more, and make this in a proper way.

p.s. Would be nice to improve this script. And thanks for the critic!
HardGroove is offline  
Thanks
1 User
Old 05/04/2013, 16:08   #206
 
tomas19941204's Avatar
 
elite*gold: 0
Join Date: Nov 2010
Posts: 178
Received Thanks: 3
If Status 79% and at tool 80% just he will stop ?
tomas19941204 is offline  
Old 05/05/2013, 14:47   #207
 
HardGroove's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 44
Received Thanks: 19
Quote:
Originally Posted by tomas19941204 View Post
If Status 79% and at tool 80% just he will stop ?
The tool converts value value from the hex string. And it shows max value, for some reason game sometimes might show different value, but for tool is always same. So it will stop, tool never show value like 19 or so (I mean, after stats been changed). To be sure, make longer fuse run, and see what kind of stat it shows. When you start to see why I set these values to stop
HardGroove is offline  
Old 05/05/2013, 22:00   #208
 
Se7eN4G4G's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 160
Received Thanks: 39
The new version works like a charm, alchemy has never been so easy lol. Appreciate your time and effort, thanks.
Se7eN4G4G is offline  
Old 05/07/2013, 09:44   #209
 
the fentom's Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 114
Received Thanks: 27
Hello ,
i'm playing QueenSro Fun <3
it's working perfectly <33 thx alot

but D13 stone in ASF v2.2 and v2.1 still can't find selected stone
and it gives 0 stones left , there is nothing in my invin only weap + stones
and i used iD finder and not working

i hope u help me fast plz ^_^
the fentom is offline  
Old 05/07/2013, 13:05   #210
 
Se7eN4G4G's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 160
Received Thanks: 39
Quote:
Originally Posted by the fentom View Post
Hello ,
i'm playing QueenSro Fun <3
it's working perfectly <33 thx alot

but D13 stone in ASF v2.2 and v2.1 still can't find selected stone
and it gives 0 stones left , there is nothing in my invin only weap + stones
and i used iD finder and not working

i hope u help me fast plz ^_^

Hey, I'm at Fun too and I'm using V2.2 yet I have no problem with fusing.
I edited the stones' ID using ItemIDFinder, this is what it looks like in my setting file:




Check yours and see if they match mine
Se7eN4G4G is offline  
Thanks
5 Users
Reply


Similar Threads Similar Threads
[Release] Sarkolata's Auto Fuser for VSRO
07/31/2020 - SRO PServer Guides & Releases - 212 Replies
Hey there :) I'm releasing the Auto Fuser, will work on vsro 188 based servers. (Did not try others) It's a new release so it can contain bugs, please do not flame me. Instead, report them and i will fix them. The idea is simply taken from Fuse-o-mat, but this one is better - Improvements: 1. Play sound & Bring Silkroad Foreground 2. GUI Improvement
[Release] Vsro Auto Alchemy Tool
12/15/2015 - SRO PServer Guides & Releases - 98 Replies
Hey guys,today I found vsro autoalchemy tool. All credits goes to schadowhunter http://i.epvpimg.com/h8CYc.png Small tutorial -Open phconnector -Login with edxloader.Dont forget edit ip's -Open auto alchemy tool -Set your inventory
[Release] Auto Alchemy: Magic Stone Fuser (vSro)
06/14/2015 - SRO PServer Guides & Releases - 32 Replies
Hey there guys, I found this the other day, and since I wasn't asked to not to ("Feel free to share these tools with your friends or other people."), I decided to make a post about it. :) So, we have our first public AutoIt script which fuses magic stones! :) http://i.epvpimg.com/sVyfc.png



All times are GMT +2. The time now is 02:43.


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.