Deku
Deku
CC#
Created by Deku on 5/3/2023 in #help
❔ TextBox
How can I make a text box show some default text, but then disappear when I click on it, allowing me to enter my actual text? Additionally, how can I make the text box itself respond to the "Enter" key, for example, to log in? Finally, how can I display a message with custom text of my choosing when the entry is successful?
6 replies
CC#
Created by Deku on 5/3/2023 in #help
ASM
Is there a way to put the following Cheat Engine script into a C# project?
[ENABLE]

aobscanmodule(AttackDelay,DCGAME.EXE,8B 50 3C C1 EA 03) // should be unique
alloc(newmem,$1000)

label(code)
label(return)

newmem:

code:
mov [eax+3C],#0
mov edx,[eax+3C]
shr edx,03
jmp return

AttackDelay:
jmp newmem
nop
return:
registersymbol(AttackDelay)

[DISABLE]

AttackDelay:
db 8B 50 3C C1 EA 03

unregistersymbol(AttackDelay)
dealloc(newmem)
[ENABLE]

aobscanmodule(AttackDelay,DCGAME.EXE,8B 50 3C C1 EA 03) // should be unique
alloc(newmem,$1000)

label(code)
label(return)

newmem:

code:
mov [eax+3C],#0
mov edx,[eax+3C]
shr edx,03
jmp return

AttackDelay:
jmp newmem
nop
return:
registersymbol(AttackDelay)

[DISABLE]

AttackDelay:
db 8B 50 3C C1 EA 03

unregistersymbol(AttackDelay)
dealloc(newmem)
5 replies