elitepvpers

elitepvpers (https://www.elitepvpers.com/forum/)
-   SRO PServer Guides & Releases (https://www.elitepvpers.com/forum/sro-pserver-guides-releases/)
-   -   RSBot open source silkroad online bot has been released! (https://www.elitepvpers.com/forum/sro-pserver-guides-releases/4974197-rsbot-open-source-silkroad-online-bot-has-been-released.html)

Cyrillus Rigid 03/05/2022 22:06

Great work @SDClowen but in v274 files when use item or auto potion get DC/Crash

SDClowen 03/07/2022 10:48

Quote:

Originally Posted by Cyrillus Rigid (Post 39100694)
Great work @SDClowen but in v274 files when use item or auto potion get DC/Crash

I fixed the problem. It will be in v1.6b

Quote:

Originally Posted by OttomanForce (Post 39099705)
My antivirus blocked the download of 1.5b due to malware. What could be the reason?

Mayve false positive viruses on the loader.dll. But if you dont trust me you can build with source by yourself.

Version: v1.6b

Release Page: [Only registered and activated users can see links. Click Here To Register...]

Change Logs

Fixed socket exception
Fixed refobjitem parsing
Added korean-sro(ksro) supporting
Fixed item parsing on newer clients
Removed cache system. The speed already enough i have different idea …
Fix 274 item parsing
Fix walk around movement

Closed Issues

[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]

huweto 03/07/2022 23:09

thats a nice community project. keep it up!

Cyrillus Rigid 03/07/2022 23:51

@SDClown
Great Work bro but in pet setting auto heal hp for attack pet not working alway get cannont find target
when use hp pet item get crash
U Want to add Awaken / Enh (plus items) for v274/csro in alchemy group
and level coins for CSRO

concludeit 03/08/2022 15:46

First of all: huge thanks for making it open source, and also using C#. I love what you did. :) I checked out your code.

One observation: sometimes the bot is unable to target a monster, in the TargetBundle, the following path runs:

Code:

if (!Game.Player.SelectEntity(monster.UniqueId))
    Invoke();

This recursive call, if the monster cannot be selected again, will simply run again, again, and again. If I interfere (click somewhere, select the mob), then it recovers and continues botting. If I don't do anything, this gets printed 100 times in the log: Could not select entity 0x ...

I'm sure you have some code to retry stuff, perhaps it would be sensible to set a fixed count the recursive call can be made? So it will exit eventually, and try again from the start.

@$$ 03/08/2022 19:14

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

SDClowen 03/08/2022 22:15

Quote:

Originally Posted by @$$ (Post 39104046)
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

concludeit 03/08/2022 22:32

Quote:

Originally Posted by frooby1994 (Post 39049757)
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. :D

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.

Ahmed0425 03/08/2022 22:39

Quote:

Originally Posted by concludeit (Post 39104270)
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. :D

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

concludeit 03/08/2022 23:08

Quote:

Originally Posted by Ahmed0425 (Post 39104276)
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 :)

ayashi321 03/11/2022 18:21

when i start the bot
it crashes failed to load plugins process closed.
any ideas what is the problem?

KsT_Pro 03/11/2022 22:08

Quote:

Originally Posted by ayashi321 (Post 39107995)
when i start the bot
it crashes failed to load plugins process closed.
any ideas what is the problem?

same problem any solution?

Yui.. 03/12/2022 11:58

<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

SDClowen 03/21/2022 07:57

RSBot new release out!

[Only registered and activated users can see links. Click Here To Register...]

Thread updated

Globoo 03/21/2022 20:34

Quote:

Originally Posted by SDClowen (Post 39118856)
RSBot new release out!

[Only registered and activated users can see links. Click Here To Register...]

Thread updated

It's gold. Thanks a lot!

Cyrillus Rigid 03/22/2022 01:52

in last version
auto buff working w/o problems
but no there auto select ,auto hunt and skills , buff delete automatic

MrMouse 03/26/2022 19:12

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.

UEFIKiller 03/26/2022 21:33

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.

silkroadbotter 03/27/2022 08:28

vigor grain not working, maybe you can add a checkbox to use vigor grains instead of potions..

SDClowen 03/30/2022 03:35

RSBot v1.8b released
## What's Changed
* Fix NPCselect Freeze(TownScript/NPC and Script/TeleportNPC) by @sakipvp in [Only registered and activated users can see links. Click Here To Register...]
* Added guild storage parsing by @SDClowen in [Only registered and activated users can see links. Click Here To Register...]
* Quest Parsing converted to object. by @SDClowen in [Only registered and activated users can see links. Click Here To Register...]
* Added dark light theme mode and classic windows components by @SDClowen in [Only registered and activated users can see links. Click Here To Register...]
* Allow clicking for disabled tab pages by @SDClowen in [Only registered and activated users can see links. Click Here To Register...]
* Redesigned tab disabled info by @SDClowen in [Only registered and activated users can see links. Click Here To Register...]
* Fixed mismatched colors by @SDClowen in [Only registered and activated users can see links. Click Here To Register...]
* Theme color is user adjustable by @SDClowen in [Only registered and activated users can see links. Click Here To Register...]
* Tab control redesigned. It now has a flatter look. by @SDClowen in [Only registered and activated users can see links. Click Here To Register...]

## New Contributors
* @sakipvp made their first contribution in [Only registered and activated users can see links. Click Here To Register...]

**Full Changelog**: [Only registered and activated users can see links. Click Here To Register...]

### Fallow our discord server: [Click]([Only registered and activated users can see links. Click Here To Register...])
### [Facebook Page]([Only registered and activated users can see links. Click Here To Register...])

KsT_Pro 03/30/2022 21:39

when i start the bot
it crashes failed to load plugins process closed.
any ideas what is the problem?
can you make installer for it ?

tyghbnASD123 03/31/2022 08:22

Thank you for this bot
But i have some proplem
Mp and hp for fellow pet not work
Vigor hp mp not work

SDClowen 04/05/2022 02:04

RSBot v1.9b Final Beta Release out!

Change Log
Fixed issue #117
Fix unicode & ascii str parsing on csro client
Fixed icons & fix pk2 files paths
Fixed stall player parsing on chinese clients(csro)
Added feature auto select unique monsters #38
Add prefix to assembly name "RSBot"

Github Release Page: [Only registered and activated users can see links. Click Here To Register...]

Hamza FiGo 06/05/2022 17:06

That bot is great. Thanks for the good work.

Edit: i think there is something wrong with multi bots. Can't open more than 1 char

[IMG=expandable: 1]http://i.epvpimg.com/VLTVdab.png[/IMG]

SDClowen 08/10/2022 04:17

@devsome lock the topic please.

Devsome 08/10/2022 09:36

Quote:

Originally Posted by SDClowen (Post 39287886)
@devsome lock the topic please.

#closed as requested


All times are GMT +2. The time now is 13:08.

Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.