- UID
- 20892
- 帖子
- 453
- 主題
- 77
- 精華
- 0
- 積分
- 504
- 楓幣
- 1077
- 威望
- 471
- 存款
- 0
- 贊助金額
- 0
- 推廣
- 0
- GP
- 85
- 閱讀權限
- 50
- 性別
- 保密
- 在線時間
- 667 小時
- 註冊時間
- 2013-1-25
- 最後登入
- 2024-7-12
|
// TWMS v201.1_ICS_PostMessage_Focus_Fix
// 就是能解決PostMessage的WM_KEYDOWN消息無法在MapleStory視窗為非Focus狀態時被正確執行的問題
// 升級: btb
// Auther: Doem
// ICS: SmallGCOk
[ENABLE]
alloc(PressFixICS,64)
alloc(PressFix,32)
PressFixICS:
cmp [esp+8],01DE83D0
jne USER32.GetForegroundWindow
mov [esp+8],PressFix
jmp USER32.GetForegroundWindow
PressFix:
test eax,eax
jmp 01DE83D8
0306B68C:
DD PressFixICS
[DISABLE]
0306B68C:
dd USER32.GetForegroundWindow |
|