Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Perfect World
You last visited: Today at 01:30

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

Advertisement



[REQUEST]Zoom out

Discussion on [REQUEST]Zoom out within the Perfect World forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2007
Posts: 2
Received Thanks: 0
[REQUEST]Zoom out

Anyone able to tell me how to make the zoom out go further? I get in some postitions and the zoom out distance is not nearly enough. Thanks in advance.
Sky is offline  
Old 12/26/2007, 23:31   #2
 
elite*gold: 0
Join Date: Jan 2007
Posts: 79
Received Thanks: 7
Been looking for the file and I havent found it yet, but when I do ill release a modified file(s) with the filter removed, increase turn speed and increased zoom.
sess is offline  
Old 12/28/2007, 07:20   #3
 
elite*gold: 0
Join Date: Dec 2007
Posts: 12
Received Thanks: 63
open Olly
Search for sequence of commands
fadd dword ptr [esi+40]
fst dword ptr [esi+40]

004056BE . D985 CD000000 fld dword ptr [ebp+CD]
004056C4 . D846 40 fadd dword ptr [esi+40]
004056C7 . D956 40 fst dword ptr [esi+40]
004056CA . D81D FCAB8400 fcomp dword ptr [84ABFC] may be XXXXXX
004056D0 . DFE0 fstsw ax
004056D2 . 25 00410000 and eax, 4100
004056D7 . EB 03 jnz short 004056DC <---jnz change to jmp
004056D9 . 894E 40 mov dword ptr [esi+40], ecx
004056DC > 8B07 mov eax, dword ptr [edi]
004056DE . 3BC3 cmp eax, ebx
004056E0 . 0F85 E8000000 jnz 004057CE
004056E6 . 8957 14 mov dword ptr [edi+14], edx
004056E9 . D947 18 fld dword ptr [edi+18]
004056EC . D947 14 fld dword ptr [edi+14]
004056EF . D947 10 fld dword ptr [edi+10]
004056F2 . D9C0 fld st
akson is offline  
Thanks
3 Users
Old 12/28/2007, 08:30   #4
 
elite*gold: 0
Join Date: Jan 2007
Posts: 79
Received Thanks: 7
Could you compile it with multi-client too?
Ive tried but it doesnt work
sess is offline  
Old 01/03/2008, 05:51   #5
 
elite*gold: 0
Join Date: Jan 2008
Posts: 14
Received Thanks: 19
Hi akson, thanks for your posts in this forum describing how to edit the elementclient.exe. I followed your instructions in another thread and was able to disable the launcher app requirement (but was unsuccessful in getting multiclient to work).

I also want to use this zoom hack but I've not been able to get it to work. Your code is fundamentally different to what I have in my own elementclient version (for the MY-ENG version of PW).

Using my code, could you instruct me which edits I need to make in order to freely zoom as far out as I want? If you need a larger segment, do let me know.

Thanks for your kind help.

Code:
004057D9  |. D985 CD000000  FLD DWORD PTR SS:[EBP+CD]
004057DF  |. D846 40        FADD DWORD PTR DS:[ESI+40]
004057E2  |. D956 40        FST DWORD PTR DS:[ESI+40]
004057E5  |. D81D DCDB8300  FCOMP DWORD PTR DS:[83DBDC]
004057EB  |. DFE0           FSTSW AX
004057ED  |. F6C4 41        TEST AH,41
004057F0  |. 75 03          JNZ SHORT elementc.004057F5
004057F2  |. 894E 40        MOV DWORD PTR DS:[ESI+40],ECX
004057F5  |> 8B07           MOV EAX,DWORD PTR DS:[EDI]
004057F7  |. 3BC3           CMP EAX,EBX
004057F9  |. 0F85 EB000000  JNZ elementc.004058EA
004057FF  |. 8957 14        MOV DWORD PTR DS:[EDI+14],EDX
00405802  |. D947 18        FLD DWORD PTR DS:[EDI+18]
00405805  |. D947 14        FLD DWORD PTR DS:[EDI+14]
00405808  |. D947 10        FLD DWORD PTR DS:[EDI+10]
0040580B  |. D9C0           FLD ST
Fiestaa is offline  
Old 01/03/2008, 18:02   #6
 
elite*gold: 0
Join Date: Dec 2007
Posts: 22
Received Thanks: 8
Code:
TEST AH,41
is the check if you have reached the maximum zoomout level
voe01 is offline  
Old 01/03/2008, 20:27   #7
 
