cf一键宏设置大全代码(cf一键宏设置大全代码介绍)

时间:2023-11-24 17:39:59 编辑:景澄手游网 来源:网络整理

cf一键宏设置大全代码在哪里看?在穿越火线中鼠标宏其实是类似外挂一样的东西,有人问小编cf一键宏设置大全代码在哪里看?下面小编就为大家带来了cf一键宏设置大全代码一览。nVQ景澄手游网

cf一键宏设置大全代码

1、一键鬼跳nVQ景澄手游网

-- 鬼跳(按住ctrl+方向键+侧键)nVQ景澄手游网
---[[nVQ景澄手游网
if (event == "MOUSE_BUTTON_PRESSED" and arg == ghost_jump) thennVQ景澄手游网
while(IsMouseButtonPressed(ghost_jump))nVQ景澄手游网
donVQ景澄手游网
PressKey("spacebar")nVQ景澄手游网
Sleep(math.random(8,11))nVQ景澄手游网
ReleaseKey("spacebar")nVQ景澄手游网
Sleep(math.random(8,11))nVQ景澄手游网
endnVQ景澄手游网
nVQ景澄手游网
endnVQ景澄手游网
--]]nVQ景澄手游网
nVQ景澄手游网
-- 鬼跳1.2(只需要按住方向键+侧键)(个人觉得没有自己按ctrl手感好)nVQ景澄手游网
---[[nVQ景澄手游网
if (event == "MOUSE_BUTTON_PRESSED" and arg == ghost_jump and is_open_up) thennVQ景澄手游网
while(IsMouseButtonPressed(ghost_jump))nVQ景澄手游网
donVQ景澄手游网
PressKey("spacebar")nVQ景澄手游网
Sleep(math.random(5,8))nVQ景澄手游网
PressKey("lctrl")nVQ景澄手游网
Sleep(math.random(1,3))nVQ景澄手游网
ReleaseKey("spacebar")nVQ景澄手游网
Sleep(math.random(8,11))nVQ景澄手游网
endnVQ景澄手游网
ReleaseKey("lctrl")nVQ景澄手游网
endnVQ景澄手游网
--]]nVQ景澄手游网

2、一键上箱nVQ景澄手游网

-- 一键上箱1.0nVQ景澄手游网
---[[nVQ景澄手游网
if (event == "MOUSE_BUTTON_PRESSED" and arg == jump_box) thennVQ景澄手游网
PressKey("spacebar")nVQ景澄手游网
Sleep(math.random(267,275))nVQ景澄手游网
ReleaseKey("spacebar")nVQ景澄手游网
Sleep(math.random(346,354))nVQ景澄手游网
PressKey("spacebar")nVQ景澄手游网
Sleep(math.random(164,172))nVQ景澄手游网
ReleaseKey("spacebar")nVQ景澄手游网
Sleep(math.random(96,104))nVQ景澄手游网
PressKey("lctrl")nVQ景澄手游网
Sleep(math.random(140,148))nVQ景澄手游网
ReleaseKey("lctrl")nVQ景澄手游网
endnVQ景澄手游网
--]]nVQ景澄手游网

3、一键顺JUnVQ景澄手游网

-- 右键瞬狙nVQ景澄手游网
---[[nVQ景澄手游网
if (event == "MOUSE_BUTTON_RELEASED" and arg == right_fire_Ju) thennVQ景澄手游网
--OutputLogMessage("Hello World %f\n", math.random())nVQ景澄手游网
nVQ景澄手游网
-- 瞬发nVQ景澄手游网
PressMouseButton(1)nVQ景澄手游网
Sleep(math.random(10,20))nVQ景澄手游网
ReleaseMouseButton(1)nVQ景澄手游网
-- 切枪nVQ景澄手游网
if(change_gun == 1) thennVQ景澄手游网
PressKey("q")nVQ景澄手游网
Sleep(math.random(9,14))nVQ景澄手游网
ReleaseKey("q")nVQ景澄手游网
Sleep(math.random(120,130))nVQ景澄手游网
PressKey("q")nVQ景澄手游网
Sleep(math.random(9,14))nVQ景澄手游网
ReleaseKey("q")nVQ景澄手游网
Sleep(math.random(9,14))nVQ景澄手游网
endnVQ景澄手游网
nVQ景澄手游网
endnVQ景澄手游网
--]]nVQ景澄手游网

