© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•3y ago•
4 replies
Deku

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)
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

❔ P/Invoke x86 ASM
C#CC# / help
3y ago
Question about Static Readonly Field optimization in Tier 2 JIT ASM
C#CC# / help
2y ago
How to get a Type by string without specifying the assembly name, if it's among loaded asms
C#CC# / help
15mo ago
Assembly Definitions
C#CC# / help
3y ago