FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
Tut: Rock Band Guitar In GH3 PC (NO MORE JOY TO KEY)
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
 
Post new topic   Reply to topic    ScoreHero Forum Index -> Hardware
View previous topic :: View next topic  
Author Message
jdog12345  





Joined: 24 Feb 2008
Posts: 3

PostPosted: Thu Feb 28, 2008 4:26 am    Post subject: Reply with quote

kdb424 wrote:
I recommend just setting the whammy to a key in Joy to Key, because it's just so much easier. I'd post my setup now, but do you have the 360 guitar or the ps2/3?


Thanks for the reply. I have the 360 guitar. By the way I got it work by setting the whammy to a key. Good advice. Thanks again. You rock! Literally! :-)
Back to top
View user's profile Send private message
kdb424  





Joined: 20 Aug 2007
Posts: 595

PostPosted: Thu Feb 28, 2008 7:04 pm    Post subject: Reply with quote

Glad that you got it working! LETS ALL ROCK!!! Any suggestions for add on's or anything? What do you want? I want to do more.
Back to top
View user's profile Send private message
kdb424  





Joined: 20 Aug 2007
Posts: 595

PostPosted: Thu Feb 28, 2008 8:56 pm    Post subject: Reply with quote

NEW SCRIPT FOR XBOX 360 USERS ONLY!!! NO MORE JOY TO KEY FOR YOU!!


Code:

/*
          //////////         ///////////       //////////   //       //
         //        //      //          //    //             //      //
         //        //      //          //    //             //    //
         //      //        //          //    //             //  //
         /////////         //          //    //             ////  \\
         //      \\        //          //    //             //     \\
         //       \\       //          //    //             //      \\
         //        \\       ///////////        //////////   //       \\
         //         \\

         //////////            //\\          ////        //   ////////////
         //       //          //  \\         // //       //   //         \\
         //        //        //    \\        //  //      //   //          \\
         //       //        //      \\       //   //     //   //           ||
         /////////         //        \\      //    //    //   //           ||
         //       //      ///////\\\\\\\     //     //   //   //           ||
         //        //    //            \\    //      //  //   //          //
         //       //    //              \\   //        ////   //        //
         /////////     //                \\  //          //   //////////

                                                                              */
    ////////////////////////////////////////////////////////////////////////
    //                                                                    //
    //  THIS WILL WORK FOR ALL ROCK BAND GUITARS, FOR ANY SYSTEM.         //
    //                                                                    //
    // Set the buttons of the rock band controller to this in GH3 PC      //
    //   Green = g                                                        //
    //   Red = r                                                          //
    //   Yellow = y                                                       //
    //   Blue = b                                                         //
    //   Orange = o                                                       //
    //   Pick up = p                                                      //
    //   Pick down = l                                                    //
    //   Starpower = space bar                                            //
    //                                                                    //
    ////////////////////////////////////////////////////////////////////////

    ////////////////////////////////////////////////////////////////////////
    //                                                                    //
    //  The tapping buttons work the same as rock band. They only strum   //
    //  if you press a button higher than previously held.                //
    //  ex. GRGRGRGR will only strum on red, if green is held down        //
    //                                                                    //
    //  You can have starpower auto activate by holding select/back       //
    //  down for two seconds. There will be a voice telling you if it     //
    //  is turned on or off. (Can be removed, see text in that section.   //
    //  Any more questions, comments, feel free to email me at            //
    //  kdb424@gmail.com                                                  //
    //                                                                    //
    ////////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////////////////


  ///////////////////////////
  //                       //
  //     Tapping Check     //
  //                       //
  ///////////////////////////

if key.t = false
var.buttons = 0
var.temp = 0
wait 7ms
endif

////////////////////////////////////////////////////////////////////////////////


  ///////////////////////////
  //                       //
  //     Button Presses    //
  //                       //
  ///////////////////////////

//None Pressed
if key.o = false
if key.b = false
if key.y = false
if key.r = false
if key.g = false then
var.buttons = 0
endif
endif
endif
endif
endif

if key.t = true
//Green Working: If green is the highest button pressed.
if key.o = false
if key.b = false
if key.y = false
if key.r = false
if key.g = true then
var.buttons = 1
endif
endif
endif
endif
endif

