Using Titan One to play games PC

I tried connecting a wired XB1 controller to it, but my computer isn't recognizing the controller being plugged in.
What do I need to do to fix this?
What do I need to do to fix this?
High-performance gaming devices.
https://www.consoletuner.com/forum/
https://www.consoletuner.com/forum/viewtopic.php?f=18&t=2350
jimmyrobert_93 wrote:I tried connecting a wired XB1 controller to it, but my computer isn't recognizing the controller being plugged in.
What do I need to do to fix this?
Doxy wrote:Quick question. Is there a way to randomize a script? For example: I press a button and a random script from a list of scripts will be executed.
Thanks.
int x;
main {
if(event_press(XB1_UP)) x = irand(1,5);
if(x == 1) { } // do stuff
else if(x == 2) { } //do other stuff
}
Mad wrote:Doxy wrote:Quick question. Is there a way to randomize a script? For example: I press a button and a random script from a list of scripts will be executed.
Thanks.
You can use the irand function
- Code: Select all
int x;
main {
if(event_press(XB1_UP)) x = irand(1,5);
if(x == 1) { } // do stuff
else if(x == 2) { } //do other stuff
}
https://www.consoletuner.com/kbase/math ... .htm#irand
if (event_press(PS4_TOUCH))x = irand(1,4);{
combo_stop(c_BDash1);
combo_stop(c_BDash);
combo_stop(c_Tap_11);
combo_stop(c_SSUP);
combo_stop(c_SSDOWN);
if(x == 1) {
combo_run(GiantSWING);
}
else if(x == 2) {
combo_run(Tombstone);
}
else if(x == 3){
combo_run(GS2);
}
else if(x == 4){
combo_run(Muscle);
}
int x;
main {
if(event_press(PS4_TOUCH)) {
combo_stop(GiantSWING);
combo_stop(Tombstone);
combo_stop(GS2);
combo_stop(Muscle);
x = irand(1, 4);
}
if(x == 1) {
combo_run(GiantSWING);
}
else if(x == 2) {
combo_run(Tombstone);
}
else if(x == 3){
combo_run(GS2);
}
else if(x == 4){
combo_run(Muscle);
}
}
combo GiantSWING {
//
// COMBO CODE HERE
//
}
combo Tombstone {
//
// COMBO CODE HERE
//
}
combo GS2 {
//
// COMBO CODE HERE
//
}
combo Muscle {
//
// COMBO CODE HERE
//
}
therealkkayy wrote:My titan one came in the mail today i tried to connect it to my pc and it won’t work
i changed my cord and i put it in program but it still won’t work so what do i do now ?