请问按键精灵脚本,怎样随机又不重复点击指定坐标中的

2020-11-20 17:56:46 字数 4165 阅读 6571

1楼:匿名用户

//还是直接给出**好了,利用洗牌函数即可dima,b,c,x,y

a=array("1,1","2,2","3,3","4,4","5,5")

b=洗牌(12345)

forq=1to3

c=a(int(b(q))-1)

x=split(c,",")(0)

y=split(c,",")(1)

messageboxx&","&y

movetox,y

next

function洗牌(字符串内容)//该算法在我的命令库找到dim结果,数量,i,j,temp

数量=len(字符串内容)

redimtt(数量)

结果=""

fori=1to数量

tt(i)=mid(字符串内容,i,1)next

randomize

forj=1to数量

i=int(数量*rnd+1)temp=tt(i)

tt(i)=tt(j)

tt(j)=temp

next

洗牌=tt

endfunction

按键精灵脚本,怎样随机不重复点击3个指定坐标中的2个?

2楼:heart阿飞

vbs x = int(10000000+89999999*rnd) //x即为八位随机数rnd是随机数函数 用于生成0-1之间的随机小数

按键精灵如何随机不重复点击我设定的鼠标坐标?

3楼:匿名用户

将所有的鼠标点 存在一个数组里面

然后 随机一个下标,点击对应点

点击后 删除数组中的项

这样一直到全点完为止。

4楼:匿名用户

坐标保存到数组.随机数抽取数组元素或者下标比对另一个数组或字符串,相同就跳过,不相同就使用并保存

5楼:都是大笨蛋

lz是pc上还是手机上?这两者有部分语法不同的。

按键精灵在固定4个坐标点怎么随机选出3个坐标点

6楼:匿名用户

做个随机数 1到4 如果等于1 坐标1不点击

7楼:深海多水

dim 坐标

(3)do

坐标(0) = "11,22"

坐标(1) = "31,210"

坐标(2) = "51,202"

坐标(3) = "81,210"

rem ks

randomize

a = int((3 - 0 + 1) * rnd + 0)dorandomize

b = int((3 - 0 + 1) * rnd + 0)loop while a = b

dorandomize

c = int((3 - 0 + 1) * rnd + 0)loop while c=a or c=b坐标xy = split(坐标(a), ",")x = 坐标xy(0)

y = 坐标xy(1)

moveto x, y

leftclick 1

坐标xy = split(坐标(b), ",")x = 坐标xy(0)

y = 坐标xy(1)

moveto x, y

leftclick 1

坐标xy = split(坐标(c), ",")x = 坐标xy(0)

y = 坐标xy(1)

moveto x, y

leftclick 1

loop

按键精灵 rnd函数 随机不重复 点击7次固定范围内的坐标 怎么设置

8楼:匿名用户

按键精灵我的命令库有个洗牌算法,可以借鉴这个算法就不会重复了。

求按键精灵重复点击3个坐标的脚本 20

9楼:匿名用户

rem tiao

moveto ***, ***

leftclick 1

delay 3000

moveto ***, ***

leftclick 1

delay 3000

moveto ***, ***

leftclick 1

delay 3000

goto tiao

***里填坐标

怎么使按键精灵在网页固定中3个点随机点击,有可能全选,也可能只选1-2项?

10楼:匿名用户

randomize

v = int(12 * rnd)//全选的概率占50% 如果觉得太高可将12适当调低

//msgbox rnd

//msgbox 12*rnd

//msgbox v

if v = 0 then

call plugin.msg.tips("1")moveto 388, 593

leftclick 1

elseif v = 1 then

call plugin.msg.tips("2")moveto 522, 593

leftclick 1

elseif v = 2 then

call plugin.msg.tips("3")moveto 703, 593

leftclick 1

elseif v = 3 then

call plugin.msg.tips("12")moveto 388, 593

leftclick 1

moveto 552, 593

leftclick 1

elseif v = 4 then

call plugin.msg.tips("23")moveto 552, 593

leftclick 1

moveto 703, 593

leftclick 1

elseif v = 5 then

call plugin.msg.tips("13")moveto 388, 593

leftclick 1

moveto 703, 593

leftclick 1

else

call plugin.msg.tips("123")moveto 388, 593

leftclick 1

moveto 552, 593

leftclick 1

moveto 703, 593

leftclick 1

end if

按键精灵10个坐标随机选5个坐标左键点击 最好是后台点击? 5

11楼:匿名用户

dim 数组

(9)数组(0) = "624,484"

数组(1) = "637,515"

//多余素组自己补充

字符串 = left(高级洗牌("0123456789", 1), 5)

traceprint 字符串

for 取数 = 1 to 5

i = mid(字符串, 取数, 1)

traceprint i

分割 = split(数组(i), ",")moveto cint(分割(0)), cint(分割(1))delay 10

leftclick 1

delay 20

next

function 高级洗牌(字符串内容, 每个字符串位数)dim 数量, i, j, temp

数量 = len(字符串内容) / 每个字符串位数redim tt(数量)

for i = 0 to 数量 - 1

tt(i) = mid(字符串内容, i * 每个字符串位数 + 1, 每个字符串位数)

next

randomize

for j = 0 to 数量 - 1

i = int((数量 - 1) * rnd + 1)temp = tt(i) : tt(i) = tt(j) : tt(j) = temp

next

高级洗牌 = join(tt,"")

end function

求个按键精灵里随机时间随机坐标鼠标点击的脚本

1楼 匿名用户 按键精灵随机时间 随机坐标 鼠标点击的参考 如下 dox int 1440 50 1 rnd 50 y int 900 10 1 rnd 10 moveto x y leftclick 1 s int 5000 1000 1 rnd 1000 delay s loop 求按键精灵区域...