Go Back   Flash Flash Revolution > Flash Flash Revolution > FFR General Talk
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
Old 07-16-2007, 02:46 PM   #1
Kekeb
davai
FFR Veteran
 
Kekeb's Avatar
 
Join Date: Dec 2006
Age: 35
Posts: 2,765
Default Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

PLEASE NOTE that this guide is for the Xbox360 guitar ONLY, thank you.

asdf. This is a guide to set up your guitar hero 2 guitar to play FFR. FFR acts like a Guitar Hero simulator. I thought about it, and I love both of the games so I might as well mesh them together. Play with the notes scrolling downward and you've got some cheap form of Guitar Hero.(ofcourse without holds and star power etc.) I use a program called AutoHotKey, and I made a script to register keys/strums from the X-plorer controller. So I will go step by step on how to get this effect. Trust me this is quite fun once you've got it set up.

Step 1: The Driver

So you've got your X-plorer guitar controller plug it in through the USB and well, it doesn't work. That's because you need the driver. The driver helps other programs(in this case auto hot key) communicate with the device, also identify it. Alright, so you need to download it. I've only found a Windows compatible driver.

Driver Download (click the words to download)
Windows XP - SP 1 or higher
Windows XP - 64 bit
Windows Vista - 32 Bit
Windows Vista - 64 Bit

Save the file somewhere, and remember where you saved it. I myself saved it to the desktop. When the download is done go to where you saved it and double click it, or right click it and press Open.



So when the program opens it will extract some files.


Anyone who wants to know I'm using Vista Inspirat 2 theme -_-.

I digress, so when it's done extracting a window will come up. Check the check box beside 'I accept this agreement' then click the 'Next' button.



It will then install the driver, then a finished screen will come up. Click the 'Finish' button.



Once you click that button, you're done installing the driver. A message box will pop up, asking if you would like to restart your computer. It is recommended that you do restart your computer.

Step 2: Plug it in

Ok, so you have your driver installed, and you've perhaps restarted your computer. Now plug in your guitar hero controller into a USB port. Now from here this may be different for you, so you're going to have to do it all on your end. I'm using windows XP SP 2, and when i plugged the controller in it verified it as an X-plorer controller. I waited a minute and the power light on the guitar was on. You may have to run the New Hardware wizard (it will popup on it's own i believe).

Step 3: Auto Hot Key

Alright, in this step you need to download and install AutoHot Key. This is the program that will be taking your controller's actions, and turning them into pressing the arrow keys.(using the script i will give you)

The Download
Click HERE

Save the file somewhere, and remember where you saved it. Again, I myself would just save it to the desktop. Ok, so go to where you saved the file and double click it or right click and press open.



A window will pop up, click the next button.



Then click on I Agree.



Make sure the check boxes beside Main Program and Script Compiler are checked, then click next again .



Now choose a folder to extract the program. I chose C:\Program Files\AutoHotkey\. But it doesn't really matter. Then click install.

When it is done click finish. You now have Auto Hot Key installed hoorah .

Step 4: The Script

Now that you have AHK installed, we are almost done! Go to your desktop, then right click it. Roll over 'New' then click 'AutoHotKey Script'.



It will then ask you to rename the file, i would rename it to FFR-Guitar.ahk but it really depends on you.



Once you are done renaming it, right click it and press edit script. A word editing program should come up, in my case notepad.

Now, copy this code into your editor, and then press Ctrl-S or File->Save.
Code:
#Persistent
Setbatchlines -1
SetTimer, WatchPOV, 5
return

WatchPOV:
GetKeyState, POV, JoyPOV

