|
You last visited: Today at 23:40
Advertisement
[Need-Help]
Discussion on [Need-Help] within the AutoIt forum part of the Coders Den category.
03/07/2015, 16:15
|
#1
|
elite*gold: 10
Join Date: Aug 2014
Posts: 63
Received Thanks: 162
|
[Need-Help]
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
|
#2
|
elite*gold: 60
Join Date: Aug 2009
Posts: 2,256
Received Thanks: 815
|
$GUI_EVENT_CLOSE is not defined and the Hotkey is 4 not {4}".
|
|
|
03/07/2015, 17:09
|
#3
|
Trade Restricted
elite*gold: 1
Join Date: Feb 2015
Posts: 228
Received Thanks: 31
|
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
|
#4
|
elite*gold: 10
Join Date: Aug 2014
Posts: 63
Received Thanks: 162
|
Top Most Mean Always On Top (Screen).
Quote:
Originally Posted by alpines
$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
|
#5
|
elite*gold: 60
Join Date: Aug 2009
Posts: 2,256
Received Thanks: 815
|
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
|
#6
|
elite*gold: 10
Join Date: Aug 2014
Posts: 63
Received Thanks: 162
|
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
|
#7
|
elite*gold: 84
Join Date: Nov 2012
Posts: 5,220
Received Thanks: 138
|
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
|
|
|
03/08/2015, 23:35
|
#8
|
elite*gold: 192
Join Date: May 2009
Posts: 2,227
Received Thanks: 3,262
|
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
|
#9
|
elite*gold: 10
Join Date: Aug 2014
Posts: 63
Received Thanks: 162
|
Thanks Alot Logtetsch 
You Gived Me The Idea how i can Make It.
|
|
|
03/15/2015, 14:57
|
#10
|
elite*gold: LOCKED
Join Date: Oct 2014
Posts: 1,258
Received Thanks: 12,469
|
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
|
#11
|
elite*gold: 0
Join Date: Mar 2015
Posts: 39
Received Thanks: 26
|
#Solved
|
|
|
All times are GMT +1. The time now is 23:41.
|
|