//Red Working: If red is the highest button pressed.
if key.o = false
if key.b = false
if key.y = false
if key.r = true then
var.buttons = 2
endif
endif
endif
endif

//Yellow Working: If yellow is the highest button pressed.
if key.o = false
if key.b = false
if key.y = true then
var.buttons = 3
endif
endif
endif


//Blue Working: If blue is the highest button pressed.
if key.o = false
if key.b = true then
var.buttons = 4
endif
endif

//Orange Working: If orange is the highest button pressed.
if key.o = true then
var.buttons = 5
endif




////////////////////////////////////////////////////////////////////////////////

  ///////////////////////////
  //                       //
  //     Tapping Mode      //
  //                       //
  ///////////////////////////


//Tapping Starts Here With Temp var check
if var.buttons != var.temp

if var.temp <var> var.buttons
//If you release a button
var.temp = var.buttons
endif
endif

endif



////////////////////////////////////////////////////////////////////////////////
// Cheating below here. Remove if you want to play fair.                      //
////////////////////////////////////////////////////////////////////////////////

  ///////////////////////////
  //                       //
  //     Auto Starpower    //
  //                       //
  ///////////////////////////

if var.autostarpower = 1
key.space = true
wait 7ms
key.space = false
endif

if key.q = true
key.space = true
wait 2s
key.space = false
if key.q = true
if var.autostarpower = 0
say ("Auto Starpower ON") //Remove this line to remove speach
var.autostarpower = 1
elseif var.autostarpower = 1
say ("Auto Starpower OFF")//Remove this line to remove speach
var.autostarpower = 0
endif
endif
endif



////////////////////////////////////////////////////////////////////////////////

  ///////////////////////////
  //                       //
  //    Voice Starpower    //
  //                       //
  ///////////////////////////

key.Space = said("starpower")

////////////////////////////////////////////////////////////////////////////////


key.w = joy1.xrotation > 0
key.space = joy1.yrotation < 0
key.p = joy1.Pov1up
key.l = joy1.Pov1down
key.right = joy1.Pov1right
key.left = joy1.pov1left
key.g = joy1.button1
key.r = joy1.button2
key.b = joy1.button3
key.y = joy1.button4
key.o = joy1.button5
key.q & key.backspace = joy1.button7
key.escape = joy1.button8
key.t = joy1.button9



Someone that uses the ps2/3 version please send me your joy to key configuration and I'll make one for ps2/3 also
Back to top
View user's profile Send private message
jimmers  





Joined: 01 Mar 2008
Posts: 6

PostPosted: Sun Mar 02, 2008 5:18 pm    Post subject: Reply with quote

Awesome, thanks for all the help in this thread!
Back to top
View user's profile Send private message
jimmers  





Joined: 01 Mar 2008
Posts: 6

PostPosted: Mon Mar 03, 2008 1:27 am    Post subject: Reply with quote

I have a 360 RB guitar, and I can't get my whammy bar to work in GH3. Any ideas? In JoyToKey I have more then 2 axis enabled, and I've tried every axis, but can't get it to work.
Back to top
View user's profile Send private message
kdb424  





Joined: 20 Aug 2007
Posts: 595

PostPosted: Mon Mar 03, 2008 3:06 am    Post subject: Reply with quote

Use my new script for glovepie for the rock band guitars for 360, and use the whammy bar as a button, and just set all of the controls in the game with the guitar itself.
Back to top
View user's profile Send private message
jimmers  





Joined: 01 Mar 2008
Posts: 6

PostPosted: Mon Mar 03, 2008 3:47 am    Post subject: Reply with quote

kdb424 wrote:
Use my new script for glovepie for the rock band guitars for 360, and use the whammy bar as a button, and just set all of the controls in the game with the guitar itself.


So your saying I don't need to use JoyToKey? If I don't have it running my guitar doesnt work. What key should the whammy bar be set to? All my other buttons work fine. Thanks for your help!
Back to top
View user's profile Send private message
kdb424  





Joined: 20 Aug 2007
Posts: 595

PostPosted: Mon Mar 03, 2008 8:36 pm    Post subject: Reply with quote

