Help Auto-accept

ddarius16

Member
Joined
Dec 14, 2013
Messages
6
Reaction score
0
Hi guys,I search a keybinder or something that auto-accept a command,like: /accept mechanic id and when it appear in chat "x called for a Car mechanic, /accept mechanic x" to auto-accept all who need a mechanic or for any command not only for /accept mechanic x.
 

Zin

Expert
Joined
Aug 1, 2013
Messages
1,692
Reaction score
105
you could use a key bind that would type /Accept mechanic than all you would have to type is the ID
 

ddarius16

Member
Joined
Dec 14, 2013
Messages
6
Reaction score
0
I need that I don't have to type any ID,to auto-accept without type anything.
I've saw a video on youtube that accept gun instantly when someone offer him,I think it's a cleo mod.
 

bigben07

Active member
Joined
Nov 10, 2013
Messages
140
Reaction score
0
For anyone saying this is impossible, it's not. You can use AHK to read the chat and when it detects a line of chat, it will accept it. This takes a lot of work though.
 

Harlem

Well-known member
Joined
Apr 2, 2013
Messages
237
Reaction score
0
use auto hotkey and set up the /accept cmd to every single id, so when you press the key to enable it it will type all the ids aviable, easy but might set up some spam.
 

reeferuk

Active member
Joined
Apr 22, 2013
Messages
31
Reaction score
0
Download http://www.autohotkey.com/

Create a script with this code: m::SendInput t/accept mechanic{enter}

This would make your "M" key accept without having to type it, You can change the "M" key to anything you like, Here are a few more examples.

#::SendInput t/getmats{enter}
b::SendInput t/accept bodyguard{enter}
j::SendInput t/quitjob{enter}t/joinjob{enter}
(this will quit your job and join another instantly)
[::SendInput t/enter{enter}
]::SendInput t/exit{enter}
q::SendInput t/ww{enter}t/gps{enter}
g::SendInput t/guard{space 2}2000{left 5}
(this is for bodyguards, all u have to do is put their id in, and enter once you did

This one i use for viplocker, it gets health, armor then deagle and mp5 almost instantly but this is layout different:
!l::
SendInput t/viplocker{enter}
Sleep 100
SendInput {enter}
Sleep 100
SendInput t/viplocker{enter}
Sleep 100
SendInput {Down 1}
Sleep 100
SendInput {enter}
Sleep 100
SendInput t/viplocker{enter}
Sleep 100
SendInput {Down 2}
Sleep 100
SendInput {enter}
Sleep 100
SendInput {enter}
Sleep 100
SendInput t/viplocker{enter}
Sleep 100
SendInput {Down 2}
Sleep 100
SendInput {enter}
Sleep 100
SendInput {Down 2}
Sleep 100
SendInput {enter}
Return

I hope this helps :) :):)
 
Top