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 15:35

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

Advertisement



RSBot open source silkroad online bot has been released!

Discussion on RSBot open source silkroad online bot has been released! within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Closed Thread
 
Old 03/08/2022, 19:14   #46
 
@$$'s Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 734
Received Thanks: 87
the bot can't read all skills + imbue
and devil Spirit item could you fix it?


when teleport and record script the bot won't teleport and stoped work
@$$ is offline  
Old 03/08/2022, 22:15   #47
 
elite*gold: 0
Join Date: Apr 2018
Posts: 68
Received Thanks: 257
Quote:
Originally Posted by @$$ View Post
the bot can't read all skills + imbue
and devil Spirit item could you fix it?


when teleport and record script the bot won't teleport and stoped work
RSBot hiding low level skills ^^ I will add the devil sprit with next updates
SDClowen is offline  
Thanks
1 User
Old 03/08/2022, 22:32   #48
 
concludeit's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 280
Received Thanks: 148
Quote:
Originally Posted by frooby1994 View Post
very nice bot so far, but i have problems picking up items, the bot just doesnt do that. if i select "pick up" it saves that as "storing it". if i press "store it" it saves it under "sell it", and if i select "sell it" it saves it as "pick up". still, even if it shows, that it should pick it up, it just doesnt do that. and the pet pick up doesnt do anything either :/
I found in the code that the setting is saved properly, but loaded back in the form in the wrong order.

Whether the character actually picks up anything is a different problem - this is more of a UI / config problem.

@SDClowen hope you don't mind, but I debugged it, and found the problem.

Repro:
- select any item, only set Pickup to True
- Save settings
- reload form (apply/search) to see same item
- Sell will be True, Pickup will be False

Solution:

In here:
Code:
Main.cs

private async Task PopulateSellListAsync(List<RefObjItem> items)
This part of the code:
Code:
ShoppingManager.SellFilter.Invoke(item.CodeName).ToString(),
ShoppingManager.StoreFilter.Invoke(item.CodeName).ToString(),
PickupManager.PickupFilter.Invoke(item.CodeName).ToString()
This should be:
Code:
PickupManager.PickupFilter.Invoke(item.CodeName).ToString(),
ShoppingManager.SellFilter.Invoke(item.CodeName).ToString(),
ShoppingManager.StoreFilter.Invoke(item.CodeName).ToString()

Other issue:

MaxiGuard verification fails when using automatic login. This is caused because the login attempt is sent too early to the server.

I was able to fix this by making the delay longer (5000ms instead of 1000ms), but your original Task.Delay() in DelayedLoginTry() did not work for me with the ContinueWith for some reason. I ended up changing async voids to async Tasks (which is better practice, I recommend it), and use await Task.Delay(5000), and call the next method with await, after 5 second passes, and that worked fine.

Other minor issue:

Hiding lower level skills actually hides some high level skills for bow. E.g. Anti Devil Bow - Strike (which is 4th) is considered "lower" than Anti Devil Bow - Steel (which is 3rd). There might be others, I just found this one.
concludeit is offline  
Thanks
1 User
Old 03/08/2022, 22:39   #49
 
elite*gold: 0
Join Date: Jun 2017
Posts: 83
Received Thanks: 23
Quote:
Originally Posted by concludeit View Post
I found in the code that the setting is saved properly, but loaded back in the form in the wrong order.

Whether the character actually picks up anything is a different problem - this is more of a UI / config problem.

@SDClowen hope you don't mind, but I debugged it, and found the problem.

Repro:
- select any item, only set Pickup to True
- Save settings
- reload form (apply/search) to see same item
- Sell will be True, Pickup will be False

Solution:

In here:
Code:
Main.cs

private async Task PopulateSellListAsync(List<RefObjItem> items)
This part of the code:
Code:
ShoppingManager.SellFilter.Invoke(item.CodeName).ToString(),
ShoppingManager.StoreFilter.Invoke(item.CodeName).ToString(),
PickupManager.PickupFilter.Invoke(item.CodeName).ToString()
This should be:
Code:
PickupManager.PickupFilter.Invoke(item.CodeName).ToString(),
ShoppingManager.SellFilter.Invoke(item.CodeName).ToString(),
ShoppingManager.StoreFilter.Invoke(item.CodeName).ToString()
Thanks.
I don't know whether I'm rude or not but it's even more appreciated if you made a pull request with that in github
Ahmed0425 is offline  
Old 03/08/2022, 23:08   #50
 
concludeit's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 280
Received Thanks: 148
Quote:
Originally Posted by Ahmed0425 View Post
Thanks.
I don't know whether I'm rude or not but it's even more appreciated if you made a pull request with that in github
Sure, no worries! I'm happy to contribute.

I'll make some other pull requests with local fixes I made for myself - feel free to decline anything and do it your own way if you want to. You know the project better than I will ever do
concludeit is offline  
Thanks
1 User
Old 03/11/2022, 18:21   #51
 
