Page 2 of 2 FirstFirst 12
Results 16 to 22 of 22
  1. #16
    R34Lw0rd's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    don't work on shadow pinnacle

  2. #17
    reppin's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    1,070
    Reputation
    17
    Thanks
    5,367
    My Mood
    Dead
    New Offset: 0x00B12600
    Like what I do? Well feel free to donate to show your love.


  3. #18
    Arthuis's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    California
    Posts
    35
    Reputation
    10
    Thanks
    5
    My Mood
    Devilish
    Reppin hooking it up, :3

  4. #19
    xkekkox's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Script have a bug, sometime your max heal will be over 1 million ( in the script)
    this happen in certain maps, then i fixed it ( in those maps don't spam q and use all flask)
    this is cose, nippi see if you aggre:


     
    Code:
    global Version := "1.0"
    global IniFile := "NippysAutoHealth.ini" ;Save Filename
    	
    global DHealthPointer := "0x00B8BBF4" ; Defailt address.
    global DCurrentHeathOffset := "0x48+0x208+0x8+0xB4"  ;Water bite offset
    global DMaxHealthOffset := "0x48+0x208+0x8+0xB8"   ;Lava Bite offset
    global DHealthSliderPrecent := 65
    
    IniRead, ConfigVersion, %A_ScriptDir%/%IniFile%, Config Version, Version
    If (ConfigVersion <> Version) 
     FileDelete, %A_ScriptDir%/%IniFile%
    
    IfNotExist, %A_ScriptDir%/%IniFile%
    	{
    		;Default Settings.
    		IniWrite, %Version%, %A_ScriptDir%/%IniFile%, Config Version, Version
    		
    		IniWrite, %DHealthPointer%, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, HealthPointer
    		IniWrite, %DCurrentHeathOffset%, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, CurrentHeathOffset
    		IniWrite, %DMaxHealthOffset%, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, MaxHealthOffset
    		IniWrite, %DHealthSliderPrecent%, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, HealthSliderPrecent
    
    	}
    	  global HealthPointer
        global CurrentHeathOffset
        global MaxHealthOffset
        global HealthSliderPrecent
    		IniRead, HealthPointer, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, HealthPointer
    		IniRead, CurrentHeathOffset, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, CurrentHeathOffset
    		IniRead, MaxHealthOffset, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, MaxHealthOffset
    		IniRead, HealthSliderPrecent, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, HealthSliderPrecent
    
    
    Toggle := 1
    SetTimer, AutoPot, 150
    
    Gui, Main:Add, Text, x12 y9 w70 h20 , Health Pointer:
    Gui, Main:Add, Edit, x83 y9 w110 h16 vHealthPointer, %HealthPointer%
    Gui, Main:Add, Text, x12 y39 w100 h20 +Right, Current Helath:
    Gui, Main:Add, Text, x122 y39 w100 h20 vCurrentHealthText, Unknown
    Gui, Main:Add, Text, x12 y59 w100 h20 +Right, Current Max Health:
    Gui, Main:Add, Text, x122 y59 w100 h20 vMaxHealthText, Unknown
    Gui, Main:Add, Text, x12 y79 w210 h20 , What Health Percent to use potion at?
    Gui, Main:Add, Slider, x2 y99 w190 h30 Range1-100 Page5 gSliderChange vHealthSliderPrecent, %HealthSliderPrecent%
    Gui, Main:Add, Text, x192 y102 w30 h20 vLabelPrecent, %HealthSliderPrecent%`%
    Gui, Main:Add, Button, x2 y129 w110 h20 gSaveSettings, Save Settings
    Gui, Main:Add, Button, x112 y129 w110 h20 gBNTReload , Reload
    Gui, Main:Add, Button, x2 y149 w220 h20 gExitUI, Save and Exit
    
    Gui, Main:Show, x296 y362 h175 w228, Nippy's Autopot
    Return
    
    SliderChange:
    ;Gui, Submit, nohide
    LabelPrecent := HealthSliderPrecent
    GuiControl,, LabelPrecent, %LabelPrecent%`%
    SaveSettings()
    return
    
    SaveSettings:
    	SaveSettings()
    Return
    
    BNTReload:
    	SaveSettings()
    	Reload
    Return
    
    ExitUI:
    GuiClose:
    SaveSettings()
    ExitApp
    Return
    
    
    ^q::
    	Toggle := !Toggle
    		If toggle = 0
    		{
    			SoundBeep
    			sleep 100
    			SoundBeep
          SetTimer, AutoPot, Off
    		}
    		If toggle = 1
    		{
    			SoundBeep
         SetTimer, AutoPot, 150 ;120000 = 120 seconds.
    		}
    return
    
    AutoPot:
    	If WinActive("Trove")
    	 {
      
    	WinGet, pidn, PID, A
    	pID := pidn
    	WinGet, hwnds, ID, A
    	Handle := hwnds
    		
    	Base := getProcessBaseAddress(Handle)
      CurrentHealthAddress := GetAddress(pID, Base, HealthPointer, CurrentHeathOffset)
    	MaxHealthAddress := GetAddress(pID, Base, HealthPointer, MaxHealthOffset)
    		
    	CurrentHealth := ReadMemory(pID, CurrentHealthAddress)
    	CurrentMaxHealth := ReadMemory(pID, MaxHealthAddress)
    
    	If (CurrentHealth = 0)
        Return
        
    	GuiControl,Main: , CurrentHealthText, %CurrentHealth%
    	GuiControl,Main: , MaxHealthText, %CurrentMaxHealth%
      SetFormat Float, 0
    
      PotBy := (CurrentMaxHealth / 100) * HealthSliderPrecent
      	If (CurrentHealth < PotBy)
      	{
    	sleep 1
    
    		If (CurrentMaxHealth < 200000)
    		{
      		Send q
      		sleep 500
    		}
    
         	}
    }
    Return
    
    
    getProcessBaseAddress(Handle)
    	{
    		Return DllCall( A_PtrSize = 4
    		? "GetWindowLong"
    : "GetWindowLongPtr"
    	        , "Ptr", Handle
    	        , "Int", -6
    	        , "Int64")
    	}
    
    GetAddress(PID, Base, Address, Offset)	{
    		pointerBase := base + Address
    		y := ReadMemory(PID, pointerBase)	
    		OffsetSplit := StrSplit(Offset, "+")
    		OffsetCount := OffsetSplit.MaxIndex()
    	  Loop, %OffsetCount%
    		{
    			if (a_index = OffsetCount) {
    			Address := (y + OffsetSplit[a_index])
    	  	} Else
    			if(a_index = 1) {
    			y := ReadMemory(PID, y + OffsetSplit[a_index])
    	  	} Else {
    			y := ReadMemory(PID, y + OffsetSplit[a_index])
    	 		 }
    	 		 
    	  }
    Return Address
    }
    
    ReadMemory(pid, MADDRESS)	{
    		VarSetCapacity(MVALUE,4,0)
    		ProcessHandle := DllCall("OpenProcess", "Int", 24, "Char", 0, "UInt", pid, "UInt")
    		DllCall("ReadProcessMemory", "UInt", ProcessHandle, "Ptr", MADDRESS, "Ptr", &MVALUE, "Uint",4)
    		Loop 4
    				result += *(&MVALUE + A_Index-1) << 8*(A_Index-1)
    		Return, result
    	} 
    	
    SaveSettings()
    { 
    	  Gui, Main:Submit, nohide
        IniWrite, %HealthPointer%, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, HealthPointer
    		IniWrite, %CurrentHeathOffset%, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, CurrentHeathOffset
    		IniWrite, %MaxHealthOffset%, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, MaxHealthOffset
    		IniWrite, %HealthSliderPrecent%, %A_ScriptDir%/%IniFile%, Nippys AutoHealth, HealthSliderPrecent
    	}
    Last edited by xkekkox; 10-23-2015 at 08:09 AM.

  5. #20
    melekpek's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Posts
    153
    Reputation
    10
    Thanks
    4
    My Mood
    Bored
    sometime it doesnt work
    [img]https://www.danasof*****m/sig/427850.jpg[/img]

  6. #21
    R34Lw0rd's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    need new pointer. thx

  7. #22
    quickkilla's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    My Mood
    Fine
    Quote Originally Posted by R34Lw0rd View Post
    need new pointer. thx
    plz and ty!

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Not used Cod4 key.
    By XxxMattstaxxX in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 8
    Last Post: 07-02-2009, 02:39 AM
  2. umm.. hack tool detected when im not using hacks
    By -ParallaX in forum WarRock - International Hacks
    Replies: 6
    Last Post: 04-24-2009, 02:14 AM
  3. Do NOT use hacks from Dec 22nd
    By darko5555 in forum Combat Arms Hacks & Cheats
    Replies: 16
    Last Post: 12-23-2008, 01:32 PM
  4. Do not use the pub of another site
    By Hancock in forum Combat Arms Hacks & Cheats
    Replies: 10
    Last Post: 09-15-2008, 04:33 PM
  5. Do not use tals bypass its a virus=P TUT on how to fix
    By qdnp1 in forum Combat Arms Hacks & Cheats
    Replies: 12
    Last Post: 08-30-2008, 09:07 PM