PDA

View Full Version : [tut] esp names/ map gps/ invisible/ STW/ 0 delay/ headshotz



landerman01
05-05-2008, 12:42 PM
first learn NOPPING IN VB08!!!


for esp names:
in the on button
NOP(&Hadress, 118)
for the off button
NOP(&Hadress, 117)


for shot thru the walls (3 bytes):
on button:
NOP(&Hadress, &H90)
NOP(&Hadress + 1, &H90)
NOP(&H6DC438 + 2, &H90)

example (not the right addies)
NOP(&H6DC436, &H90)
NOP(&H6DC437, &H90)
NOP(&H6DC438, &H90)

for map gps:

on button:
NOP(&Hadress, 118)
off button:
NOP(&Hadress, 117)

INVISIBLE!!
on button:
NOP(&hadress, &h1C)
off button:
NOP (&hadress, &h2C)
yes this is easy XD

0 DELAY SHOOT MEGA FAST!!!!!!!!!!!!!!!!!
on TIMER:
NOP (&hadress, &h90)
NOP (&hadress + 1, &h90)
NOP (&hadress+ 2, &h90)

HEADSHOTZ

i do this so:

add a new module
put this in ur module:
|||||||||||||||||||||||||
Public Function WriteASM(ByVal Address As Long, ByVal ASM As String)
Dim i As Integer
Dim i2 As Integer

i2 = 1
While i < (Len(ASM) / 2)
Call NOP(Address + i, Val("&H" & Mid$(ASM, i2, 2)))
i = i + 1
i2 = i2 + 2
End While
End Function
||||||||||||||||||||||||||||
then i put this in a timer:
||||||||||||||||||||||||||||||||||||
Call WriteASM(&H4A3904, "31C0")
|||||||||||||||||||
you can thank me

ALL THIS WORKS!

Gold stone
05-05-2008, 03:50 PM
Ty For the wallhack, i didn't know how to code it.
and yes i got the right address ;).
ty for it dude.

AlexSleyore
05-05-2008, 07:31 PM
only STW and 0delay is NOPPING the rest is ASM bytes cause NOP means only 0x90.. just to make sure you know your not NOPing all of that... so you dont sound incorrect (yes the function name is wrong....)

zezima
05-05-2008, 10:33 PM
for some reason, the ASM module won't work for me... :(

ganglyman21
05-06-2008, 04:36 AM
ASM hacks don't need timers. Definitely not in C++ can't imagine why they would in VB. If the module doesn't compile tho, I've no idea don't know VB at all.

dutch
05-06-2008, 05:42 AM
ASM hacks don't need timers. Definitely not in C++ can't imagine why they would in VB. If the module doesn't compile tho, I've no idea don't know VB at all.


this is vb2008 selection if something is nopped like esp antikick then use the nop text in vb8 we don't use asm

landerman01
05-06-2008, 10:48 AM
for some reason, the ASM module won't work for me... :(

in this module is a NOP string in ur look how you write nop in ur basic module

landerman01
05-06-2008, 10:55 AM
only STW and 0delay is NOPPING the rest is ASM bytes cause NOP means only 0x90.. just to make sure you know your not NOPing all of that... so you dont sound incorrect (yes the function name is wrong....)

ALL WORKS FOR ME Noob