4、usp速点nVQ景澄手游网

-- usp连发nVQ景澄手游网
---[[nVQ景澄手游网
if (event == "MOUSE_BUTTON_PRESSED" and arg == usp_fire) thennVQ景澄手游网
nVQ景澄手游网
-- usp连发压枪nVQ景澄手游网
time_sum = 0nVQ景澄手游网
move_y = 0nVQ景澄手游网
if(usp_push_gun)thennVQ景澄手游网
move_y = 3nVQ景澄手游网
endnVQ景澄手游网
while(IsMouseButtonPressed(usp_fire))nVQ景澄手游网
donVQ景澄手游网
MoveMouseRelative(0,move_y)nVQ景澄手游网
PressMouseButton(1)nVQ景澄手游网
usp_speed_end = usp_speed + 10nVQ景澄手游网
time_one = math.random(usp_speed,usp_speed_end)nVQ景澄手游网
Sleep(time_one)nVQ景澄手游网
ReleaseMouseButton(1)nVQ景澄手游网
time_two = math.random(usp_speed,usp_speed_end)nVQ景澄手游网
Sleep(time_two)nVQ景澄手游网
time_sum = time_sum + time_one + time_twonVQ景澄手游网
if(time_sum > 300)nVQ景澄手游网
thennVQ景澄手游网
move_y = 0nVQ景澄手游网
endnVQ景澄手游网
endnVQ景澄手游网
endnVQ景澄手游网
--]]nVQ景澄手游网

5、雷神三连发nVQ景澄手游网

-- 雷神三连发nVQ景澄手游网
---[[nVQ景澄手游网
if (event == "MOUSE_BUTTON_PRESSED" and arg == tree_constant) thennVQ景澄手游网
nVQ景澄手游网
-- 下面注意,判断是否按压的值和正在按压的值不同,分别是132和123valuenVQ景澄手游网
nVQ景澄手游网
--OutputLogMessage("Hello World %d\n",2007)nVQ景澄手游网
PressMouseButton(1)nVQ景澄手游网
Sleep(math.random(178,190))nVQ景澄手游网
ReleaseMouseButton(1)nVQ景澄手游网
Sleep(math.random(45,53))nVQ景澄手游网
endnVQ景澄手游网
endnVQ景澄手游网
--]]nVQ景澄手游网

6、雷神压枪nVQ景澄手游网

-- 雷神压枪2.0nVQ景澄手游网
---[[nVQ景澄手游网
if (event == "MOUSE_BUTTON_PRESSED" and arg == force_gun_m4 and is_open_up) thennVQ景澄手游网
move_y = 3 --纵向移动坐标nVQ景澄手游网
move_x = 0 --横向移动坐标nVQ景澄手游网
time_all = 0 --枪口停止压枪阀nVQ景澄手游网
--last_x_pos = 0 --上次的x坐标nVQ景澄手游网
--last_y_pos = 0 --上次的y坐标nVQ景澄手游网
--last_x_pos ,last_y_pos = GetMousePosition()nVQ景澄手游网
--循环压枪nVQ景澄手游网
while(IsMouseButtonPressed(force_gun_m4))nVQ景澄手游网
donVQ景澄手游网
if (time_all < 60)nVQ景澄手游网
thennVQ景澄手游网
--前2发不压nVQ景澄手游网
move_y = 0nVQ景澄手游网
endnVQ景澄手游网
time_one = math.random(7,10)nVQ景澄手游网
Sleep(time_one)nVQ景澄手游网
MoveMouseRelative(move_x,move_y)nVQ景澄手游网
time_two = math.random(7,10)nVQ景澄手游网
Sleep(time_two)nVQ景澄手游网
time_all = time_all + time_one + time_twonVQ景澄手游网
if (time_all > 360)nVQ景澄手游网
thennVQ景澄手游网
--达到压枪阈值纵坐标停止运动nVQ景澄手游网
move_y = 0nVQ景澄手游网
-- 横坐标开始运动nVQ景澄手游网
--current_x_pos,current_y_pos = GetMousePosition() --获取当前鼠标坐标nVQ景澄手游网
--如果当前鼠标移动,自动像反方向压枪nVQ景澄手游网
nVQ景澄手游网
elsenVQ景澄手游网
move_y = 3nVQ景澄手游网
endnVQ景澄手游网
nVQ景澄手游网
endnVQ景澄手游网
endnVQ景澄手游网
--]]nVQ景澄手游网