if POV between 0 and 18000
if GetKeyState("Joy1")
{
  if GetKeyState("Joy2") ;Green and Red
  {
  Send {Left}
  Send {Down}
  if pov between 0 and 18000
    loop
    {
    getkeystate, state, JoyPOV
    if state < 0
    break
    }
  }
  else if GetKeyState("Joy4") ;Green and Yellow
  {
  Send {Left}
  Send {Up}
  if pov between 0 and 18000
    loop
    {
    getkeystate, state, JoyPOV
    if state < 0
    break
    }
  }
  else if getkeystate("Joy3") ;Green and Blue
  {
  Send {Left}
  Send {Right}
  if pov between 0 and 18000
    loop
    {
    getkeystate, state, JoyPOV
    if state < 0
    break
    }
  }
  else                        ;Just Green
  {
  Send {Left}
  if pov between 0 and 18000
    loop
    {
    getkeystate, state, JoyPOV
    if state < 0
    break
    }
}
}
else if GetKeyState("Joy2")
{
  if getkeystate("Joy4") ; Red and Yellow
  {
  Send {Down}
  Send {Up}
  if pov between 0 and 18000
    loop
    {
    getkeystate, state, JoyPOV
    if state < 0
    break
    }
  }
  else if getkeystate("Joy3") ;Red and Blue
  {
  Send {Down}
  Send {Right}
  if pov between 0 and 18000
    loop
    {
    getkeystate, state, JoyPOV
    if state < 0
    break
    }
  }
  else  ;Just Red
  {
  Send {Down}
  if pov between 0 and 18000
    loop
    {
      getkeyState, state, JOYPOV
      if state < 0
        break
    }
}
}
else if GetKeyState("Joy4")
{
  if getkeystate("Joy3") ;Yellow and Blue
  {
  Send {Up}
  Send {Right}
  if pov between 0 and 18000
    loop
    {
    getkeystate, state, JoyPOV
    if state < 0
      break
    }
  }
  else
  {
  Send {Up} ;just Yellow
  if pov between 0 and 18000
  loop
    {
    getkeyState, state, JOYPOV
    if state < 0
      break
    }
}
}
Else if getkeystate("Joy3") ;just blue
{
  Send {Right}
  if pov between 0 and 18000
    loop
    {
    getkeyState, state, JOYPOV
    if state < 0
     break
    }
  }
Step 5 - Running The Script

Ok, one last step. All you need to do is double click the script or right click and press run script. A little icon on the bottom right should show up, it's a capital H. This shows the script is running. Now if you get any errors post here, but i doubt you will.

Extra Information, tips, W/E

- Controls -



- How to Play -

To use the guitar, you can't just press the fret buttons, and it would register the note, you have to hold down the one or two of the frets, then strum using the Strum Bar. EDIT: The script supports strumming upwards now.

- Tips -

