나는 많은 플레이어들이 cf 원클릭 매크로 설정의 코드 세부 사항에 대해 아직 명확하지 않다고 생각하므로 오늘 Sourcecode.com 편집자가 cf 원클릭 매크로 설정의 코드 세부 사항을 알려드릴 수 있기를 바랍니다. 모두에게 도움이 됩니다!
-- 고스트 점프(ctrl+화살표 키+사이드 키 누르기) ---[[ if (event == "MOUSE_BUTTON_PRESSED" and arg == ghost_jump) then while(IsMouseButtonPressed(ghost_jump)) do PressKey("spacebar") Sleep( math.random(8,11)) ReleaseKey("spacebar") Sleep(math.random(8,11)) end end --]] -- Ghost Jump 1.2(화살표 키 + 측면 키를 누르기만 하면 됨) (개인용) ctrl을 누르는 것만큼 기분이 좋지 않다고 생각합니다.) ---[[ if (event == "MOUSE_BUTTON_PRESSED" and arg == ghost_jump and is_open_up) then while(IsMouseButtonPressed(ghost_jump)) do PressKey("spacebar") Sleep(math.random( 5,8)) PressKey("lctrl") Sleep(math.random(1,3)) ReleaseKey("스페이스바") Sleep(math.random(8,11)) end ReleaseKey("lctrl ") 끝 --] ]
-- 원클릭 박스 로딩 1.0 ---[[ if (event == "MOUSE_BUTTON_PRESSED" and arg == jump_box) then PressKey("spacebar") Sleep(math.random(267,275)) ReleaseKey("spacebar") Sleep ( math.random(346,354)) PressKey("스페이스바") Sleep(math.random(164,172)) ReleaseKey("스페이스바") Sleep(math.random(96,104)) PressKey("lctrl") Sleep(math.random( 140,148 )) ReleaseKey("lctrl") end --]]
-- 인스턴트 스나이퍼를 마우스 오른쪽 버튼으로 클릭 ---[[ if (event == "MOUSE_BUTTON_RELEASED" and arg == right_fire_Ju) then --OutputLogMessage("Hello World %fn", math.random()) -- Instant PressMouseButton ( 1) Sleep(math.random(10,20)) ReleaseMouseButton(1) -- 총 자르기 if(change_gun == 1) then PressKey("q") Sleep(math.random(9,14)) ReleaseKey(" q ") Sleep(math.random(120,130)) PressKey("q") Sleep(math.random(9,14)) ReleaseKey("q") Sleep(math.random(9,14)) end end -- ] ]
-- usp 버스트 ---[[ if (event == "MOUSE_BUTTON_PRESSED" and arg == usp_fire) then -- usp 버스트 press time_sum = 0 move_y = 0 if(usp_push_gun)then move_y = 3 end while(IsMouseButtonPressed (usp_fire) ) do MoveMouseRelative(0,move_y) PressMouseButton(1) usp_speed_end = usp_speed + 10 time_one = math.random(usp_speed,usp_speed_end) Sleep(time_one) ReleaseMouseButton(1) time_two = math.random(usp_speed,usp_speed_end) Sleep( time_two) time_sum = time_sum + time_one + time_two if(time_sum > 300) then move_y = 0 end end end --]]
-- 토르의 연속 3발 ---[[ if (event == "MOUSE_BUTTON_PRESSED" and arg == tree_constant) then -- 누르는지 여부를 결정하는 데 사용되는 값과 누르는 값이 다르다는 점을 아래 참고하세요. , 각각 132 및 123 값 -- OutputLogMessage("Hello World %dn",2007) PressMouseButton(1) Sleep(math.random(178,190)) ReleaseMouseButton(1) Sleep(math.random(45,53)) 끝 끝 --]]
--Thor Pressure Gun 2.0 ---[[ if (event == "MOUSE_BUTTON_PRESSED" and arg == force_gun_m4 and is_open_up) then move_y = 3 --세로 이동 좌표 move_x = 0 --측면 이동 좌표 time_all = 0 --총 압력 건 밸브 중지 --last_x_pos = 0 --마지막 x 좌표 --last_y_pos = 0 --마지막 y 좌표 --last_x_pos ,last_y_pos = GetMousePosition() --루프 건 압력 while(IsMouseButtonPressed(force_gun_m4)) do if (time_all < 60) then --처음 2개의 동작은 눌려지지 않습니다. move_y = 0 end time_one = math.random(7,10) Sleep(time_one) MoveMouseRelative(move_x,move_y) time_two = math.random(7,10) Sleep(time_two) time_all = time_all + time_one + time_two if (time_all > 360) then --건 압력 임계값에 도달하면 수직 좌표가 이동을 중지합니다. move_y = 0 --수평 좌표가 이동하기 시작합니다 --current_x_pos,current_y_pos = GetMousePosition() --Get 현재 마우스 좌표--현재 마우스가 움직이면 자동으로 총을 반대 방향으로 누릅니다. else move_y = 3 end end end --]]
7. ak Fire Qilin 압력 총--AK 압력 총 ---[[ if (event == "MOUSE_BUTTON_PRESSED" and arg == force_gun_ak and is_open_up) then move_y = 4 -- 수직 이동 좌표 move_x = 0 -- 수평 이동 좌표 time_all = 0 --총구 정지 압력 밸브--last_x_pos = 0 --마지막 x 좌표--last_y_pos = 0 --마지막 y 좌표--last_x_pos,last_y_pos = GetMousePosition() --초기 위치 가져오기- -OutputLogMessage("%d ,%dn",last_x_pos,last_y_pos) --sum_move_y = 0 --Y축이 전체 거리를 이동합니다. --루프 건 압력 while(IsMouseButtonPressed(force_gun_ak)) do if (time_all < 40) then - - 단일 지점 없이 압력 move_y = 0 end --time_one = math.random(5,11) --Sleep(time_one) MoveMouseRelative(move_x,move_y) --sum_move_y = sum_move_y + move_y --이동 후 거리 계산 time_two = math .random(10 ,22) Sleep(time_two) time_all = time_all + time_two if (time_all > 430) then -- 건 압력 임계값에 도달하면 세로 좌표가 이동을 중지합니다. move_y = 0 -- 가로 좌표가 이동을 시작합니다 --current_x_pos,current_y_pos = GetMousePosition( ) --현재 마우스 좌표 가져오기 --현재 마우스가 움직이면 자동으로 총을 반대 방향으로 누릅니다. else move_y = 4 end end --sum_move_y = 0 - sum_move_y --OutputLogMessage("%dn",sum_move_y) --MoveMouseRelative( 0,sum_move_y) --위치 영수증--last_x_pos,last_y_pos = GetMousePosition() --초기 위치 가져오기--OutputLogMessage("%d,%dn",last_x_pos,last_y_pos) end --]]