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 05:56

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

Advertisement



[RELEASE] VSRO AUTO TRADE BOT (SOLO - MULTI)

Discussion on [RELEASE] VSRO AUTO TRADE BOT (SOLO - MULTI) within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Closed Thread
 
Old 11/05/2021, 02:26   #31
 
bimbum*'s Avatar
 
elite*gold: 147
Join Date: Oct 2017
Posts: 548
Received Thanks: 882
Quote:
Originally Posted by rogerio14 View Post
dont work, client dont open, only disconnect!!
ya cause most filters block edxloader redirections you may also move the trade function to rs bot
bimbum* is offline  
Old 11/05/2021, 06:27   #32
 
elite*gold: 0
Join Date: Mar 2010
Posts: 565
Received Thanks: 226
Talking

Quote:
Originally Posted by bimbum* View Post
.
Congratulations on the new photos
Laag#82 is offline  
Old 11/08/2021, 08:52   #33
 
elite*gold: 0
Join Date: Aug 2021
Posts: 7
Received Thanks: 0
Quote:
Originally Posted by bimbum* View Post
thats because the movement , speed calculations are wrong.. source is provided you may copy this function and add it to rs bot
Thanks for your reply, can you help to be more specific on this? How can I change the speed calculation?
Sorry for my limited knowledge, since I'm not familiar with coding.
farofiera is offline  
Old 01/12/2022, 06:31   #34
 
elite*gold: 0
Join Date: Dec 2021
Posts: 4
Received Thanks: 0
Does anyone know a fix? when i see the town i got automatically crash
.Siv. is offline  
Old 03/23/2022, 13:49   #35
 
elite*gold: 0
Join Date: Feb 2012
Posts: 46
Received Thanks: 4
Error Building database please close all bots and try again ! Any Fix ?
silkroad4all is offline  
Old 03/26/2022, 23:51   #36
 
elite*gold: 0
Join Date: Dec 2014
Posts: 2
Received Thanks: 0
clientless not work
cherky is offline  
Old 04/13/2022, 15:15   #37
 
elite*gold: 0
Join Date: Mar 2014
Posts: 4
Received Thanks: 0
Extracting error, gateways cannot be readed how can i fix this
zazongxd is offline  
Old 04/14/2022, 12:38   #38
 
elite*gold: 0
Join Date: Dec 2021
Posts: 6
Received Thanks: 2
nice keep going
T0RJAN is offline  
Old 04/28/2022, 02:48   #39
 
DjAlejo's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 256
Received Thanks: 60
bro, when i select the char, client crash!! what happend this?
DjAlejo is offline  
Old 04/28/2022, 15:26   #40
 
bimbum*'s Avatar
 
elite*gold: 147
Join Date: Oct 2017
Posts: 548
Received Thanks: 882
Quote:
Originally Posted by DjAlejo View Post
bro, when i select the char, client crash!! what happend this?
it could be a parse error.
the owner of bot mentioned that the bot has many issues and might not be working well, if the game that you are going to use for didnt change the trade packet, you can use the source from comments and fix it or understand the codes and add it to rsbot its fully stable
bimbum* is offline  
Old 05/20/2022, 01:11   #41
 
elite*gold: 0
Join Date: Apr 2022
Posts: 4
Received Thanks: 0
Quote:
Originally Posted by farofiera View Post
I managed to make the bot works, but there are delays between 2 different coordinates, any idea to solve this?
how did u work that?
beddoreis is offline  
Old 08/29/2022, 16:28   #42
 
elite*gold: 0
Join Date: Jun 2017
Posts: 32
Received Thanks: 4
hello, i just downloaded the bot and tried it.
it didn't work in psro, In the server selection Server says it's full with 6000/6000 members
but when i open normal client or via mBot it login normally.. Have psro owners done that to block such bots like Ur bot guys? or there's a solution for that?

I can't even login with clientless or normal client via the bot.
ehabyassen is offline  
Old 08/29/2022, 19:52   #43
 
bimbum*'s Avatar
 
elite*gold: 147
Join Date: Oct 2017
Posts: 548
Received Thanks: 882
Quote:
Originally Posted by ehabyassen View Post
hello, i just downloaded the bot and tried it.
it didn't work in psro, In the server selection Server says it's full with 6000/6000 members
but when i open normal client or via mBot it login normally.. Have psro owners done that to block such bots like Ur bot guys? or there's a solution for that?

I can't even login with clientless or normal client via the bot.
First of all the bot was coded by jellybitz, and as he mentioned he no longer supports it.
Secondly, I was making some auto trade for a friend from cronos , maybe someone might turn it into plugin if he wants to,
it will be bypassing phbot protection thing
that was done in like 30 minutes , and i hadnt chance to read how the program actually work so it might be odd when it comes to programming. (RSBot)

