NeverWinter new Stamina Hack

05/22/2013 07:59 forlove#1
As title says New NeverWinter Stamina Hack dodge teleport slide without losing any stamina just click thx if this work with you

right click run as admin log in NW enjoy your unlimited stamina

have fun especially pvp :D:D:D

Prove
[Only registered and activated users can see links. Click Here To Register...]

Download link
[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]
05/22/2013 14:03 "PhiL#2
Ist noch nichtmal sein Programm und er will dafür thanks haben.. Hier mal den Code für die die ihm nicht trauen, whatever...
Code:
#include <Windows.h>
#include <iostream>
#include <tlhelp32.h>
#include <tchar.h>

using namespace std;

HWND windowhandle=0;

DWORD modulebase=0;
HANDLE hopen=0;

HANDLE prozessauf();
DWORD GetModuleBase(LPSTR lpModuleName);
DWORD getadr(DWORD address, HANDLE hopen);
void setadr(DWORD address, int value, HANDLE hopen);


int main()

{   
    SetConsoleTitle("Neverwinter - Mageteleporthack - by Dragonef22"); 
    cout<<"Updated for 21.05.2013";
    
    while(true)
    {
    hopen=prozessauf();
    modulebase=GetModuleBase("GameClient.exe");
    DWORD adress=0;
    DWORD teleportadress=0;
    adress=adress+modulebase+0x024F50B0;     // GameClient.exe+startoffset
    adress=getadr(adress,hopen);
    adress=adress+0x244; // Offset Nr. 0
    adress=getadr(adress,hopen);
    adress=adress+0x6f8; // Offset Nr. 1
    adress=getadr(adress,hopen);
    adress=adress+0x18; // Offset Nr. 2
    adress=getadr(adress,hopen);
    adress=adress+0x9c; // Offset Nr. 3
    adress=getadr(adress,hopen);
     
    teleportadress=adress+0x244; // Teleportresource

    // Full Teleportresource = 1120403456 - set it
    setadr(teleportadress,1120403456,hopen);
    Sleep(1);
    }
}

    
HANDLE prozessauf() 

{
    HWND hwar3=::FindWindow(NULL,"Neverwinter");
    DWORD PID, TID;
    TID = ::GetWindowThreadProcessId (hwar3, &PID);
    HANDLE hopen=OpenProcess( PROCESS_ALL_ACCESS|PROCESS_TERMINATE |PROCESS_VM_READ|
                  PROCESS_VM_WRITE,FALSE,PID);
    return hopen;
}


DWORD GetModuleBase(LPSTR lpModuleName)
{
    DWORD dwProcessId,TID;
    HWND hwar3=::FindWindow(NULL,"Neverwinter");
    TID = ::GetWindowThreadProcessId (hwar3, &dwProcessId);
     
   MODULEENTRY32 lpModuleEntry = {0};
   HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwProcessId);
 
   if(!hSnapShot)
      return 0;
   lpModuleEntry.dwSize = sizeof(lpModuleEntry);
   BOOL bModule = Module32First( hSnapShot, &lpModuleEntry );
   while(bModule)
   {
      if(!strcmp( lpModuleEntry.szModule, lpModuleName ) )
      {
         CloseHandle(hSnapShot);
         return (DWORD)lpModuleEntry.modBaseAddr;
      }
      bModule = Module32Next( hSnapShot, &lpModuleEntry );
   }
   CloseHandle( hSnapShot );
   return 0;
}

// Value eines Adresswerts auslesen

DWORD getadr(DWORD address, HANDLE hopen)
{
    int value =0;
    ReadProcessMemory(hopen,(void*)address,&value,sizeof(value),0);
    return value;
}    
    
void setadr(DWORD address, int value, HANDLE hopen)
{
    WriteProcessMemory(hopen, (LPVOID*)(DWORD) (address), &value, sizeof(value), NULL);
    return;
}
Wird eh bald gefixxt, ich denk mal 2 Tage max..
05/22/2013 15:52 Gmaro#3
range = win pvp
05/22/2013 20:58 forlove#4
Quote:
Originally Posted by "PhiL View Post
Ist noch nichtmal sein Programm und er will dafür thanks haben.. Hier mal den Code für die die ihm nicht trauen, whatever...
Code:
#include <Windows.h>
#include <iostream>
#include <tlhelp32.h>
#include <tchar.h>

using namespace std;

HWND windowhandle=0;

DWORD modulebase=0;
HANDLE hopen=0;

HANDLE prozessauf();
DWORD GetModuleBase(LPSTR lpModuleName);
DWORD getadr(DWORD address, HANDLE hopen);
void setadr(DWORD address, int value, HANDLE hopen);


