普通编辑框行号显示整行选择、文本高亮简单例程

易语言 2020-07-28 17:07:59

普通编辑框行号显示整行选择、文本高亮简单例程

{
open Game.exe
api SendMessageA

push 0
push 0x00000000
push int 123 /push int 0xA 整型数据转指针
push int 0xA1
push string "支持半角引号" /push string "文本" 文本数据转指针
push string “支持全角引号”
push read 0x45F0692+0x920 /push read 基址+偏移 取数据地址
push read [0xFA5EB+0x273] /push read [基址+偏移] 取地址数据

mov eax,0
mov ebx,0
mov ecx,[0x009E13C0]
mov edx,0
mov esi,0
mov edi,0

call 0x0045CA93
}

/api 函数名 取函数地址
/open 进程名 打开进程
/inject 进程名 注入进程