elite*gold: 0
Join Date: May 2015
Posts: 68
Received Thanks: 13
when i start the bot
it crashes failed to load plugins process closed.
any ideas what is the problem?
ayashi321 is offline  
Old 03/11/2022, 22:08   #52
 
KsT_Pro's Avatar
 
elite*gold: 0
Join Date: May 2015
Posts: 23
Received Thanks: 0
Quote:
Originally Posted by ayashi321 View Post
when i start the bot
it crashes failed to load plugins process closed.
any ideas what is the problem?
same problem any solution?
KsT_Pro is offline  
Old 03/12/2022, 11:58   #53
 
Yui..'s Avatar
 
elite*gold: 1
Join Date: Jan 2008
Posts: 187
Received Thanks: 25
<Error> Invalid skill error code: 0x05
[12:57:57] <Error> Invalid skill error code: 0x05
[12:57:57] <Error> Invalid skill error code: 0x05
[12:57:57] <Error> Invalid skill error code: 0x05
[12:58:02] <Error> Could not select entity 0x4
[12:58:02] <Error> Could not select entity 0x4
[12:58:02] <Error> Could not select entity 0x4
[12:58:04] <Error> Could not select entity 0x4
[12:58:06] <Error> Could not select entity 0x4
[12:58:08] <Error> Could not select entity 0x4
Yui.. is offline  
Old 03/21/2022, 07:57   #54
 
elite*gold: 0
Join Date: Apr 2018
Posts: 68
Received Thanks: 257
RSBot new release out!



Thread updated
SDClowen is offline  
Thanks
5 Users
Old 03/21/2022, 20:34   #55
 
elite*gold: 0
Join Date: Apr 2008
Posts: 14
Received Thanks: 1
Quote:
Originally Posted by SDClowen View Post
RSBot new release out!



Thread updated
It's gold. Thanks a lot!
Globoo is offline  
Old 03/22/2022, 01:52   #56
 
Cyrillus Rigid's Avatar
 
elite*gold: 0
Join Date: Feb 2022
Posts: 45
Received Thanks: 8
in last version
auto buff working w/o problems
but no there auto select ,auto hunt and skills , buff delete automatic
Cyrillus Rigid is offline  
Old 03/26/2022, 19:12   #57
 
elite*gold: 0
Join Date: Jan 2009
Posts: 9
Received Thanks: 0
mine keeps saying
Object reference not set to an instance of an object.

And it only uses 1st attack skill and then normal attack until the mob dies.
MrMouse is offline  
Old 03/26/2022, 21:33   #58
 
elite*gold: 0
Join Date: Jun 2021
Posts: 4
Received Thanks: 0
The bot is working, but I would like to have a PickupManager only running process in this whole system.
Since the WinForm has been split into their individual parts and the code is thus, for me at least, not trackable, I would ask you to add another button for it next to the START BOT one. I actually only need the PickupManager function, nothing else.

The bot is working, but I would like to have a PickupManager only running process in this whole system.
Since the WinForm has been split into their individual parts and the code is thus, for me at least, not trackable, I would ask you to add another button for it next to the START BOT one. I actually only need the PickupManager function, nothing else.
UEFIKiller is offline  
Old 03/27/2022, 08:28   #59
 
silkroadbotter's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 438
Received Thanks: 181
vigor grain not working, maybe you can add a checkbox to use vigor grains instead of potions..
silkroadbotter is offline  
Old 03/30/2022, 03:35   #60
 
elite*gold: 0
Join Date: Apr 2018
Posts: 68
Received Thanks: 257
RSBot v1.8b released
## What's Changed
* Fix NPCselect Freeze(TownScript/NPC and Script/TeleportNPC) by @sakipvp in
* Added guild storage parsing by @SDClowen in
* Quest Parsing converted to object. by @SDClowen in
* Added dark light theme mode and classic windows components by @SDClowen in
* Allow clicking for disabled tab pages by @SDClowen in
* Redesigned tab disabled info by @SDClowen in
* Fixed mismatched colors by @SDClowen in
* Theme color is user adjustable by @SDClowen in
* Tab control redesigned. It now has a flatter look. by @SDClowen in

## New Contributors
* @sakipvp made their first contribution in

**Full Changelog**:

### Fallow our discord server: [Click]()
### [Facebook Page]()
SDClowen is offline  
Thanks
3 Users
Closed Thread

Tags
rsbot, rsbot development, rsbot plugins, rsbot releases, rsbot vsro


Similar Threads Similar Threads
For a long time no new source code has been released to play. France has no forum add
06/27/2018 - Flyff Private Server - 4 Replies
Recently, there is no latest source code released to play, ah, visit the forum for a long time no one has released the source server, one year out
is there any way to bot again?? Cabal 4 has been known and it has been patch again
07/03/2008 - Cabal Online - 0 Replies
:(



All times are GMT +1. The time now is 15:38.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.