Code:
       public static void SellItem(ushort Amount)
        {
            if (SelectedEntity == null)
                return;
            ushort opcode = 0x7034;
            //bypass phbot thing
            Process[] processlist = Process.GetProcesses();

            Process? sro_client = null;
            foreach (var process in processlist)
                if (process.ProcessName.ToLower().Contains("sro_client"))
                    sro_client = process;

            if (sro_client != null)
            {
                //0x00796175 PUSH
                //0x00796175 + 1 0x7034
                byte[] opcodeBytes = Memory.ReadBytes(sro_client, 0x00796175 + 1, 0x4);

                opcode = (ushort)BitConverter.ToInt32(opcodeBytes, 0);
            }
            for (int i=0;i< Game.Player.JobTransport.Inventory.Capacity; i++)
            {
                var packet = new Packet(opcode);
                packet.WriteByte(0x14);
                packet.WriteUInt(Game.Player.JobTransport?.UniqueId);
                packet.WriteByte(i);
                packet.WriteUShort(Amount);
                packet.WriteUInt(SelectedEntity.UniqueId);

                PacketManager.SendPacket(packet, PacketDestination.Server);
                if (!running)
                    break;
                Thread.Sleep(500);
            }
        }
Code:
        public static void PurchaseItem(int tab, int slot, ushort amount)
        {
            var npc = SelectedEntity;
            if (npc == null)
            {
                Log.Debug("Cannot buy items, because no shop is selected!");
                return;
            }
            ushort opcode = 0x7034;

            //bypass phbot thing
            Process[] processlist = Process.GetProcesses();

            Process? sro_client = null;
            foreach (var process in processlist)
                if (process.ProcessName.ToLower().Contains("sro_client"))
                    sro_client = process;

            if (sro_client != null)
            {
                //0x00795AFA PUSH
                //0x00795AFA + 1 0x7034
                byte[] opcodeBytes = Memory.ReadBytes(sro_client, 0x00795AFA + 1, 0x4);

                opcode = (ushort)BitConverter.ToInt32(opcodeBytes, 0);
                Log.Notify($"{opcode}");
            }
            for (int i=0;i < Game.Player.JobTransport.Inventory.Capacity;i++)
            {
                if (!running)
                    break;
                var packet = new Packet(opcode);
                packet.WriteByte(0x13); //Buy item flag
                packet.WriteInt(0x0);
                packet.WriteByte(tab);
                packet.WriteByte(0x0);
                packet.WriteUShort(amount);
                packet.WriteUInt(npc.UniqueId);

                PacketManager.SendPacket(packet, PacketDestination.Server);
                Thread.Sleep(500);
            }
          
        }
Code:
commands examples
buy npcname tabindex slotindex maxstack
sell npcname maxstack
so it might be something like
buy npcname 0 0 50
sell 50
if maxstack is 50
others are normally as bot, bot provides a script recorder.
Attached Files
File Type: rar AutoTrade.rar (428.8 KB, 171 views)
File Type: rar Build.rar (1.41 MB, 164 views)
bimbum* is offline  
Thanks
1 User
Old 09/07/2022, 06:36   #44
 
elite*gold: 0
Join Date: Jun 2016
Posts: 2
Received Thanks: 0
I got it to the character selection screen, but it crashes every time i click on the character and the "start" button
beevang916 is offline  
Old 09/07/2022, 19:27   #45
 
janicka's Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 667
Received Thanks: 198
Quote:
Originally Posted by beevang916 View Post
I got it to the character selection screen, but it crashes every time i click on the character and the "start" button
Item parsing error. Try it with empty inventory, pet and not equipped gear. Also devil spirit can do this.
janicka is offline  
Closed Thread


Similar Threads Similar Threads
[BOTJOLT.COM] Torn Bot - Auto-Gym,Captcha Solver, Auto-Crime,Auto-Dump, Auto-Stocks
06/20/2022 - Browsergames - 3 Replies
Auto-Gym,Captcha-Solver,Auto-Crime,Auto-Dump,Auto- Stocks and more comming soon! BotJolt - Bot for torn https://botjolt.com/panel/mlogo.png Introduction: Our bot is quite new, its still on its 0.0.3beta version, we are accepting suggestions for new features and improvements. We have an official discord from which you can participate on its bot development with suggestions, there is also a support system into our website when you create an account. Youtube preview:...
vSRO Auto Equipment, vSRO Auto Equipment, Full Sun +12 - FB - STATLI
09/05/2021 - SRO PServer Guides & Releases - 2 Replies
Hello Guys In the current state, auto items come between 1DG-10DG. It is set to level 15 for 2DG, other dgs are at the level of full set can not be consumed. (23Lv, 31Lv, 40Lv, 47Lv, 57Lv, 69Lv, 81Lv, 95Lv) Items are set to Sun, you can make necessary edits from TR_AUTOEQUIP_SPARE trigger. Items come with +12 100% stats and STR, INT blues. You can edit this part using the FN_ADD_INITIAL_EQUIP_SPARE procedure. Things to do; Just execute the Table, Procedure, and Trigger. Execute order:...
[Selling] Instagram bot only 5$ - Auto like - Auto comment - Auto follow - Auto unfollow
10/21/2016 - Instagram Trading - 7 Replies
Hey everyone, My friend friend made a instagram bot. he told me then i can resell it so i do it on Elitepvpers. this bot contains Autolike Autofollow Autounfollow Autocomment



All times are GMT +2. The time now is 05:56.


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.