[Release] Metin2 DragoBot For All Servers (Source Code for bot)

02/17/2021 08:05 cioace9#16
Quote:
Originally Posted by sad666 View Post
Thank you for release also your dumper looks interesting too.Can you give any tips about how it works ? I always wonder how to get PyCFunction address.
Yeah, you can do any "hack" with this, for example "buff bot", if you want how to make it, try to search on the internet "python buff bot" and you will see.
02/17/2021 13:48 Rayyor90#17
Oh my multithreading cython and not decreffing PyObject, dont think it working like charm:D Even without python u cant use any send packet method in other threads then main
02/18/2021 05:52 sad666#18
Quote:
Originally Posted by cioace9 View Post
Yeah, you can do any "hack" with this, for example "buff bot", if you want how to make it, try to search on the internet "python buff bot" and you will see.
Thank you but actually I was talking about python dumper.Is there method in python to get address pycfuntion or are you searching python string on module ? Some clients are packed nowadays and I want to get address from dump file.
02/18/2021 06:33 cioace9#19
Quote:
Originally Posted by sad666 View Post
Thank you but actually I was talking about python dumper.Is there method in python to get address pycfuntion or are you searching python string on module ? Some clients are packed nowadays and I want to get address from dump file.
I don't know what you mean, but if you want in python script to get all functions from module you can try this:
import dbg
import os

dump = str(dir(os))
dbg.LogBox(dump) // here are all functions from "os" module

if you want address of some function, you just call simple like this:

def x(y):
print y

print(x) // here will display address of that function: <function x at 0xAAAAAAAA>
05/22/2021 21:33 KALLLLLLLL#20
what im looking for :) thanx
05/30/2021 19:43 eurowin#21
Doesn`t work on official. Addr from server not find.
09/27/2022 10:20 Kastancz#22
Do you know of any bot that would automatically mine ore?
09/28/2022 11:44 Ιnori#23
Is there any chance you release the source for M2DragoDumperLibrary.dll aswell?
10/08/2022 19:18 adrian0M#24
Hi, I am having compilation troubles.Is it possible to post a short video/tutorial about the enviroment setup?
I've tried to set everything up acordingly and include every path and I am getting weird errors....I've been trying this for 3 days....and still no success...
10/12/2022 02:24 white5pirit#25
Quote:
Originally Posted by Ιnori View Post
Is there any chance you release the source for M2DragoDumperLibrary.dll aswell?
I am hoping this will be the case! This looks pretty sweet. I'll get around to turning this into a CMake project instead for my own personal use and seeing what I can do with it :)
10/13/2022 11:55 baba4507#26
how can build ? vs2013
10/18/2022 06:30 Ιnori#27
To the people who want the source of the dll:

Okay so basically you have to use RPM to search for Py_InitModule4 calls.
1st argument is our module name.
2nd argument is a pointer to the memory region that holds the PyMethodDef data, cast it or iterate the memory region it has our desired pointer to the PyCFunction.

Here is a little help:
Code:
68????????6A006A0068????????68
Code:
PyObject* Py_InitModule4(char *name, PyMethodDef *methods, char *doc, PyObject *self, int apiver)
[Only registered and activated users can see links. Click Here To Register...]

Good luck and have fun!
10/21/2022 20:28 cypher#28
#closed