[Need-Help]

03/07/2015 16:15 ~Instinctive~#1
I Need Another Help :)

The Normal Value OF Recall1 or 2 Etc... How i can Write It?

Code:
Case $...
If GuiCtrlRead($...) = 1 Then
_MemoryWrite(Address,$Open,"Hacked","Type")
Else
_MemoryWrite(Address,$Open,"Here What It will be For Recall1?","Type")
EndIF
03/07/2015 17:06 alpines#2
$GUI_EVENT_CLOSE is not defined and the Hotkey is 4 not {4}".
03/07/2015 17:09 Grashopper.#3
1. You have no GUI for this While
2. Why u GUICtrlRead with no GUI?
3. What is this???: (TopMost) = 1) ? 1 : 0)

Do u mean that?
Code:
#RequireAdmin
HotKeySet("4","TopMost")
$Input = InputBox("", "")

While 1
	Sleep(50)
WEnd

Func TopMost()
WinSetOnTop($Input, "", 0)
EndFunc
03/07/2015 17:27 ~Instinctive~#4
Top Most Mean Always On Top (Screen).

Quote:
Originally Posted by alpines View Post
$GUI_EVENT_CLOSE is not defined and the Hotkey is 4 not {4}".
So Alpines What I Must Replace At The Soruce?
03/07/2015 17:46 alpines#5
Grashopper., ( ) ? ... : ... is a ternary operator which is designed to be short-if-statements.
Instead of writing whole statements like
Code:
$iRandom = Random(0, 1, 1)

If $iRandom Then
   $iRandom = ....
Else
   $iRandom = ....
EndIf

; --->

$iRandom = (Random(0, 1, 1) ? ... : ...)
03/07/2015 18:04 ~Instinctive~#6
But Where i will Write The HotKey?

Edit: If I Added
Code:
Func ....()
 _memorywrite(Address,$..,"Hacked Value","Type")
			Else
 _memorywrite(Address,$..,"Normal Value","Type")
EndFunc
It Give Me Error For Else :/

I Will Never Make An Function With HotKey :/
03/08/2015 01:38 .simple'#7
1. Better dont set Points as Variables, i dont know if this works... just dont

2. Why do you put a else there?
Else can only be used with a if-sentence
[Only registered and activated users can see links. Click Here To Register...]
03/08/2015 23:35 Logtetsch#8
Are you looking for something like this?

Code:
HotKeySet("4","MemWrite")
Global $bSwitchMemWrite = false

Func MemWrite()
     If $bSwitchMemWrite Then
          _memorywrite(Address,$..,"Hacked Value","Type")
          $bSwitchMemWrite = false
     Else
          _memorywrite(Address,$..,"Hacked Value","Type")
          $bSwitchMemWrite = true
     EndIf
EndFunc
03/09/2015 22:31 ~Instinctive~#9
Thanks Alot Logtetsch ;)
You Gived Me The Idea how i can Make It.
03/15/2015 14:57 [Beatrice]#10
HotkeySet("{INSERT}","memory")
Func memory()
If Readprocessmemory(0xaddy) = value normal Then
Writeprocessmemory(0xaddy changed value)
Else
Writeprocessmemory(0xaddy normalvalue)
EndIf
EndFunc

This should help you ;p
03/20/2015 16:07 #™O.TrY.O™##11
#Solved