Post: [GSC , PS3, PC, XBOX] Simple Button Monitoring
07-19-2015, 05:18 PM #1
Exelo
Banned
(adsbygoogle = window.adsbygoogle || []).push({});
Hello NGU,

You probably already know about it but in Simple base from TheFallen he did a simple button monitor, therefore its was adapted to his base and wasn't completed which mean its didn't got all the button. So seeing it I decided to complete this because I Needed it to be compatible with my base and because lots of people seemed to have troubles doing a Quick bind functions.

    buttonPressed(button)
{
if(button == "DPAD_UP")
return self actionslotonebuttonpressed();
if(button == "DPAD_DOWN")
return self actionslottwobuttonpressed();
if(button == "DPAD_RIGHT")
return self actionslotfourbuttonpressed();
if(button == "DPAD_LEFT")
return self actionslotthreebuttonpressed();
if(button == "R1")
return self attackbuttonpressed();
if(button == "R2")
return self fragbuttonpressed();
if(button == "R3")
return self meleebuttonpressed();
if(button == "L1")
return self adsbuttonpressed();
if(button == "L2")
return self throwbuttonpressed();
if(button == "L3")
return self sprintbuttonpressed();
if(button == "SQUARE")
return self usebuttonpressed();
if(button == "X")
return self jumpbuttonpressed();
if(button == "TRIANGLE")
return self secondaryoffhandbuttonpressed();
if(button == "O")
return self stanceButtonPressed();
}


To use it, Just call a thread somewhere in your script as for example runController();
    
runController()
{
self endon("disconnect");

for(;Winky Winky
{
if(buttonPressed("DPAD_UP"))
self iprintln("test");
wait 0.05;
}
wait 0.05;
}




So yeah, Enjoy...

Credits :
TheFallen - Button Monitore
Exelo - Completing it.
Last edited by Exelo ; 08-10-2015 at 08:26 PM.

The following 10 users say thank you to Exelo for this useful post:

-Numb, /SneakerStreet/, DEv_ShOoTz, Devilemi, HiddenHour, iiiCenTurY, LevelUP, Rezqaazify, vincom, XDrifteer7
07-19-2015, 05:24 PM #2
Nice Simple Release This will Surley Help People Who are new to coding

The following user thanked LevelUP for this useful post:

Exelo
07-19-2015, 05:27 PM #3
Devilemi
Can’t trickshot me!
nice Tustin

The following user thanked Devilemi for this useful post:

Exelo
08-08-2015, 07:11 PM #4
For some reason i really can't get this to work, Can someone message me to help me please? ( skype; Danny2o15 ) Thanks in advance Happy
08-10-2015, 04:18 PM #5
itsSorrow
In my man cave
bump cuz exelo made it

The following user thanked itsSorrow for this useful post:

/SneakerStreet/
08-12-2015, 11:59 PM #6
Originally posted by Exelo View Post
Hello NGU,

You probably already know about it but in Simple base from TheFallen he did a simple button monitor, therefore its was adapted to his base and wasn't completed which mean its didn't got all the button. So seeing it I decided to complete this because I Needed it to be compatible with my base and because lots of people seemed to have troubles doing a Quick bind functions.

    buttonPressed(button)
{
if(button == "DPAD_UP")
return self actionslotonebuttonpressed();
if(button == "DPAD_DOWN")
return self actionslottwobuttonpressed();
if(button == "DPAD_RIGHT")
return self actionslotfourbuttonpressed();
if(button == "DPAD_LEFT")
return self actionslotthreebuttonpressed();
if(button == "R1")
return self attackbuttonpressed();
if(button == "R2")
return self fragbuttonpressed();
if(button == "R3")
return self meleebuttonpressed();
if(button == "L1")
return self adsbuttonpressed();
if(button == "L2")
return self throwbuttonpressed();
if(button == "L3")
return self sprintbuttonpressed();
if(button == "SQUARE")
return self usebuttonpressed();
if(button == "X")
return self jumpbuttonpressed();
if(button == "TRIANGLE")
return self secondaryoffhandbuttonpressed();
if(button == "O")
return self stanceButtonPressed();
}


To use it, Just call a thread somewhere in your script as for example runController();
    
runController()
{
self endon("disconnect");

for(;Winky Winky
{
if(buttonPressed("DPAD_UP"))
self iprintln("test");
wait 0.05;
}
wait 0.05;
}




So yeah, Enjoy...

Credits :
TheFallen - Button Monitore
Exelo - Completing it.


I'm new to coding and can't get this to work could someone Skype me and help please. Skype = (Mxttt Taylor)
08-13-2015, 06:15 AM #7
itsSorrow
In my man cave
This bump cuz exelo made it
08-13-2015, 10:53 AM #8
Originally posted by Exelo View Post
Hello NGU,

You probably already know about it but in Simple base from TheFallen he did a simple button monitor, therefore its was adapted to his base and wasn't completed which mean its didn't got all the button. So seeing it I decided to complete this because I Needed it to be compatible with my base and because lots of people seemed to have troubles doing a Quick bind functions.

    buttonPressed(button)
{
if(button == "DPAD_UP")
return self actionslotonebuttonpressed();
if(button == "DPAD_DOWN")
return self actionslottwobuttonpressed();
if(button == "DPAD_RIGHT")
return self actionslotfourbuttonpressed();
if(button == "DPAD_LEFT")
return self actionslotthreebuttonpressed();
if(button == "R1")
return self attackbuttonpressed();
if(button == "R2")
return self fragbuttonpressed();
if(button == "R3")
return self meleebuttonpressed();
if(button == "L1")
return self adsbuttonpressed();
if(button == "L2")
return self throwbuttonpressed();
if(button == "L3")
return self sprintbuttonpressed();
if(button == "SQUARE")
return self usebuttonpressed();
if(button == "X")
return self jumpbuttonpressed();
if(button == "TRIANGLE")
return self secondaryoffhandbuttonpressed();
if(button == "O")
return self stanceButtonPressed();
}


To use it, Just call a thread somewhere in your script as for example runController();
    
runController()
{
self endon("disconnect");

for(;Winky Winky
{
if(buttonPressed("DPAD_UP"))
self iprintln("test");
wait 0.05;
}
wait 0.05;
}




So yeah, Enjoy...

Credits :
TheFallen - Button Monitore
Exelo - Completing it.


I came on this thread thinking it'd be something really stupid after reading the title, but this is actually pretty useful, thanks for this although I'd never actually use it

The following user thanked John for this useful post:

Exelo
08-13-2015, 08:10 PM #9
itsSorrow
In my man cave
Originally posted by John View Post
I came on this thread thinking it'd be something really stupid after reading the title, but this is actually pretty useful, thanks for this although I'd never actually use it


but anything exelo releases/shows isn't stupid

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo