Salve ospite, se leggi questo messaggio vuol dire che non sei registrato, cosa aspetti ? Premi qui per registrarti La registrazione è completamente gratuita e ti permetterà di usufruire di tutte le funzionalità del nostro forum. Buona navigazione.


Vendo, Compro, Scambio NosTale! Riapre il Black Market, concludi i tuoi scambi NosTale gratuitamente! Più info  -   Accedi alla sezione
Download file Server : File Retro Server NosTale
Visita la nuova sezione di BorderGame dedicata a Blade & Soul! Sezione Blade and Soul

 
Valutazione discussione:
  • 2 voti - 1.5 media
  • 1
  • 2
  • 3
  • 4
  • 5
Aiuto pointer autoit!!!
29-12-2011 08:40 PM
Messaggio: #21
RE: Aiuto pointer autoit!!!
~Shacker
Elite Coder
Utente Saggio
Utente Storico

Hackig is not a crime

Messaggi : 520

Registrato dal : Apr 2011

Reputazione : 85

Stato : Offline


Premi :



(29-12-2011 05:58 PM)Lawliet Ha scritto:  <.<
Includi la libreria pointer..

#include <Pointer.au3>

XD come la fai semplice.. è da un giorno che provo con l'aiuto di gafra
İmage
Torna al primo messaggio
Email WWW Cerca Rispondi
29-12-2011 11:41 PM
Messaggio: #22
RE: Aiuto pointer autoit!!!
Lawliet
Bannati
Utente Saggio
Utente Storico

Saccente Mode == ONLINE

Messaggi : 908

Registrato dal : Dec 2011


Stato : Offline


Premi :



E dopo?
Se te hai libreria ma non la includi nel progetto non fai molto ..
Per il resto non ho progetto e non posso aiutarti.

Buona fortuna.
Torna al primo messaggio
Email WWW Cerca Rispondi
30-12-2011 12:19 AM
Messaggio: #23
RE: Aiuto pointer autoit!!!
~Shacker
Elite Coder
Utente Saggio
Utente Storico

Hackig is not a crime

Messaggi : 520

Registrato dal : Apr 2011

Reputazione : 85

Stato : Offline


Premi :



(29-12-2011 11:41 PM)Lawliet Ha scritto:  E dopo?
Se te hai libreria ma non la includi nel progetto non fai molto ..
Per il resto non ho progetto e non posso aiutarti.

Buona fortuna.

Se vuoi posso darti il progetto.. cmq grazie per la risposta ti meriti +1 Smile
Edit:---------------
ecco cosa ho scritto ma come al solito non va...
Codice:
#include <MemoryConstants.au3>
#include <NomadMemory.au3>
SetPrivilege("SeDebugPrivilege", 1)
HotKeySet('{ESC}', '_TerminateLoop')

$pid = ProcessExists("Tutorial.exe")

Global $fLoop = True
Global $Offset1[2]
$Offset1[0] = 0
$Offset1[1] = Dec("0")

$StaticOffset = Dec("057c370")

$openmem = _MemoryOpen($pid)
$baseADDR = _MemoryGetBaseAddress($openmem, 1)
$finalADDR = "0x" & Hex($baseADDR + $StaticOffset)
While $fLoop
$Value = _MemoryPointerRead($finalADDR, $openmem, $Offset1)
ToolTip($Value,0,0)
WEnd

Func _TerminateLoop()
    $fLoop = False
EndFunc
İmage
(Questo messaggio è stato modificato l'ultima volta il: 30-12-2011 12:46 AM da ~Shacker.)
Torna al primo messaggio
Email WWW Cerca Rispondi
30-12-2011 07:28 PM
Messaggio: #24
RE: Aiuto pointer autoit!!!
~Shacker
Elite Coder
Utente Saggio
Utente Storico

Hackig is not a crime

Messaggi : 520

Registrato dal : Apr 2011

Reputazione : 85

Stato : Offline


Premi :



(29-12-2011 05:23 PM)Narutomega96 Ha scritto:  
Codice:
#RequireAdmin

Global $Offset[3] = [0x0, 0x18,0x9C8]

$Process = _MemoryOpen(WinGetProcess("NosTale"))
While 1
$a =_MemoryPointerRead(0x007CF224, $Process, $Offset)
ToolTip($a[1],0,0)
sleep(10)
WEnd
;--------------------- MODULO ----------------------------

Func _MemoryPointerWrite ($iv_Address, $ah_Handle, $av_Offset, $v_Data, $sv_Type = 'dword')

    If IsArray($av_Offset) Then
        If IsArray($ah_Handle) Then
            Local $iv_PointerCount = UBound($av_Offset) - 1
        Else
            SetError(2)
            Return 0
        EndIf
    Else
        SetError(1)
        Return 0
    EndIf

    Local $iv_StructData, $i
    Local $v_Buffer = DllStructCreate('dword')

    For $i = 0 to $iv_PointerCount
        If $i = $iv_PointerCount Then
            $v_Buffer = DllStructCreate($sv_Type)
            If @Error Then
                SetError(@Error + 3)
                Return 0
            EndIf

            DllStructSetData($v_Buffer, 1, $v_Data)
            If @Error Then
                SetError(8)
                Return 0
            EndIf

            $iv_Address = '0x' & hex($iv_StructData + $av_Offset[$i])
            DllCall($ah_Handle[0], 'int', 'WriteProcessMemory', 'int', $ah_Handle[1], 'int', $iv_Address, 'ptr', DllStructGetPtr($v_Buffer), 'int', DllStructGetSize($v_Buffer), 'int', '')
            If @Error Then
                SetError(9)
                Return 0
            Else
                Return $iv_Address
            EndIf
        ElseIf $i = 0 Then
            DllCall($ah_Handle[0], 'int', 'ReadProcessMemory', 'int', $ah_Handle[1], 'int', $iv_Address, 'ptr', DllStructGetPtr($v_Buffer), 'int', DllStructGetSize($v_Buffer), 'int', '')
            If @Error Then
                SetError(3)
                Return 0
            EndIf

            $iv_StructData = DllStructGetData($v_Buffer, 1)

        Else
            $iv_Address = '0x' & hex($iv_StructData + $av_Offset[$i])
            DllCall($ah_Handle[0], 'int', 'ReadProcessMemory', 'int', $ah_Handle[1], 'int', $iv_Address, 'ptr', DllStructGetPtr($v_Buffer), 'int', DllStructGetSize($v_Buffer), 'int', '')
            If @Error Then
                SetError(3)
                Return 0
            EndIf

            $iv_StructData = DllStructGetData($v_Buffer, 1)

        EndIf
    Next

EndFunc

Func _MemoryPointerRead($iv_Address, $ah_Handle, $av_Offset, $sv_Type = 'dword')

    If IsArray($av_Offset) Then
        If IsArray($ah_Handle) Then
            Local $iv_PointerCount = UBound($av_Offset) - 1
        Else
            SetError(2)
            Return 0
        EndIf
    Else
        SetError(1)
        Return 0
    EndIf

    Local $iv_Data[2], $i
    Local $v_Buffer = DllStructCreate('dword')

    For $i = 0 To $iv_PointerCount

        If $i = $iv_PointerCount Then
            $v_Buffer = DllStructCreate($sv_Type)
            If @error Then
                SetError(@error + 2)
                Return 0
            EndIf

            $iv_Address = '0x' & Hex($iv_Data[1] + $av_Offset[$i])
            DllCall($ah_Handle[0], 'int', 'ReadProcessMemory', 'int', $ah_Handle[1], 'int', $iv_Address, 'ptr', DllStructGetPtr($v_Buffer), 'int', DllStructGetSize($v_Buffer), 'int', '')
            If @error Then
                SetError(7)
                Return 0
            EndIf

            $iv_Data[1] = DllStructGetData($v_Buffer, 1)

        ElseIf $i = 0 Then
            DllCall($ah_Handle[0], 'int', 'ReadProcessMemory', 'int', $ah_Handle[1], 'int', $iv_Address, 'ptr', DllStructGetPtr($v_Buffer), 'int', DllStructGetSize($v_Buffer), 'int', '')
            If @error Then
                SetError(7)
                Return 0
            EndIf

            $iv_Data[1] = DllStructGetData($v_Buffer, 1)

        Else
            $iv_Address = '0x' & Hex($iv_Data[1] + $av_Offset[$i])
            DllCall($ah_Handle[0], 'int', 'ReadProcessMemory', 'int', $ah_Handle[1], 'int', $iv_Address, 'ptr', DllStructGetPtr($v_Buffer), 'int', DllStructGetSize($v_Buffer), 'int', '')
            If @error Then
                SetError(7)
                Return 0
            EndIf

            $iv_Data[1] = DllStructGetData($v_Buffer, 1)

        EndIf

    Next

    $iv_Data[0] = $iv_Address

    Return $iv_Data

EndFunc

Func _MemoryOpen($iv_Pid, $iv_DesiredAccess = 0x1F0FFF, $iv_InheritHandle = 1)

    If Not ProcessExists($iv_Pid) Then
        SetError(1)
        Return 0
    EndIf

    Local $ah_Handle[2] = [DllOpen('kernel32.dll')]

    If @Error Then
        SetError(2)
        Return 0
    EndIf

    Local $av_OpenProcess = DllCall($ah_Handle[0], 'int', 'OpenProcess', 'int', $iv_DesiredAccess, 'int', $iv_InheritHandle, 'int', $iv_Pid)

    If @Error Then
        DllClose($ah_Handle[0])
        SetError(3)
        Return 0
    EndIf

    $ah_Handle[1] = $av_OpenProcess[0]

    Return $ah_Handle

EndFunc

Func _MemoryWrite($iv_Address, $ah_Handle, $v_Data, $sv_Type = 'dword')

    If Not IsArray($ah_Handle) Then
        SetError(1)
        Return 0
    EndIf

    Local $v_Buffer = DllStructCreate($sv_Type)

    If @Error Then
        SetError(@Error + 1)
        Return 0
    Else
        DllStructSetData($v_Buffer, 1, $v_Data)
        If @Error Then
            SetError(6)
            Return 0
        EndIf
    EndIf

    DllCall($ah_Handle[0], 'int', 'WriteProcessMemory', 'int', $ah_Handle[1], 'int', $iv_Address, 'ptr', DllStructGetPtr($v_Buffer), 'int', DllStructGetSize($v_Buffer), 'int', '')

    If Not @Error Then
        Return 1
    Else
        SetError(7)
        Return 0
    EndIf

EndFunc

A me così mostra il punteggio Big Grin

è quello che voglio leggere ma a me non me lo legge perchè?
İmage
Torna al primo messaggio
Email WWW Cerca Rispondi
31-12-2011 11:33 AM
Messaggio: #25
RE: Aiuto pointer autoit!!!
Narutomega96
Moderatori
Elite Coder
Rynn
Spammer
Utente Saggio
Utente Storico
Vip

Moderatore

Messaggi : 1,084

Registrato dal : Nov 2010

Reputazione : 213

Stato : Offline


Premi :



Che versione di scite hai?
Torna al primo messaggio
Email Cerca Rispondi
06-01-2012 01:26 AM
Messaggio: #26
RE: Aiuto pointer autoit!!!
~Shacker
Elite Coder
Utente Saggio
Utente Storico

Hackig is not a crime

Messaggi : 520

Registrato dal : Apr 2011

Reputazione : 85

Stato : Offline


Premi :



3.0 se non sbaglio puoi passarmi il download della tua versione? ^^
İmage
Torna al primo messaggio
Email WWW Cerca Rispondi
06-01-2012 02:05 PM
Messaggio: #27
RE: Aiuto pointer autoit!!!
The_Ace
*
Subber
Utente Storico

Apprendista Del Grande Diedarrow13

Messaggi : 357

Registrato dal : Jul 2011

Reputazione : 24

Stato : Offline


Premi :



@[~Shacker] Stai provando a far cambiare il pointer nel tutorial di ce?
İmage
Cit. Diluvio
Spoiler:
Non credo piu all'amore ma neanche lui a me
non provo piu dolore no non fa per me
Non credo piu all'amore ma neanche lui a me
non provo piu dolore no non fa per me
İmage


Torna al primo messaggio
Email WWW Cerca Rispondi
06-01-2012 11:03 PM
Messaggio: #28
RE: Aiuto pointer autoit!!!
~Shacker
Elite Coder
Utente Saggio
Utente Storico

Hackig is not a crime

Messaggi : 520

Registrato dal : Apr 2011

Reputazione : 85

Stato : Offline


Premi :



si si...
İmage
Torna al primo messaggio
Email WWW Cerca Rispondi

PubblicitàLa tua pubblicità qui, clicca per informazioni e per le offerte!

Stanno visualizzando la discussione : 1 Ospite(i)

  • Versione stampabile
  • Invia ad un amico
  • Sottoscrivi questa discussione