搜索资源列表
DDPHelpSrc
- QQ对对碰游戏外挂 功能: 1.能够自动提示能够消除的对对碰 2.能够模拟鼠标自动消除 3.可以加快速度 4.自动开始 虽然此程序仅仅是一个小外挂,但也使用到了一些技术. 1.线程的使用 2.程序窗口查找 3.dll注入技术 4.api hook 技术 5.单进程全局热建钩子 6.不通过特定颜色判断相同方格的方法 7.模拟鼠标的两种方法,mouse_event(
QLian[06-07-04]
- QQ连连看的外挂,用到窗口api/修改他进程内存(破除QQ连连看游戏的mouse_event限制)/去点分析等技术。-QQ 1000 block of Terry Avenue ins, use window api / modify his memory process (QQ 1000 block of Terry Avenue break the game mouse_event limit) / point to technic
KnightOnLine
- KnightOnLine Private Declare Sub mouse_event Lib \"user32\" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long) Private Declare Function SetCursorPos Lib \"u
zy1299
- Private Declare Sub mouse_event Lib \"user32\" (ByVal dwFlags As L
mouse
- 模仿鼠标操作:mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0) mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0) mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0) mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0)
DDPHelpSrc
- QQ对对碰游戏外挂 功能: 1.能够自动提示能够消除的对对碰 2.能够模拟鼠标自动消除 3.可以加快速度 4.自动开始 虽然此程序仅仅是一个小外挂,但也使用到了一些技术. 1.线程的使用 2.程序窗口查找 3.dll注入技术 4.api hook 技术 5.单进程全局热建钩子 6.不通过特定颜色判断相同方格的方法 7.模拟鼠标的两种方法,mouse_event(
QLian[06-07-04]
- QQ连连看的外挂,用到窗口api/修改他进程内存(破除QQ连连看游戏的mouse_event限制)/去点分析等技术。-QQ 1000 block of Terry Avenue ins, use window api/modify his memory process (QQ 1000 block of Terry Avenue break the game mouse_event limit)/point to technical a
mouseevent
- 过去用 C++/MFC 开发程序时,常常为用户提供鼠标的右键单击功能,如今在 .NET 框架中使用 C#,也想在程序中提供鼠标右键单击功能,比如,在文本框、窗格、标签以及主窗口背景上使用鼠标右键。毕竟 C# 不是 C++/MFC,那么如何用 C# 处理-past C/MFC development process, often to provide users with the right-mouse click functions,
KnightOnLine
- KnightOnLine Private Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long) Private Declare Function SetCursorPos Lib "user
zy1299
- Private Declare Sub mouse_event Lib "user32" (ByVal dwFlags As L
DDPHelpSrc
- QQ游戏之对对碰外挂, 功能: 1.能够自动提示能够消除的对对碰 2.能够模拟鼠标自动消除 3.可以加快速度 4.自动开始 虽然此程序仅仅是一个小外挂,但也使用到了一些技术. 1.线程的使用 2.程序窗口查找 3.dll注入技术 4.api hook 技术 5.单进程全局热建钩子 6.不通过特定颜色判断相同方格的方法 7.模拟鼠标的两种方法,mouse_event(鼠标光标会移动
api0006
- 模拟鼠标动作的实例,对研究mouse_event的朋友也许有些帮助.-Examples of simulated mouse movements, the study may mouse_event some friends to help.
wgm
- 编程语言:delphi或者vc.(建议vc) 编程知识:hook技术,一些常用的api,dll,等。(如果,不了解先去看看资料) 工具:wpe,自己做的一个封包工具,进制转换器自己做个比较好。 外挂方法1.键盘鼠标模拟mouse_event等函数解决. 2.读取内存,看数据. 3.截取网络封包进行分析。(怎么封包解密:同一个动作截取n次比较,找出共同) 资料 网上的传奇挂机原代 -Programming
mouse_event
- 实现电脑上的一些重复性键盘和鼠标操作。每个操作都会先判断画面上的图形是否满足条件,只有满足条件时才会操作。-To achieve some repetitive computer keyboard and mouse. Each operation will first determine whether the graphics on the screen to meet the conditions, only to meet th
200907290002
- 通信命令 show 显示蝴蝶 001 接收图象 002 播放音乐 003 蝴蝶说话 004 打开网站 005 电脑关机 006 重启电脑 007 完全卸栽 008 定时关机 009 *开始 010 取*信息 (主控端服务器取回一次数据,受控端客户机将记录剪接板内容清空一次) 011 停止* 012 DOS命令 (目前是批处理命令) 013 取系统
mouse_event
- This program creates a rectangle when you click the mouse on the window, and stretches the rectangle until you release the mouse. This requires the creation of a mouse callback. For the main function we use a while loop
luanQkuangwu2011
- 乱Q狂舞2011,C语言外挂,病毒,编程,API函数-mouse_event sendmessage
AutoMoveMouse
- 定时自动控制鼠标移动与点击,采用mouse_event方法-Time automatic control mouse movement and clicks using mouse_event method
Simulate
- 以 VC++为例来介绍一下如何实现程序来模拟键盘及鼠标的输入,这里主要是通过两个Windows API函数来实现这两个功能。模拟键盘用Keybd_event这个api函数,模拟鼠标按键用mouse_event函数。-VC++ example to introduce how to implement the program to simulate keyboard and mouse input, mainly through two
MouseEvent
- This is mouse_event transfer program. It can transfer painting with mouse. And it transfer in real time. This code come from website devpia from Korea.-This is mouse_event transfer program. It can transfer painting with