A. 按键精灵 如何将多个脚本合并成一个脚本
把所有的代码复制到一个脚本里
按楼主的要求
只需要把每个脚本的类容
用 for 800
endfor
命令就可以了
格式类似
for 800
第一个脚本类容
endfor
for 800
第二个脚本类容
endfor
就是这样了
脚本会按顺序执行
B. 编程. 按键精灵.请问下如何把两个脚本合并,直接复制粘贴脚本行数太多,变量也有重复
合并并不是一个好的方案,除非你的功能性都是一块一块的,耦合性不强.
如果耦合性很强,或许你可以考虑多线程?
C. 按键精灵 怎么把这两个脚本合并
Rem 循环
VBSCall yanse1=GetPixelColor(562,509)
VBSCall yanse2=GetPixelColor(581,509)
If yanse1="DDDDEE" or yanse2="DDDDDD"
KeyDown 116,1
Delay 100
KeyUp 116,1
Delay 2000
KeyDown 116,1
Delay 100
KeyUp 116,1
EndIf
Delay 1000
Goto 循环
D. 怎么合并脚本
#!/bin/bash
# ====================================== #
# messaging debug by onlyone33 & ilove3d #
# please keep the author information #
# ====================================== #
debug_msg()
{
export TZ=GMT-8
sleep 2s
am_ret=0
#p=0
until [ $am_ret -eq 1 ]
do
if ps -e | grep am > /dev/null 2>&1
then
am_ret=1
else
sleep 1s
#p=$((p+1))
fi
if [ -f /mmc/mmca1/autorun/ezx_flexbit.cfg ]
then
mount --bind /mmc/mmca1/autorun/ezx_flexbit.cfg /usr/setup/ezx_flexbit.cfg
fi
if [ -f /mmc/mmca1/autorun/ezx_flexbit.cfg ]
then
mount --bind /mmc/mmca1/autorun/ezx_flexbit.cfg /ezx_user/download/appwrite/setup/ezx_flexbit.cfg
done
sleep 10s
misc_ret=`ps -e | grep misc1 | busybox wc -l` > /dev/null 2>&1
#q=0
until [ $misc_ret -eq 4 ]
do
sleep 1s
misc_ret=`ps -e | grep misc1 | busybox wc -l` > /dev/null 2>&1
#q=$((q+1))
done
if ps -e | grep messaging > /dev/null 2>&1
then
#echo am_count=$((p+2)) misc1_count=$((q+10)) >> /ezxlocal/debug_msg_log.txt
#echo messaging fine at `date` >> /ezxlocal/debug_msg_log.txt
exit 0
fi
/usr/SYSqtapp/messaging/messaging &
sleep 2s
fuser -k /usr/SYSqtapp/messaging/messaging
#echo am_count=$((p+2)) misc1_count=$((q+10)) >> /ezxlocal/debug_msg_log.txt
#echo messaging debug at `date` >> /ezxlocal/debug_msg_log.txt
}
debug_msg & (if里面的东西是可以并列的 )
E. 两个独立的脚本合并在一起
合并代码如下:
FindPic0,0,1024,768,"D:2345下载估价启动在100图片.bmp",1,intX,intY
IfintX>0AndintY>0Then
GetColor=GetPixelColor(584,338)
IfGetColor="FF00FF"OrGetColor="0000FF"Then
MoveTo1022,82
LeftClick1
Delay200
KeyDown18,1
KeyPress90,1
KeyUp18,1
Delay200
MouseWheel-1
Delay200
Else
MoveTo1022,82
LeftClick1
Delay200
MouseWheel-1
Delay200
EndIf
Else
MoveTo1022,82
LeftClick1
Delay200
MouseWheel-1
Delay200
EndIf
F. 按键精灵如何合并两个脚本
你把他们写在一个脚本就行了,如果你非得两个脚本,生成小精灵的时候选两个脚本(按住Ctrl,鼠标单击就可以选)
G. 按键精灵9 帮忙把几个脚本合并起来
BeginThread aa
BeginThread bb
BeginThread cc
BeginThread dd
Sub aa
Rem a
IfColor 862,200,"8F4A00",2 Then
KeyPress "P", 1
KeyPress "I", 1
KeyPress "O", 1
Delay 77
Else
EndIf
Goto a
End Sub
Sub bb
Rem a
IfColor 860,266,"8F4A00",2 Then
KeyPress "k", 1
KeyPress "l", 1
KeyPress "j", 1
Delay 77
Else
EndIf
Goto a
End Sub
Sub cc
Rem a
IfColor 357,330,"8F4A00",2 Then
KeyPress "s", 1
KeyPress "a", 1
KeyPress "d", 1
Delay 77
Else
EndIf
Goto a
End Sub
Sub dd
Rem a
IfColor 358,399,"8F4A00",2 Then
KeyPress "x", 1
KeyPress "z", 1
KeyPress "c", 1
Delay 77
Else
EndIf
Goto a
End Sub
H. gg修改器怎么用教学
摘要 使用gg修改器首先打开GG修改器,点击右下角“开始”,然后点击左上角浮标,选择“我的游戏”,接着安装好叉叉酷玩和GG修改器,打开叉叉酷玩,最后在运行脚本下点击“添加游戏”,点击“GG修改器”。
I. 按键精灵 两个脚本 合并
多程线吧。。。
-------------------------------------以下为脚本--------------------------------------------------
BeginThread x
BeginThread p
Sub x
IfColor 562,509,"DDDDEE",0 Then
KeyDown 123,1
Delay 100
KeyUp 123,1
Delay 2000
KeyDown 123,1
Delay 100
KeyUp 123,1
Else
EndIf
Delay 1000
Goto F51
End Sub
//----------------------------------以下是另外一个脚本-------------------------
Sub p
Rem F52
IfColor 581,509,"DDDDDD",0 Then
KeyDown 116,1
Delay 100
KeyUp 116,1
Delay 2000
KeyDown 116,1
Delay 100
KeyUp 116,1
Else
EndIf
Delay 1000
Goto F52
End Sub
====================================================================
不知道你的第一个脚本的“Goto F51”有什么用。。。但是估计被我加了子程序之后就没用了
因为里面都是独立的两个脚本,转跳什么的都不能跨越。。。