int main()

{   
    SetConsoleTitle("Neverwinter - Mageteleporthack - by Dragonef22"); 
    cout<<"Updated for 21.05.2013";
    
    while(true)
    {
    hopen=prozessauf();
    modulebase=GetModuleBase("GameClient.exe");
    DWORD adress=0;
    DWORD teleportadress=0;
    adress=adress+modulebase+0x024F50B0;     // GameClient.exe+startoffset
    adress=getadr(adress,hopen);
    adress=adress+0x244; // Offset Nr. 0
    adress=getadr(adress,hopen);
    adress=adress+0x6f8; // Offset Nr. 1
    adress=getadr(adress,hopen);
    adress=adress+0x18; // Offset Nr. 2
    adress=getadr(adress,hopen);
    adress=adress+0x9c; // Offset Nr. 3
    adress=getadr(adress,hopen);
     
    teleportadress=adress+0x244; // Teleportresource

    // Full Teleportresource = 1120403456 - set it
    setadr(teleportadress,1120403456,hopen);
    Sleep(1);
    }
}

    
HANDLE prozessauf() 

{
    HWND hwar3=::FindWindow(NULL,"Neverwinter");
    DWORD PID, TID;
    TID = ::GetWindowThreadProcessId (hwar3, &PID);
    HANDLE hopen=OpenProcess( PROCESS_ALL_ACCESS|PROCESS_TERMINATE |PROCESS_VM_READ|
                  PROCESS_VM_WRITE,FALSE,PID);
    return hopen;
}


DWORD GetModuleBase(LPSTR lpModuleName)
{
    DWORD dwProcessId,TID;
    HWND hwar3=::FindWindow(NULL,"Neverwinter");
    TID = ::GetWindowThreadProcessId (hwar3, &dwProcessId);
     
   MODULEENTRY32 lpModuleEntry = {0};
   HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwProcessId);
 
   if(!hSnapShot)
      return 0;
   lpModuleEntry.dwSize = sizeof(lpModuleEntry);
   BOOL bModule = Module32First( hSnapShot, &lpModuleEntry );
   while(bModule)
   {
      if(!strcmp( lpModuleEntry.szModule, lpModuleName ) )
      {
         CloseHandle(hSnapShot);
         return (DWORD)lpModuleEntry.modBaseAddr;
      }
      bModule = Module32Next( hSnapShot, &lpModuleEntry );
   }
   CloseHandle( hSnapShot );
   return 0;
}

// Value eines Adresswerts auslesen

DWORD getadr(DWORD address, HANDLE hopen)
{
    int value =0;
    ReadProcessMemory(hopen,(void*)address,&value,sizeof(value),0);
    return value;
}    
    
void setadr(DWORD address, int value, HANDLE hopen)
{
    WriteProcessMemory(hopen, (LPVOID*)(DWORD) (address), &value, sizeof(value), NULL);
    return;
}
Wird eh bald gefixxt, ich denk mal 2 Tage max..
I know its not my code I didn't say it's mine I just make it easy to other who doesn't know c++ if you trust me or not that's your problem I know i don't harm anyone its not a fucking virus or anything just simple exe program :D
05/23/2013 01:00 The Reloaded Robreload#5
virus
05/23/2013 08:57 forlove#6
Quote:
Originally Posted by TheReloadedRobreload View Post
virus
Well if you think it's virus don't download it :D
05/23/2013 18:02 The Reloaded Robreload#7
downloaded it already, but now i can say it includes a virus
05/23/2013 18:23 alloin#8
doesn't seem to work, i also tried the sourcecode, did they patch this ?
05/23/2013 18:28 Pitbull1982#9
wurde gerade gefixt
05/23/2013 22:38 forlove#10
Its work I just test it you need to wait sometimes its take 2-3 min to work and it's not a virus when I create this I use c++ win32 application some antivirus catch win32 as a trojan but it's not same like wpe pro why you ppl think I wanna harm you I dont want to harm anyone I like this forum and I respect everyone
05/24/2013 02:13 Dr.Dr.SheldonLeeCooper#11
doesnt work
05/24/2013 03:41 IceTF#12
It did indeed work for me when I used it.
Scanned it prior, no viruses. Just saying. It may be patched though, because I haven't tried it tonight.
05/24/2013 14:46 alloin#13
Anyone confirm this is not working anymore please ?
They patched this, anyone who says it works is a liar or a troll :p
05/24/2013 15:51 forlove#14
Patched
05/25/2013 01:19 alex4ep#15
just change the offsets...

0x022EBB94
0x104
0x6F8
0x18
0x9C
0x244

Edit: the 3rd time it behaves a bit strange... its like he rolls or strafes just the half way...