Register for your free account! | Forgot your password?

Go Back   elitepvpers > Search Forums
You last visited: Today at 07:33

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

Advertisement



Showing results 1 to 25 of 30
Search took 0.01 seconds.
Search: Posts Made By: sad666
Forum: Metin2 Private Server 02/15/2025, 17:03
Replies: 3
Views: 944
Posted By sad666
I guess some functions don’t really work well...

I guess some functions don’t really work well with multi-threading. Maybe try hooking into the main loop or render function instead of creating a thread
Forum: Metin2 11/17/2023, 23:50
Replies: 4
Views: 1,329
Posted By sad666
start with dumping client and check reference...

start with dumping client and check reference strings any disassembler would help you
Forum: Metin2 07/04/2022, 12:11
Replies: 3
Views: 800
Posted By sad666
the flickering happens when you try to jump more...

the flickering happens when you try to jump more than 2000 pixel at once. so if you want to increase that range have to separate your jumps. also try to transition between attack and pick instead of...
Forum: Metin2 12/10/2021, 22:52
Replies: 3
Views: 1,869
Posted By sad666
copy "Group Event0x" and increase x by 1 each...

copy "Group Event0x" and increase x by 1 each time also you need to re order the their StartingTime. You can edit position and radius too for bigger attack range but if mobs not close to you enough,...
Forum: Metin2 12/10/2021, 00:14
Replies: 3
Views: 1,869
Posted By sad666
msa files hold the sphere information that check...

msa files hold the sphere information that check for collision between weapon and target when attack process. So if you copy this information 10 times, 10 spheres will be calculated instead of one...
Forum: Metin2 10/29/2021, 16:59
Replies: 3
Views: 1,112
Posted By sad666
it is called m_GroundItemInstanceMap in the...

it is called m_GroundItemInstanceMap in the source and member of CPythonItem class so the easiest way is tracing python item module
Forum: Metin2 08/16/2021, 10:30
Replies: 6
Views: 912
Posted By sad666
this part only can observe by another client...

this part only can observe by another client maybe it is working
Forum: Metin2 08/15/2021, 16:51
Replies: 6
Views: 912
Posted By sad666
I have no idea what you re doing and seems like...

I have no idea what you re doing and seems like you dont too. You didn't even mention about error. If you need delay then I don't think sleep is a good choice since the game doesn't handle...
Forum: Metin2 08/11/2021, 23:10
Replies: 2
Views: 840
Posted By sad666
gf is still using old compiler so probably your...

gf is still using old compiler so probably your std map doesn't fit. Check this part [Only registered and activated users can see links]
Forum: Metin2 08/10/2021, 16:23
Replies: 1
Views: 1,316
Posted By sad666
in the server source ofc. client can just "ask"...

in the server source ofc. client can just "ask" the server to teleport somewhere with command thats it.
Forum: Metin2 08/08/2021, 00:28
Replies: 0
Views: 975
Posted By sad666
Dx8 imgui black screen after D3DERR_DEVICELOST

Hi I'm using imgui_impl_dx8 library from C4US source in my project but the client doesn't render itself after D3DERR_DEVICELOST. I couldn't find the problem since debugger doesn't trigger when that...
Forum: Metin2 08/03/2021, 22:37
Replies: 18
Views: 3,328
Posted By sad666
check GetGradeByVID function

check GetGradeByVID function
Forum: Metin2 07/31/2021, 19:19
Replies: 18
Views: 3,328
Posted By sad666
it won't work but you can find the python...

it won't work but you can find the python functions manually using signature.

Also try call virtual GetStatus function from CPythonPlayer vtable. If im not wrong all functions access this function...
Forum: Metin2 06/21/2021, 17:38
Replies: 3
Views: 997
Posted By sad666
you can either hook net.ConnectToAccountServer...

you can either hook net.ConnectToAccountServer function or use region dict from serverInfo module.
Forum: Metin2 06/12/2021, 17:46
Replies: 1
Views: 761
Posted By sad666
there is a hidden module in client. you can...

there is a hidden module in client. you can easily find that using any process dumper.
Forum: Metin2 05/21/2021, 22:39
Replies: 9
Views: 1,299
Posted By sad666
I was getting crash randomly when calling this...

I was getting crash randomly when calling this functions from thread i created and using hook solved my problem. I tried to debug but it redirect me python dll
Forum: Metin2 05/20/2021, 22:09
Replies: 9
Views: 1,299
Posted By sad666
try to hook OnUpdate function and execute here...

try to hook OnUpdate function and execute here instead of createthread. I hope someone knows a better way
Forum: Metin2 05/20/2021, 19:37
Replies: 9
Views: 1,299
Posted By sad666
I mean you are using __UseSkill function right ?...

I mean you are using __UseSkill function right ? If you check this function source you can see it contains some python calls inside. I might be wrong but your client crashes due to this situation.
Forum: Metin2 05/19/2021, 22:51
Replies: 9
Views: 1,299
Posted By sad666
If you are calling a function containing things...

If you are calling a function containing things related to python from another thread client will crash after a while so you have to call these functions from main thread
Forum: Metin2 03/01/2021, 22:38
Replies: 13
Views: 2,701
Posted By sad666
What is your bFunc value in TPacketCGMove packet...

What is your bFunc value in TPacketCGMove packet ? When you use this value as 0 you tell the server that character is there so you should be able to use attack packet without any delay.
Forum: Metin2 Hacks, Bots, Cheats, Exploits & Macros 02/18/2021, 05:52
Replies: 27
Views: 23,679
Posted By sad666
Thank you but actually I was talking about python...

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...
Forum: Metin2 Hacks, Bots, Cheats, Exploits & Macros 02/16/2021, 03:58
Replies: 27
Views: 23,679
Posted By sad666
Thank you for release also your dumper looks...

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.
Forum: Metin2 02/11/2021, 03:25
Replies: 12
Views: 3,072
Posted By sad666
Thank you for helping me I just realized I made a...

Thank you for helping me I just realized I made a mistake sending position info now working correctly
Forum: Metin2 02/11/2021, 02:42
Replies: 12
Views: 3,072
Posted By sad666
Sorry guys I think I messed up move position on...

Sorry guys I think I messed up move position on my first try. Now its working correctly using state packet
Forum: Metin2 02/11/2021, 02:01
Replies: 12
Views: 3,072
Posted By sad666
I am calling SendAttackPacket function in...

I am calling SendAttackPacket function in CPythonNetworkManager class.I checked TPacketCGAttack structure but I couldn't see important variable to change.Doesn't that packet define with arguments...
Showing results 1 to 25 of 30

 
Forum Jump

All times are GMT +1. The time now is 07:33.


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

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.