
Originally Posted by
rey00120
Can any one of you sir post the exact code or addies of unliSP+glass wall please?
with all the hotkey needed please!
i would just like to copy

please sir please!
Here it is:
Copy & Paste this...
You need to use the Microsoft Visual C++ Express Edition as your hacking tool.
As you were there, create new project, (for more help, there are lots of tutorials here to do so, do your best to find it...)
Here's the code:
#include <windows.h>
#include <stdio.h>
#define ADR_PlayerPointer 0x00AD4600
#define ADR_ServerPointer 0x009CE9B8
#define ADR_Stamina1 0x007F2F50
#define ADR_GlassWalls 0x00958B54
DWORD *ingame= (DWORD*) ADR_PlayerPointer;
DWORD *outgame = (DWORD*) ADR_ServerPointer;
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PlayerPointer;
if(dwPlayerPtr != 0)
{
}
}
void GlassWallsOn()
{
if(GetKeyState(VK_NUMPAD1) &1)
{
*(int*)ADR_GlassWalls = 4;
}
}
void GlasWallsOff()
{
if(GetKeyState(VK_NUMPAD2) &1)
{
*(int*)ADR_GlassWalls = 0;
}
}
void Stamina() //UnliSP
{
*(float*)ADR_Stamina1 = 9999999;
*(float*)ADR_Stamina1 = 0;
*(float*)ADR_Stamina1 = 0;
*(float*)ADR_Stamina1 = 0;
*(float*)ADR_Stamina1 = 9999999;
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
PlayerHacks();
GlassWallsOn();
GlassWallsOff();
Stamina();
}
if(*outgame)
{
}
Sleep(200); //prevent for overloading the cpu
}
}
//----------------------------------------------------------
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
MessageBoxA(NULL, "Coded By: Something Else", "Message Box Title", MB_OK);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
}
return TRUE;
}
//Numpad1 is your hotkey for glasswall on
//Numpad2 is your hotkey for glasswall off
//Unlis sp works on second respawn...