Register for your free account! | Forgot your password?

You last visited: Today at 09:20

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

Advertisement



[Ksro] MC+AS Distance

Discussion on [Ksro] MC+AS Distance within the SRO Hacks, Bots, Cheats & Exploits forum part of the Silkroad Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Sep 2007
Posts: 23
Received Thanks: 12
[Ksro] MC+AS Distance 04-11-2009

UPDATE 05-11-2009

Hi, I had some free time and I did mc and as distance changer.
MC:
Code:
http://www.sendspace.com/file/brc4hr
This file have a virus, because it has been unpacked.
You can do mc yourself, becouse you need unpack sro_client.exe in stripper and edit this offset $41934F from 75 to EB in hexeditor.

To work mc you must 'Run as Administartor'




Ksro AutoSelect Distance changer (the script is not my, but I change offset):

Script work in AutoIt:

Code:
http://www.autoitscript.com/autoit3/downloads.shtml
Code:
;------------------------------------------------------------------------------
;    Memory functions                                                          -
;------------------------------------------------------------------------------

Func _OpenProcess($hWnd, $use_pid=0)
    If $use_pid = 0 Then
        Local $pid = DllCall("user32.dll", "int", "GetWindowThreadProcessId", "hwnd", $hWnd, "int*", 0)
        If IsArray($pid) Then
            $pid = $pid[2]
        Else
            SetError(-1)
            Return
        EndIf
    Else
        Local $pid = $hWnd
    EndIf

    ; 0x001f0fff - All Access
    Local $pHandle = DllCall("kernel32.dll", "long", "OpenProcess", "int", 0x001f0fff, "int", 0, "int", $pid)
    If IsArray($pHandle) And $pHandle[0] > 0 Then
        $pHandle = $pHandle[0]
    Else
        SetError(-2)
        Return
    EndIf

    Return $pHandle
EndFunc

Func _CloseHandle($pHandle)
    DllCall("kernel32.dll", "int", "CloseHandle", "int", $pHandle)
EndFunc

Func _WriteFloat($pHandle, $Address, $value)
    Local $float = DllStructCreate("float")
    DllStructSetData($float, 1, $value)

    ; Need to make the memory writeable first! You should really restore the page protection afterwards though, but this is to make it work
    $outDw = 1
    DllCall("kernel32.dll", "int", "VirtualProtectEx", "int", $pHandle, "ptr", $Address, "int", 4, "dword", 0x40, "dword*", $outDw)

    Local $ret = DllCall("kernel32.dll", "int", "WriteProcessMemory", "int", $pHandle, "int", $Address, "ptr", DllStructGetPtr($float), "int", 4, "int", 0)
    If IsArray($ret) Then
        If $ret[0] <> 0 Then
            Return True
        Else
            SetError(-2)
            Return False
        EndIf
    Else
        SetError(-1)
        Return False
    EndIf
EndFunc

Func _ReadFloat($pHandle, $Address)
    Local $floatReturn = 0
    Local $float = DllStructCreate("float")
    Local $ret = DllCall("kernel32.dll", "int", "ReadProcessMemory", "int", $pHandle, "int", $Address, "ptr", DllStructGetPtr($float), "int", 4, "int", 0)
    If IsArray($ret) Then
        If $ret[0] = 1 Then
            $floatReturn = DllStructGetData($float, 1)
        Else
            SetError(-1)
        EndIf
    Else
        SetError(-2)
    EndIf
  
    Return $floatReturn
EndFunc


;------------------------------------------------------------------------------
;    Script code                                                                  -
;------------------------------------------------------------------------------

$address = 0xD37430

$pHandle = _OpenProcess(WinGetHandle("SRO_Client"))

MsgBox(64, "TEST BYTE PTR DS:[ESI-11C],1", "Current distance in AutoSelect is: " & _ReadFloat($pHandle, $address))
MsgBox(64, "ksro D37430", _WriteFloat($pHandle, $address, [COLOR="Red"]2000000[/COLOR]))
MsgBox(64, "ksro D37430", "AutoSelect distance now: " & _ReadFloat($pHandle, $address))

_CloseHandle($pHandle)

2000000 - AutoSelect Distance
jooni222 is offline  
Thanks
10 Users
Old 09/03/2009, 17:18   #2
 
elite*gold: 0
Join Date: Apr 2007
Posts: 33
Received Thanks: 0
In which program i can make autosecelt distance ? in which program i should paste it ?


W jakim programie mam ten skrypt wkleic ??
Koteczek is offline  
Old 09/03/2009, 17:58   #3
 
elite*gold: 0
Join Date: Sep 2007
Posts: 23
Received Thanks: 12
Quote:
Originally Posted by Koteczek View Post
In which program i can make autosecelt distance ? in which program i should paste it ?


W jakim programie mam ten skrypt wkleic ??
AutoIt:
jooni222 is offline  
Old 09/03/2009, 21:52   #4
 
elite*gold: 0
Join Date: Apr 2007
Posts: 33
Received Thanks: 0
powiedz mi czy to trzeba wrzucic do folderu z silkiem czy byle gdzie?
Koteczek is offline  
Old 09/03/2009, 22:35   #5
 
elite*gold: 0
Join Date: Sep 2007
Posts: 23
Received Thanks: 12
Omg, just install AutoIt rmb>new>AutoIt Script and there paste script. Next 2x click on script when silkroad is open. Before you must have AutoSelect in media.pk2
jooni222 is offline  
Old 09/04/2009, 01:55   #6
 
