最新发布
下一页-
一、得到/设置屏幕分辨率和色深1234567screenX = Plugin.sys.GetScRX( screenY = Plugin.sys.GetScRY( Dep=plugin.sys.GetScDep( TracePrint screenXTracePrint screenYTracePr
-
一、读写ini配置文件123Call plugin.file.WriteINI("补血配置","HP","80","C:\补血.ini" text=plugin.file.ReadINI("补血配置"
-
一、颜色插件相关的命令1、GetPixelColor得到指定点颜色123GetCursorPos x,ygetcolor = Plugin.color.GetPixelColor(x,y,0 TracePrint getcolor2、ColorToRGB颜色转RGB1234Call plugin.C
-
用脚本实现在记事本输入“hello”,然后输入“按键精灵”,最后把光标停留在“hello”和“按键精灵”之间。12345678910hwnd = Plugin.window.mousepoint( TracePrint "查找到的记事本窗口句柄为:"&hwndCall p
-
一、得到指定点颜色(GetPixelColor)1234GetColor=GetPixelColor(8,26 If GetColor = "3936FF" Then MoveTo 8, 26End If二、区域找色12345Fin
-
一、子程序123456789101112131415x = 1y = 2TracePrint "主脚本中,实参x=:"&xTracePrint "主脚本中,实参y=:" & ycall 交换变量的值(x, y Sub 交换变量的值(a, b &
-
中断脚本命令:BeginThread 线程 Delay 1000 //延时1秒内,线程的循环运行5次 ExitScript //ExitScript结束整个脚本,包括线程,如果用EndScript则仅结束主脚本,线程还将