elite*gold: 0
Join Date: Jan 2008
Posts: 14
Received Thanks: 19
Quote:
Originally Posted by voe01 View Post
Code:
TEST AH,41
is the check if you have reached the maximum zoomout level
I guessed this may be the case So... could changing the value (41) make a difference, or perhaps NOPing this line? (I've already tried re-writing it to be the same as akson's code, but that didn't work.)

Thanks!
Fiestaa is offline  
Old 01/04/2008, 08:24   #8
 
elite*gold: 0
Join Date: Jan 2008
Posts: 14
Received Thanks: 19
Ok, I don't get it. If I follow akson's code and change that "TEST AH,41" to "AND EAX,4100", the following bytes get overwritten, so the JNZ line disappears. So how are you supposed to change the JNZ line to JMP if it no longer exists?

I also tried filling the TEST line with NOPs. The code reads:

Quote:
004057D9 |. D985 CD000000 FLD DWORD PTR SS:[EBP+CD]
004057DF |. D846 40 FADD DWORD PTR DS:[ESI+40]
004057E2 |. D956 40 FST DWORD PTR DS:[ESI+40]
004057E5 |. D81D DCDB8300 FCOMP DWORD PTR DS:[83DBDC]
004057EB |. DFE0 FSTSW AX
004057ED 90 NOP
004057EE 90 NOP
004057EF 90 NOP
004057F0 EB 03 JMP SHORT elementc.004057F5
004057F2 |. 894E 40 MOV DWORD PTR DS:[ESI+40],ECX
004057F5 |> 8B07 MOV EAX,DWORD PTR DS:[EDI]
004057F7 |. 3BC3 CMP EAX,EBX
004057F9 |. 0F85 EB000000 JNZ elementc.004058EA
004057FF |. 8957 14 MOV DWORD PTR DS:[EDI+14],EDX
00405802 |. D947 18 FLD DWORD PTR DS:[EDI+18]
00405805 |. D947 14 FLD DWORD PTR DS:[EDI+14]
00405808 |. D947 10 FLD DWORD PTR DS:[EDI+10]
0040580B |. D9C0 FLD ST
This doesn't work either.
Fiestaa is offline  
Old 01/04/2008, 12:15   #9
 
syntex's Avatar
 
elite*gold: 46
Join Date: Mar 2006
Posts: 2,589
Received Thanks: 1,198
004057D9 |. D985 CD000000 FLD DWORD PTR SS:[EBP+CD]
004057DF |. D846 40 FADD DWORD PTR DS:[ESI+40]
004057E2 |. D956 40 FST DWORD PTR DS:[ESI+40]
004057E5 |. D81D DCDB8300 FCOMP DWORD PTR DS:[83DBDC]
004057EB |. DFE0 FSTSW AX
004057ED |. F6C4 41 TEST AH,41
004057F0 |. 75 03 jmp SHORT elementc.004057F5
004057F2 |. 894E 40 MOV DWORD PTR DS:[ESI+40],ECX
004057F5 |> 8B07 MOV EAX,DWORD PTR DS:[EDI]
004057F7 |. 3BC3 CMP EAX,EBX
004057F9 |. 0F85 EB000000 jmp elementc.004058EA
004057FF |. 8957 14 MOV DWORD PTR DS:[EDI+14],EDX
00405802 |. D947 18 FLD DWORD PTR DS:[EDI+18]
00405805 |. D947 14 FLD DWORD PTR DS:[EDI+14]
00405808 |. D947 10 FLD DWORD PTR DS:[EDI+10]
0040580B |. D9C0 FLD ST

p.s. this part is missing : 004058EA
so we cant see where it jmp to
syntex is offline  
Old 02/10/2008, 09:39   #10
 
elite*gold: 0
Join Date: Dec 2007
Posts: 2
Received Thanks: 0
anyone able to get this to work or have another method?
Sky is offline  
Reply


Similar Threads Similar Threads
[REQUEST / Suche] Zoom- und Nebelhack pur
09/15/2010 - Metin2 - 13 Replies
Hallo zusammen, ich suche einen reinen Zoom- und Nebelhack (mit Fensterauswahl). Falls es so etwas schon gibt, wo kann ich den bekommen? Falls es das noch nicht gibt.....kann das jemand "schnell mal" machen? :D:D:D Bitte verweist jetzt nicht auf die SuFu oder andere Hacks die das enthalten. SuFu hab' ich so etwas nicht gefunden. Von den anderen Hacks funktionieren momentan nur der von Francessco (ital.) und der von Downtime (soweit ich weiss). Der von Francessco läuft bei mir nicht...
[Request] Zoom- und nebelhack
05/10/2010 - Metin2 - 7 Replies
Hallo zusammen, wenn man andere Threads so liest, dann ist anscheinend ein Zoomhack ganz einfach; ich frage mich nur: warum macht dann keiner einen? Kann bitte jemand einen Zoomhack schreiben? Wenn Nebelhack noch dabei ist, umso besser. Danke Schönes WE Opop
[Request]zoom hack
09/13/2009 - Silkroad Online - 2 Replies
i need zoom hack patcher, a guide how to do it manually or a loader for isro client version 1.150
SunSRO Zoom-hack [REQUEST]
07/24/2009 - SRO Private Server - 2 Replies
as topic says i request for a zoomhack to SunSRO anybody can create it or its not possible?
Request PW indo multi zoom + jump
04/16/2009 - Perfect World - 0 Replies
My multi zoom and jump element client doesn't work anymore after the latest update,.. does anyone have the updated one.. PLZ.



All times are GMT +2. The time now is 01:30.


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.