Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2
You last visited: Today at 15:25

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

Advertisement



Sharing My Last Memories in Botting with U

Discussion on Sharing My Last Memories in Botting with U within the Conquer Online 2 forum part of the MMORPGs category.

Closed Thread
 
Old 03/22/2016, 14:48   #16
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
Quote:
Originally Posted by shmuel12 View Post
Ummm so what method of codes you type in c# I'm also using c# for read memory and write
Its a standalone bot. There's no conquer client at all.
pro4never is offline  
Old 03/23/2016, 12:35   #17
 
elite*gold: 0
Join Date: Aug 2013
Posts: 119
Received Thanks: 11
Quote:
Originally Posted by pro4never View Post
Its a standalone bot. There's no conquer client at all.
there is any tutorial about do that
shmuel12 is offline  
Old 03/23/2016, 12:54   #18
 
elite*gold: 0
Join Date: Jul 2014
Posts: 402
Received Thanks: 540
Quote:
Originally Posted by shmuel12 View Post
there is any tutorial about do that
Yes, here you go:
Quote:
Originally Posted by Spirited View Post
Here's an honest answer. Botting isn't just programming in a language like C#. There's a lot that goes into it as a software process. You need to be very fluent in a language to begin with and have a deep understanding of how software is compiled and executed on your platform and architecture. You need to be familiar with reverse engineering and have excessive practice in (1) reading assembly language or whatever your target is compiled to or can be assembled into, (2) modifying code in the executable or hooking into routines found in the program, (3) taking advantage of detours to route around security and client protections. You need to be familiar with the application you're reversing. You need to understand networking and cryptography. You need to understand game engines and APIs that the applications use. You need to understand a hell of a lot beyond just programming and before just programming, like systems and operating systems. If you know nothing about computers, this is 15 years down the road at best. Leave it to people who have degrees in Computer Science, or people who have spent their last decade or two breathing this stuff. It's their passion, not yours to say "I want that".
Best Coder 2014 is offline  
Thanks
3 Users
Old 03/23/2016, 17:47   #19
Trade Restricted
 
elite*gold: 3
Join Date: Jun 2012
Posts: 334
Received Thanks: 20
yeah coding is easy these days
titieson77 is offline  
Old 03/23/2016, 18:20   #20
 
elite*gold: 0
Join Date: Aug 2013
Posts: 119
Received Thanks: 11
Quote:
Originally Posted by Best Coder 2014 View Post
Yes, here you go:
you didn't understand me i mean describe way to find target ant auto hit not need to know how it done i know what assembly and api and encrypt packets i only asking about distance between character and monster name to complete my project i`m not beginner
shmuel12 is offline  
Old 03/23/2016, 20:50   #21
 
U2_Caparzo's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 314
Received Thanks: 90
Quote:
Originally Posted by shmuel12 View Post
you didn't understand me i mean describe way to find target ant auto hit not need to know how it done i know what assembly and api and encrypt packets i only asking about distance between character and monster name to complete my project i`m not beginner
1.- its a clientless bot, no need to know the name (why would someone need that for a bot?)
2.- its a clientless bot, no need to read/write client memory

ehem...


not a beginner...
U2_Caparzo is offline  
Old 03/23/2016, 20:56   #22
 
elite*gold: 0
Join Date: Aug 2013
Posts: 119
Received Thanks: 11
Quote:
Originally Posted by U2_Caparzo View Post
1.- its a clientless bot, no need to know the name (why would someone need that for a bot?)
2.- its a clientless bot, no need to read/write client memory

ehem...


not a beginner...
ROFL

This from two years ago or more
shmuel12 is offline  
Old 03/23/2016, 21:54   #23
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
Quote:
Originally Posted by shmuel12 View Post
you didn't understand me i mean describe way to find target ant auto hit not need to know how it done i know what assembly and api and encrypt packets i only asking about distance between character and monster name to complete my project i`m not beginner
So you have a fully working bot are somehow stuck at calculating the distance between two known points?... I somehow find that hard to believe.

Google (or any basic, basic level math course) will cover how to calculate distance between two points.


Conquer doesn't care about angles so something like this is what's commonly done with CO.

Example:

Math.Max(Math.Abs(from.X - to.X), Math.Abs(from.Y - to.Y));
pro4never is offline  
Old 03/24/2016, 10:58   #24
 
elite*gold: 0
Join Date: Aug 2013
Posts: 119
Received Thanks: 11
Quote:
Originally Posted by pro4never View Post
So you have a fully working bot are somehow stuck at calculating the distance between two known points?... I somehow find that hard to believe.

Google (or any basic, basic level math course) will cover how to calculate distance between two points.


Conquer doesn't care about angles so something like this is what's commonly done with CO.

Example:

Math.Max(Math.Abs(from.X - to.X), Math.Abs(from.Y - to.Y));
first thanks for your example
so now i try that but there a problem when i read pointer for mouse it us mouse to click how that done
shmuel12 is offline  
Old 03/24/2016, 15:36   #25
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
Quote:
Originally Posted by shmuel12 View Post
first thanks for your example
so now i try that but there a problem when i read pointer for mouse it us mouse to click how that done


annndd there it is.

You claimed you had a fully working bot (packet or memory based). Mouse is never used for any of that. You read the X/Y of ingame objects from the client memory or from the packets being sent between client and server.

So yes, have fun working on your bot :P
pro4never is offline  
Old 03/24/2016, 20:02   #26
 
elite*gold: 0
Join Date: Aug 2013
Posts: 119
Received Thanks: 11
Quote:
Originally Posted by pro4never View Post
annndd there it is.

You claimed you had a fully working bot (packet or memory based). Mouse is never used for any of that. You read the X/Y of ingame objects from the client memory or from the packets being sent between client and server.

So yes, have fun working on your bot :P
i don`t need mouse in thing
i just want click event
maybe i can`t understand this part
and i thinked there is little debug
how i can run client from my prog
to can manage memories on it
can you understand this part to me
why i need to run client from my project
like coai or cog
shmuel12 is offline  
Old 03/24/2016, 20:24   #27
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
Cause you clearly have no idea what you're doing lol.
pro4never is offline  
Old 03/24/2016, 20:47   #28
 
elite*gold: 0
Join Date: Aug 2013
Posts: 119
Received Thanks: 11
Quote:
Originally Posted by pro4never View Post
Cause you clearly have no idea what you're doing lol.
i learning on this project man that`s no funny to still say you have no idea, all of us not born know all thing
in the past you too still try learning
so what funny man i`m ask about what used for make and i will continue not ask for please give me that or capture video to how do that
if my question`s make you annoying till me and i will stop asking
shmuel12 is offline  
Closed Thread


Similar Threads Similar Threads
Mid point between botting, gold botting, and legit
05/25/2013 - SRO Private Server - 25 Replies
Is there any? Because im sick of the minority "legit" players getting there way, and im sick of logging on high populated servers being half gold bot
[S]Easymetin2 botting card [B] china botting acc ( 30 tage)
11/15/2010 - Metin2 Trading - 3 Replies
Ja hallo wie schon geasgt suche ich eine easymetin2 30 tägigen botting card ich biete dafür eine china botting card wo man max 20 fenster auf machen kann Jetzt werden welche sagen warum ich tauschen sollte 20 fenster sind besser als 3 aber mein pc schafft net mehr als 3 und dann kann ich bei easymetin2 net vorstellen mehr zu machen ^^ Handle nur über mm



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


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.