Author Topic: How to remove password input from Neverwinter Nights?  (Read 339 times)

Legacy_WhiteTiger

  • Hero Member
  • *****
  • Posts: 889
  • Karma: +0/-0
How to remove password input from Neverwinter Nights?
« on: May 30, 2014, 06:38:38 pm »


               

I'd like to give a installer file to my players to remove password input, because password input is waste of time. We only need to write the login to play neverwinter nights. 


 


virusman makes a system to skip verification steps, anyone knows how it works?



               
               

               
            

Legacy_FunkySwerve

  • Hero Member
  • *****
  • Posts: 2325
  • Karma: +0/-0
How to remove password input from Neverwinter Nights?
« Reply #1 on: May 30, 2014, 09:34:15 pm »


               

Our players have made a variety of programs that do this. I've never looked into it myself, but you can probably figure it out by examing code. Link to the forums here:


http://highergroundp...istive-software


 


Take a look at HG Loader, HG Extender, and possibly ARF2. There are others as well. I think nearly all bypass Gamespy.


 


Funky



               
               

               
            

Baaleos

  • Administrator
  • Hero Member
  • *****
  • Posts: 1916
  • Karma: +0/-0
How to remove password input from Neverwinter Nights?
« Reply #2 on: June 13, 2014, 09:49:38 am »


               

I've done this myself by examining his nwncx plugin for bypassing the master server.

 

 

 



 IntPtr i2 = new IntPtr((uint)m.ProcessHeld.MainWindowHandle + 0x004D4AF7);
                byte[] b = { 0x84, 0xF2, 0x06 };
                m.WriteByteArray(m.ProcessHeld.Handle, i2, b);

You need to find the memory location at 0x004D4AF7  within nwmain.exe


Write 84 F2 06 to that location and voila


 


When the gamespy password prompt appears, you can enter anything you want, and it will skip the master server validation.