elite*gold: 0
Join Date: Dec 2007
Posts: 20
Received Thanks: 8
I am not quite to understand the way you say in making multiclient. Would you tell more detail about it? I am kind of idiot about finding address in Hex editor or Stripper. Anyway, thanks a lot for your help.Just curious question, it's simple as the way you show us, why people not only have all kind of hacking things but also an expert in programming know nothing about this or just want to keep it for themself?
Last84 is offline  
Thanks
1 User
Old 09/04/2009, 02:22   #7
 
elite*gold: 0
Join Date: Dec 2007
Posts: 32
Received Thanks: 6
THANK U MAN THE AUTOSELECT DISTANCE CHANGER WORKS VERY PERFECT. THX THX
kosomak2 is offline  
Old 09/04/2009, 18:47   #8
 
elite*gold: 0
Join Date: Sep 2007
Posts: 23
Received Thanks: 12
@Last84
I can't teach you, becouse you must have basic knowledge about reverse engineering. Maybe read a book about it.
jooni222 is offline  
Old 09/06/2009, 04:51   #9
 
elite*gold: 0
Join Date: Dec 2007
Posts: 32
Received Thanks: 6
hey buddy, i was wondering if this script for distance changer ill work also if an update occured? and what if it ill not work. how can i modify it to be compitable with the new client, i ill be greatful if u told me how.
kosomak2 is offline  
Old 09/09/2009, 16:04   #10
 
elite*gold: 0
Join Date: Sep 2007
Posts: 23
Received Thanks: 12
Update:
09-09-2009
jooni222 is offline  
Old 09/10/2009, 04:06   #11
 
elite*gold: 0
Join Date: Dec 2007
Posts: 20
Received Thanks: 8
Quote:
Originally Posted by jooni222 View Post
Update:
09-09-2009
Thanks again, save me a lot. Would you tell us where to find the new address to be replaced in case client will be change in future? It would be very nice.
Last84 is offline  
Old 09/15/2009, 01:17   #12
 
hadyz3's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 420
Received Thanks: 52
Quote:
Originally Posted by jooni222 View Post
Omg, just install AutoIt rmb>new>AutoIt Script and there paste script. Next 2x click on script when silkroad is open. Before you must have AutoSelect in media.pk2
and where i can get autoselect?
hadyz3 is offline  
Old 09/16/2009, 03:47   #13
 
hadyz3's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 420
Received Thanks: 52
i got it btw u can make the range 999 not only 200
hadyz3 is offline  
Old 09/16/2009, 09:00   #14
 
elite*gold: 0
Join Date: May 2009
Posts: 569
Received Thanks: 18
if want to not be 200

get the auto select adress into the code list of the post and with cheat engine search it and edit for that you want ....
David P. is offline  
Old 09/16/2009, 11:27   #15
 
elite*gold: 0
Join Date: Nov 2008
Posts: 27
Received Thanks: 5
Quote:
To work mc you must 'Run as Administartor'



when click ( start ) its go to crash

so its not work
ops1988 is offline  
Reply


Similar Threads Similar Threads
KSRO Autoselect distance off local call ??
03/11/2010 - SRO Hacks, Bots, Cheats & Exploits - 1 Replies
old ksro client D37430= 70.00000 , nice working code and Local call from 0076E0A5 old ksro client download: sro_client.rar 0098FE40 /$ 83EC 20 SUB ESP,20 --------------> Local call from0076E0A5 0098FE43 |. A1 44C1E700 MOV EAX,DWORD PTR DS: 0098FE48 D905 3074D300 FLD DWORD PTR DS:D37430] 0098FE4E |. 8B88 90000000 MOV ECX,DWORD PTR DS: 0098FE54 |. D91C24 FSTP DWORD PTR SS: 0098FE57 |. 8B90 94000000 MOV EDX,DWORD PTR DS: 0098FE5D |. 8B80 98000000 MOV...
[KSRO]Need help about Distance [PLEASE]
10/11/2009 - Silkroad Online - 2 Replies
Hi guys , I have a problem with Distance changer.I have unpacked Client , i open ksro with edx Lite , and i make actionwnddata.txt edit. But auto select selects only too near mobs.When i open changer it says 5.2345263245236346 -017e has been changed to 5000 but nothing changes. SO Please help me :o
[KSRO] distance changer programe !
09/26/2009 - SRO Hacks, Bots, Cheats & Exploits - 9 Replies
hi all distance changer ! this version from ppl Download 1000 ] RapidShare Webhosting + Webspace Download 2500 + 5000 ] RapidShare: 1-CLICK Web hosting - Easy Filehosting
Request autoselect distance changer for KSRO
09/17/2009 - Silkroad Online - 0 Replies
now edx loader works but we still need a new autoselect distance coz it is now 70 anyone can make it?
HOw to change distance of altoselect in ksro [Guide]
03/22/2009 - SRO Guides & Templates - 1 Replies
First patch media.pk2 ..... http://www.silkroadmax.com/forum/guidehow-to-apply -auto-select-button-with-video-expression-t20195.0 .html 2.Second get download (madmac1122) multiclient: KSRO Multiclient by Madmac (Up-to-date) 3.Then you will can Analyze client and can change the area: AutoSelect FINAL Version click thanks if i help and to madmac1122 and to DeSwa :D



All times are GMT +2. The time now is 09:20.


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.