I updated the script not that long ago. Make sure that you use the new one, and you won't need joy to key. Whammy I think is set to w, but to make it work, make sure you configure all of the axises in the game controller menu in windows. You can just press down on the whammy bar and it should make it set it as a key, and if it doesn't, than it won't work without configuring it.
Back to top
View user's profile Send private message
Liljericho  





Joined: 31 Aug 2007
Posts: 18

PostPosted: Mon Mar 03, 2008 11:40 pm    Post subject: Reply with quote

i have the xbox 360 RB guitar and i pasted the script in glovepie and ran it

opened up the game and nothing happens in the configuration when i try to use the guitar...

and nothing happens in notepad when i use the guitar...

do i still need to use joy to key or something?
Back to top
View user's profile Send private message
kdb424  





Joined: 20 Aug 2007
Posts: 595

PostPosted: Tue Mar 04, 2008 1:04 am    Post subject: Reply with quote

http://www.mediafire.com/?nmotuxneyue

That is a link to my joy to key config for the 360 version. Someone please upload there ps2/3 one. PLEASE!! It should work. I used the script myself, and I don't know why it isn't working. Did you press run? That is the part that everyone forgets.
Back to top
View user's profile Send private message
jimmers  





Joined: 01 Mar 2008
Posts: 6

PostPosted: Tue Mar 04, 2008 2:06 am    Post subject: Reply with quote

kdb424 wrote:
I updated the script not that long ago. Make sure that you use the new one, and you won't need joy to key. Whammy I think is set to w, but to make it work, make sure you configure all of the axises in the game controller menu in windows. You can just press down on the whammy bar and it should make it set it as a key, and if it doesn't, than it won't work without configuring it.


Thanks for your help but it's not working. I tried the new script and it doesnt work. The only way I can get it to work is to use JoyToKey, but my whammy bar still doesnt work. Windows game controller control panel doesnt assign it a key, its just the x rotation.
Back to top
View user's profile Send private message
kdb424  





Joined: 20 Aug 2007
Posts: 595

PostPosted: Tue Mar 04, 2008 8:36 pm    Post subject: Reply with quote

Joy to hey makes it a keystroke when you use it. Did you try my config? has ANYONE gotten my new script to work? And will someone please post a button, and analog config or description for the ps2/3 guitars, because I want to make a script for them too. Also. Do you have more than one joystick on your computer? That would through the script off.
Back to top
View user's profile Send private message
jimmers  





Joined: 01 Mar 2008
Posts: 6

PostPosted: Wed Mar 05, 2008 5:30 pm    Post subject: Reply with quote

kdb424 wrote:
Joy to hey makes it a keystroke when you use it. Did you try my config? has ANYONE gotten my new script to work? And will someone please post a button, and analog config or description for the ps2/3 guitars, because I want to make a script for them too. Also. Do you have more than one joystick on your computer? That would through the script off.


I only have the one controller plugged in. I can't get your script to work without using JoyToKey.
Back to top
View user's profile Send private message
kdb424  





Joined: 20 Aug 2007
Posts: 595

PostPosted: Wed Mar 05, 2008 7:52 pm    Post subject: Reply with quote

That's weird. Works great for me. I have no idea why it wouldn't. Sorry about that. Hows it working for others. Does no one come back to this topic EVER? Sept you that is. I'll try working on it. Tapping and everything else works ok though?
Back to top
View user's profile Send private message
jimmers  





Joined: 01 Mar 2008
Posts: 6

PostPosted: Thu Mar 06, 2008 12:12 am    Post subject: Reply with quote

kdb424 wrote:
That's weird. Works great for me. I have no idea why it wouldn't. Sorry about that. Hows it working for others. Does no one come back to this topic EVER? Sept you that is. I'll try working on it. Tapping and everything else works ok though?


Ya, everything else works great! Don't get me wrong, I'm not complaining about it. You've obviously put alot of work into this and I really appreciate it. Thanks for your help!
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    ScoreHero Forum Index -> Hardware All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
Page 4 of 10

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum





Copyright © 2006-2024 ScoreHero, LLC
Terms of Use | Privacy Policy


Powered by phpBB