7、ak火麒麟压枪-- AK压枪nVQ景澄手游网
---[[nVQ景澄手游网
if (event == "MOUSE_BUTTON_PRESSED" and arg == force_gun_ak and is_open_up) thennVQ景澄手游网
move_y = 4 --纵向移动坐标nVQ景澄手游网
move_x = 0 --横向移动坐标nVQ景澄手游网
time_all = 0 --枪口停止压枪阀nVQ景澄手游网
--last_x_pos = 0 --上次的x坐标nVQ景澄手游网
--last_y_pos = 0 --上次的y坐标nVQ景澄手游网
--last_x_pos ,last_y_pos = GetMousePosition() --获取初始位置nVQ景澄手游网
--OutputLogMessage("%d,%d\n",last_x_pos,last_y_pos)nVQ景澄手游网
--sum_move_y = 0 --y轴移动全部距离nVQ景澄手游网
nVQ景澄手游网
--循环压枪nVQ景澄手游网
while(IsMouseButtonPressed(force_gun_ak))nVQ景澄手游网
donVQ景澄手游网
if (time_all < 40)nVQ景澄手游网
thennVQ景澄手游网
--单点不压nVQ景澄手游网
move_y = 0nVQ景澄手游网
endnVQ景澄手游网
nVQ景澄手游网
--time_one = math.random(5,11)nVQ景澄手游网
--Sleep(time_one)nVQ景澄手游网
MoveMouseRelative(move_x,move_y)nVQ景澄手游网
--sum_move_y = sum_move_y + move_y --计算移动后的距离nVQ景澄手游网
time_two = math.random(10,22)nVQ景澄手游网
Sleep(time_two)nVQ景澄手游网
time_all = time_all + time_twonVQ景澄手游网
nVQ景澄手游网
if (time_all > 430)nVQ景澄手游网
thennVQ景澄手游网
--达到压枪阈值纵坐标停止运动nVQ景澄手游网
move_y = 0nVQ景澄手游网
-- 横坐标开始运动nVQ景澄手游网
--current_x_pos,current_y_pos = GetMousePosition() --获取当前鼠标坐标nVQ景澄手游网
--如果当前鼠标移动,自动像反方向压枪nVQ景澄手游网
elsenVQ景澄手游网
move_y = 4nVQ景澄手游网
endnVQ景澄手游网
nVQ景澄手游网
endnVQ景澄手游网
--sum_move_y = 0 - sum_move_ynVQ景澄手游网
--OutputLogMessage("%d\n",sum_move_y)nVQ景澄手游网
nVQ景澄手游网
--MoveMouseRelative(0,sum_move_y) --位置回执nVQ景澄手游网
--last_x_pos ,last_y_pos = GetMousePosition() --获取初始位置nVQ景澄手游网
--OutputLogMessage("%d,%d\n",last_x_pos,last_y_pos)nVQ景澄手游网
endnVQ景澄手游网
--]]nVQ景澄手游网

nVQ景澄手游网

以上就是cf一键宏设置大全代码一览,感兴趣的玩家可后续想要了解更多相关攻略可以关注景澄网,每天都会推送最新最全的游戏资讯攻略。nVQ景澄手游网

手游招托、要求嘴严、充值0.1折、开局满VIP!!!

进入微信搜索微信号:JCCEE001(点击复制微信号)

游戏下载
更多>

手游小助理

游戏咨询

微信号:JCCEE001

点击复制

长按识别二维码或复制微信号搜索添加

成功复制微信号

前往微信搜索添加...