To get the most realistic play to Guitar Hero(like it's not far off enough already) is to reverse the flow of notes. Make the notes flow down rather than up.

- Credits -
The guide - Myself
The script - Myself with help from the AHK forum.

Last edited by Kekeb; 03-26-2009 at 02:44 PM..
Kekeb is offline   Reply With Quote
Old 07-16-2007, 02:49 PM   #2
dore
caveman pornstar
Retired StaffFFR Simfile AuthorFFR Music ProducerFFR Veteran
 
dore's Avatar
 
Join Date: Feb 2006
Location: ridin on a unicorn
Age: 35
Posts: 6,317
Send a message via AIM to dore
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Put in upstrumming and this would be awesome.
dore is offline   Reply With Quote
Old 07-16-2007, 02:52 PM   #3
jellygod
FFR Player
FFR Veteran
 
jellygod's Avatar
 
Join Date: Jan 2007
Location: Michigan
Age: 36
Posts: 1,703
Send a message via AIM to jellygod Send a message via Skype™ to jellygod
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

cool , too bad i dont have a 360 or gh2
__________________

RETIRED
___________________________
Best AAAs- Monstrous Turtles, Get down
Styles- index,spread
Tier Points: 148
Rank 8 in regional ranking(Great Lakes)
"Never argue with stupid people, they drag you down to their level and beat you with experience."
jellygod is offline   Reply With Quote
Old 07-16-2007, 02:55 PM   #4
Kekeb
davai
FFR Veteran
 
Kekeb's Avatar
 
Join Date: Dec 2006
Age: 35
Posts: 2,765
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Quote:
Originally Posted by dore View Post
Put in upstrumming and this would be awesome.
EDIT: Alright upstrumming works, no lag on my end.

Last edited by Kekeb; 07-16-2007 at 03:06 PM..
Kekeb is offline   Reply With Quote
Old 07-16-2007, 03:08 PM   #5
thechild
FFR Player
 
Join Date: Feb 2007
Location: Hmmmmmmmmmm Style: Spread
Posts: 1,642
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Im doing it right now.
thechild is offline   Reply With Quote
Old 07-16-2007, 03:17 PM   #6
Kekeb
davai
FFR Veteran
 
Kekeb's Avatar
 
Join Date: Dec 2006
Age: 35
Posts: 2,765
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Quote:
Originally Posted by thechild View Post
Im doing it right now.
Have fun .
Kekeb is offline   Reply With Quote
Old 07-16-2007, 03:27 PM   #7
Cyanite
SIT THE **** DOWN.
FFR Simfile AuthorFFR Veteran
 
Cyanite's Avatar
 
Join Date: Feb 2007
Age: 35
Posts: 1,174
Send a message via AIM to Cyanite
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

I can see AIM Anthem being much, much easier with this

Lack of HO/PO's though would ruin it. It's very hard to play even 8th note streams while alt-strumming, it's too much to focus on usually..

Cool guide either way
__________________


Quote:
Originally Posted by KgZ View Post
oh yeah girls love it when I stick my massive arm in their mouth
Cyanite is offline   Reply With Quote
Old 07-16-2007, 03:29 PM   #8
ELRayford
Custom User Title
FFR Veteran
 
ELRayford's Avatar
 
Join Date: May 2004
Age: 41
Posts: 1,547
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

nice work kekeb simply amazing
ELRayford is offline   Reply With Quote
Old 07-16-2007, 03:34 PM   #9
Shashakiro
TWO THOUZAND COMBO
Retired StaffFFR Simfile AuthorFFR Veteran
 
Shashakiro's Avatar
 
Join Date: Aug 2005
Location: Booflagville
Age: 37
Posts: 9,082
Send a message via AIM to Shashakiro
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

I'd like to make it perfecty clear now: This is CHEATING if you use it on anything with jacks (or anything at all, but jacks especially) to beat your normal score. Jacks are about a thousand times easier on GH and it would be massively unfair to allow this here, since Revo comes instantly to mind as a song that would be very FC'able with this (along with others, but Revo would be by far the worst).

Aside from that, this is pretty incredibly awesome. Do it for PS2 guitar? =D
__________________
4th Official FFR Tournament - Master division champion!

Quote:
Originally Posted by Boogiebear
use ur bain. Itz there for a reason.
Shashakiro is offline   Reply With Quote
Old 07-16-2007, 03:38 PM   #10
Loyal2Death
FFR Veteran
FFR Veteran
 
Join Date: Jun 2004
Location: New Jersey
Posts: 1,032
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Quote:
Originally Posted by Shashakiro View Post
I'd like to make it perfecty clear now: This is CHEATING if you use it on anything with jacks (or anything at all, but jacks especially) to beat your normal score. Jacks are about a thousand times easier on GH and it would be massively unfair to allow this here, since Revo comes instantly to mind as a song that would be very FC'able with this (along with others, but Revo would be by far the worst).

Aside from that, this is pretty incredibly awesome. Do it for PS2 guitar? =D
I don't see why it would be any different if you got a USB adapter for a PS2 Guitar. They should be similar.
__________________


Are you Loyal?
Nows the time to choose
Die and be free of pain.
Or live and fight your sorrow.
Loyal2Death is offline   Reply With Quote
Old 07-16-2007, 03:38 PM   #11
Snapps
NO DOUBT GET LOUD
FFR Simfile Author
 
Snapps's Avatar
 
Join Date: Sep 2003
Location: California
Age: 35
Posts: 5,650
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Well that's interesting.
Snapps is offline   Reply With Quote
Old 07-16-2007, 03:39 PM   #12
Kekeb
davai
FFR Veteran
 
Kekeb's Avatar
 
Join Date: Dec 2006
Age: 35
Posts: 2,765
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

I'm pretty sure you can get PS2 to USB adapters. But i don't know the Joy numbers. So if anyone that has a PS2 guitar and ps2/usb adapter could message me that would be awesome. Also, i was going to message an admin about this because i realize people can cheat using this. So if an admin wants it down, it's fine with me. @ loyal 2 death, the joy pad numbers are different, and that's about the only thing.
Kekeb is offline   Reply With Quote
Old 07-16-2007, 03:40 PM   #13
dore
caveman pornstar
Retired StaffFFR Simfile AuthorFFR Music ProducerFFR Veteran
 
dore's Avatar
 
Join Date: Feb 2006
Location: ridin on a unicorn
Age: 35
Posts: 6,317
Send a message via AIM to dore
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Quote:
Originally Posted by Loyal2Death View Post
I don't see why it would be any different if you got a USB adapter for a PS2 Guitar. They should be similar.
The driver only works for the 360 controller.
dore is offline   Reply With Quote
Old 07-16-2007, 03:42 PM   #14
Kekeb
davai
FFR Veteran
 
Kekeb's Avatar
 
Join Date: Dec 2006
Age: 35
Posts: 2,765
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Quote:
Originally Posted by dore View Post
The driver only works for the 360 controller.
Just download a PS2 driver .
Kekeb is offline   Reply With Quote
Old 07-16-2007, 03:54 PM   #15
Tasselfoot
Retired BOSS
Retired StaffFFR Simfile AuthorFFR Veteran
 
Tasselfoot's Avatar
 
Join Date: Jul 2003
Location: Widget Heaven
Age: 42
Posts: 25,185
Send a message via AIM to Tasselfoot Send a message via MSN to Tasselfoot Send a message via Skype™ to Tasselfoot
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

also.... are the arrows not backwards? or is that just because i'm left-handed, and therefore want to hold the shaft with my right hand, and hit the buttons with my right hand.


also... i don't get how it makes jacks easier. then again, i've never played GH. explain?
__________________
RIP
Tasselfoot is offline   Reply With Quote
Old 07-16-2007, 03:58 PM   #16
Kekeb
davai
FFR Veteran
 
Kekeb's Avatar
 
Join Date: Dec 2006
Age: 35
Posts: 2,765
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Lol, what do you mean by backwards.
Kekeb is offline   Reply With Quote
Old 07-16-2007, 03:58 PM   #17
_pandaman_
FFR Player
FFR Veteran
 
_pandaman_'s Avatar
 
Join Date: Jun 2005
Posts: 479
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Quote:
Originally Posted by Tasselfoot View Post
also.... are the arrows not backwards? or is that just because i'm left-handed, and therefore want to hold the shaft with my right hand, and hit the buttons with my right hand.


also... i don't get how it makes jacks easier. then again, i've never played GH. explain?
you can double strum (strum up and down repetitively) to hit the same not in succession while just holding down one of the buttons.

Lets just say it would make guillame Tell Oni look like cake.

kekeb: he means he wants to play lefty flip
__________________

_pandaman_ is offline   Reply With Quote
Old 07-16-2007, 04:01 PM   #18
Kekeb
davai
FFR Veteran
 
Kekeb's Avatar
 
Join Date: Dec 2006
Age: 35
Posts: 2,765
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Quote:
Originally Posted by _pandaman_ View Post
you can double strum (strum up and down repetitively) to hit the same not in succession while just holding down one of the buttons.

Lets just say it would make guillame Tell Oni look like cake.

kekeb: he means he wants to play lefty flip
Yeah i thought about it after i started to play lmao
Kekeb is offline   Reply With Quote
Old 07-16-2007, 04:02 PM   #19
_pandaman_
FFR Player
FFR Veteran
 
_pandaman_'s Avatar
 
Join Date: Jun 2005
Posts: 479
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

if we get it to work with ps2 controllers, im making an alt account.
__________________

_pandaman_ is offline   Reply With Quote
Old 07-16-2007, 04:04 PM   #20
Kekeb
davai
FFR Veteran
 
Kekeb's Avatar
 
Join Date: Dec 2006
Age: 35
Posts: 2,765
Default Re: Guitar Hero Revolution - Using the GH2 Xbox360 controller to play FFR

Quote:
Originally Posted by _pandaman_ View Post
if we get it to work with ps2 controllers, im making an alt account.
We need a wired GH guitar, and someone with an adapter: http://www.merconnet.com/product_inf...products_id=44 But even if you want to play, you need an adapter.
Kekeb is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT -5. The time now is 06:27 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Copyright FlashFlashRevolution