GTA5 small script request

GPC2 script programming for Titan Two. Code examples, questions, requests.

GTA5 small script request

Postby HOST » Tue Jan 16, 2018 3:12 pm

dear,

anyone who has or can create a small script for gta5 all i want is the HORN (L3) to be pressed in a script
like with the arm-wrestle

and maybe if possible (pretty sure) to set hold time for example:

every second
every 5 seconds
or keep it pressed

much apreciated!
not active due to daily migraines sorry
User avatar
HOST
Corporal
Corporal
 
Posts: 5
Joined: Sat Jun 24, 2017 6:59 pm

Re: GTA5 small script request

Postby HOST » Wed Jan 17, 2018 7:50 pm

got it sorted
not active due to daily migraines sorry
User avatar
HOST
Corporal
Corporal
 
Posts: 5
Joined: Sat Jun 24, 2017 6:59 pm

Re: GTA5 small script request

Postby J2Kbr » Thu Jan 18, 2018 11:07 am

Cool, if possible please post your script code here, it may be helpful to other users. :)
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: GTA5 small script request

Postby HOST » Thu Jan 18, 2018 1:43 pm

well... it's kinda your code that you posted to the ARK request

viewtopic.php?f=26&t=7629

i just made a few changes

L3 to turn on the horn loop and L3 again to turn it back off

Code: Select all
#pragma METAINFO("<Copyright J2Kbr>", 1, 1, "17-01-2017")
 
bool toggle;
 
main {
    if(event_active(BUTTON_9)) {
        toggle = !toggle;
        if(!toggle) {
            combo_stop(GTA);
        }
    }
    if(toggle) {
        combo_run(GTA);
    }
}
 
combo GTA {
    set_val(BUTTON_9, 100.0);
    wait(4000);
}
not active due to daily migraines sorry
User avatar
HOST
Corporal
Corporal
 
Posts: 5
Joined: Sat Jun 24, 2017 6:59 pm

Re: GTA5 small script request

Postby J2Kbr » Fri Jan 19, 2018 1:45 pm

Great. thanks for posting. :)
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm


Return to GPC2 Script Programming

Who is online

Users browsing this forum: No registered users and 208 guests

cron