Help Help me up

Chuck

Well-known member
Joined
Jul 4, 2013
Messages
305
Reaction score
2
Location
South Africa.
So...

I wanna be in-game with two accounts (both active at the same time) so I can farm materials whilst not on PC. So I suppose I need a binder and Sandboxie + Anti AFK(to keep them both active). How do I do that? I managed to keep both of them active using Anti Alt-Tab by MogAika for SAMP 0.3.7 and also the Sandboxie to run two clients. Now ... how do I make AutoHotkey send binds to both of them? Or maybe you guys can make a CLEO that contains the binds I need and I can activate it on both the SAMP clients?

Here's the binds I compiled in AHK.

SendInput t/getmats{enter}
Sleep 63000
Send {Y Down}
Sleep 100
Send {Y Up}
Sleep 1000
 
Joined
Feb 18, 2005
Messages
2,965
Reaction score
271
Use SAMPFUNCS, it has both anti afk while on alt/tab and allows you to open two or more instances of gta.
Then you can also make a simple cleo script to do those stuffs and still use your pc since cleo won't affect the whole system.

0AF9: samp say_msg "/getmats" //send commands
0C72: set_virtual_key 0@ down true //to set keys
//or 0B56: set_game_key 1@ state 2@
wait 1000 //same as sleep
 

Chuck

Well-known member
Joined
Jul 4, 2013
Messages
305
Reaction score
2
Location
South Africa.
OK. So what I want this CLEO to do in a loop.

1. Type /getmats
2. Wait 63 seconds.
3. Press Y button.

I've never done a CLEO script myself, but I tried compiling this and here's what I came up with, would it work properly?

:LOOP
wait 0
if
0AB0: key_pressed 116
0AF9: samp say_msg "/getmats"
wait 63000
0C72: set_virtual_key 89@ down true

EDIT:
I tried compiling it and it says: Unknown opcode 0C72.
What do I need to do?
 
Top