Two Plus Two Publishing LLC Two Plus Two Publishing LLC
 

Go Back   Two Plus Two Poker Forums > Internet Poker > Software

Notices

Software Discussions about gambling-related and poker software.

Reply
 
Thread Tools Display Modes
Old 06-05-2009, 05:46 AM   #46
Carpal \'Tunnel
 
subandi's Avatar
 
Join Date: Jun 2007
Location: working
Posts: 7,054
Re: Xbox 360 controller as a mouse with AHK?

this should help, if you press any button on your controller it will tell you its "name"


Code:
; Joystick Test Script
; http://www.autohotkey.com
; This script helps determine the button numbers and other attributes
; of your joystick. It might also reveal if your joystick is in need
; of calibration; that is, whether the range of motion of each of its
; axes is from 0 to 100 percent as it should be. If calibration is
; needed, use the operating system's control panel or the software
; that came with your joystick.

; July 6, 2005: Added auto-detection of joystick number.
; May 8, 2005 : Fixed: JoyAxes is no longer queried as a means of
; detecting whether the joystick is connected.  Some joysticks are
; gamepads and don't have even a single axis.

; If you want to unconditionally use a specific joystick number, change
; the following value from 0 to the number of the joystick (1-32).
; A value of 0 causes the joystick number to be auto-detected:
JoystickNumber = 0

; END OF CONFIG SECTION. Do not make changes below this point unless
; you wish to alter the basic functionality of the script.

; Auto-detect the joystick number if called for:
if JoystickNumber <= 0
{
	Loop 32  ; Query each joystick number to find out which ones exist.
	{
		GetKeyState, JoyName, %A_Index%JoyName
		if JoyName <>
		{
			JoystickNumber = %A_Index%
			break
		}
	}
	if JoystickNumber <= 0
	{
		MsgBox The system does not appear to have any joysticks.
		ExitApp
	}
}

#SingleInstance
SetFormat, float, 03  ; Omit decimal point from axis position percentages.
GetKeyState, joy_buttons, %JoystickNumber%JoyButtons
GetKeyState, joy_name, %JoystickNumber%JoyName
GetKeyState, joy_info, %JoystickNumber%JoyInfo
Loop
{
	buttons_down =
	Loop, %joy_buttons%
	{
		GetKeyState, joy%a_index%, %JoystickNumber%joy%a_index%
		if joy%a_index% = D
			buttons_down = %buttons_down%%a_space%%a_index%
	}
	GetKeyState, joyx, %JoystickNumber%JoyX
	axis_info = X%joyx%
	GetKeyState, joyy, %JoystickNumber%JoyY
	axis_info = %axis_info%%a_space%%a_space%Y%joyy%
	IfInString, joy_info, Z
	{
		GetKeyState, joyz, %JoystickNumber%JoyZ
		axis_info = %axis_info%%a_space%%a_space%Z%joyz%
	}
	IfInString, joy_info, R
	{
		GetKeyState, joyr, %JoystickNumber%JoyR
		axis_info = %axis_info%%a_space%%a_space%R%joyr%
	}
	IfInString, joy_info, U
	{
		GetKeyState, joyu, %JoystickNumber%JoyU
		axis_info = %axis_info%%a_space%%a_space%U%joyu%
	}
	IfInString, joy_info, V
	{
		GetKeyState, joyv, %JoystickNumber%JoyV
		axis_info = %axis_info%%a_space%%a_space%V%joyv%
	}
	IfInString, joy_info, P
	{
		GetKeyState, joyp, %JoystickNumber%JoyPOV
		axis_info = %axis_info%%a_space%%a_space%POV%joyp%
	}
	ToolTip, %joy_name% (#%JoystickNumber%):`n%axis_info%`nButtons Down: %buttons_down%`n`n(right-click the tray icon to exit)
	Sleep, 100
}
return
subandi is offline   Reply With Quote
Old 07-14-2009, 12:15 AM   #47
old hand
 
jim_money's Avatar
 
Join Date: Mar 2009
Posts: 1,421
What kind of xpadder setup do you use?

I've had an xbox for a while but just decided to try it on the computer. I'm using it in conjunction with the stars hotkey program and I'm really impressed. Makes it so much more comfortable and easy to play.

Anyways, I was wondering what hotkeys you guys use. Right now I have :

Left trigger: fold
Right trigger: Check/call
Right thumbstick: Raise/lower bet amount
A button: Bet

Obviously this is a pretty basic configuration so I'm looking for some tricks to make my life easier. One thing I would want to do is move the active table to a corner of my screen so I can monitor the outcome of a hand. I'm not sure if I can do this with Stars hotkeys, but I'm too cheap to pay for table ninja so oh well.
jim_money is offline   Reply With Quote
Old 07-22-2009, 04:43 PM   #48
enthusiast
 
Join Date: Nov 2006
Posts: 91
Xpadder working with Xbox 360 Keypad

I am trying to get the xbox live keypad that attaches to the Xbox360 controller to work with xpadder but can't really figure it out.

Has anyone done this yet or know how to do it?

Thx
Matix
Matixboy is offline   Reply With Quote
Old 08-04-2009, 02:22 AM   #49
enthusiast
 
Join Date: Nov 2006
Posts: 91
Re: Xpadder working with Xbox 360 Keypad

Anyone know?
Matixboy is offline   Reply With Quote
Old 08-04-2009, 09:18 PM   #50
Pooh-Bah
 
Join Date: Jul 2006
Location: aggro donk + station
Posts: 3,522
xbox 360 controller

is there a way to set up my xbox 360 controller to act as a mouse/poker tool?

i would like the two toggles to be a mouse and to be like a mouse scroll up. and then obviously some buttons to be bet and fold call etc.
effang is offline   Reply With Quote
Old 08-04-2009, 09:37 PM   #51
adept
 
digit's Avatar
 
Join Date: Jun 2007
Posts: 1,102
Re: xbox 360 controller

http://xpadder.com/

It's $10 to buy, but I know there are free programs that do the same thing, just can't remember their names!
digit is offline   Reply With Quote
Old 08-05-2009, 06:01 AM   #52
Carpal \'Tunnel
 
jukofyork's Avatar
 
Join Date: Sep 2004
Posts: 10,213
Re: Xbox 360 controller as a mouse with AHK?

I know the posts I've moved here aren't 100% specific to using an Xbox 360 controller with AHK, but in the last couple of weeks we've had 4 OPs about this that have gone pretty much unanswered. This thread on the other hand was very active and is prolly the best place to get some help with this (asking in the CTH forum might also be a good idea if you get no help in here either).

Juk
jukofyork is offline   Reply With Quote
Old 09-27-2009, 03:43 PM   #53
2010 O8 forum HU PLO8 champ
 
orangepeel's Avatar
 
Join Date: Jul 2006
Location: Shelby, OH
Posts: 370
Using an xbox controller to multitable

I have an autohotkey program I am using to multitable with my keyboard. Is there any way to use an xbox controller to hit those buttons?
orangepeel is offline   Reply With Quote
Old 10-13-2009, 11:45 PM   #54
journeyman
 
Join Date: Nov 2008
Posts: 276
Re: Xbox 360 controller as a mouse with AHK?

I',m not a gamer, so I don't already have a game controller.

What brand/model game controller would you suggest I buy that both works well with xpadder and would be good for online poker?

Thanks!
full_house_fan is offline   Reply With Quote
Old 10-22-2009, 08:01 PM   #55
banned
 
Bukoo's Avatar
 
Join Date: Sep 2009
Location: House
Posts: 671
Re: Xbox 360 controller as a mouse with AHK?

can you guys tell me the name for arrow pads? I set up joy1 through 9 but I cannot find a valid name for the arrow pads. I searched google and did not yield a good result.

I am using stars hotkeys btw.
Bukoo is offline   Reply With Quote
Old 10-22-2009, 08:42 PM   #56
newbie
 
Join Date: Jan 2008
Posts: 27
Re: Xbox 360 controller as a mouse with AHK?

its something like JoyPOV. i haven't used my xbox controller in a while, but try googling that.
first.hander is offline   Reply With Quote
Old 10-22-2009, 09:02 PM   #57
veteran
 
Join Date: Jul 2007
Posts: 2,225
Re: Xbox 360 controller as a mouse with AHK?

JoyToKey is free.

There is also a free version of Xpadder here which should do everything you need.

http://www.softpedia.com/get/System/.../Xpadder.shtml

Tarath
tarath is offline   Reply With Quote
Old 12-28-2009, 06:04 PM   #58
grinder
 
Join Date: Aug 2008
Location: stuck
Posts: 440
xpadder problem

So I got xpadder 5.3 installed and plugged my ps2 controller in using a usb adapter. Every time i thy to configure the controller it is recognized as guitar hero. So when I go left up right down it doesnt read as 4 axis. Like it never even registers when I move the left joystick to the left. It seems to recognize only 3 directions of the d pad also. I have installed uninstalled etc etc. So then I went to control panel and game controllers and it sees it as guitar hero as well.
By the way the controller is a gametech brand not a real ps2 but a clone. Also it is 3 years old but I opened the pack for the first time today. Any ideas? I have a DS3 playstation wireless controller here but I want to test the feel of the generic controller first. I have wrist problems and really want to test the controller on my pc to make sure it is good for my wrist before opening the wireless one. Here in sweden I paid just a hair under $100.00 for the controller and the Xbox 360 controller is special order only meaning cannot get before middle of january. So being not rich that is why I really want to be sure sony is good for me before I settle on the ps3 controller.

TLDR ?
Wrist problems.
Have open generic ps2 controller with usb adapter that keeps getting recognized as guitar hero.
Want to test generic controller before opening wireless I just bought. Maybe its no good and I must go xbox 360 route.
Sweden is expensive.
DatDerCelTec is offline   Reply With Quote
Old 12-31-2009, 09:40 PM   #59
newbie
 
Join Date: Aug 2009
Posts: 21
XPADDER

Is there a free version anymore?
Coach2009 is offline   Reply With Quote
Old 12-31-2009, 09:41 PM   #60
newbie
 
Join Date: Aug 2009
Posts: 21
Re: XPADDER

I use it with tableninja.
Coach2009 is offline   Reply With Quote

Reply
      

Thread Tools
Display Modes

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -4. The time now is 08:28 AM.


Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.
Copyright © 2008-2010, Two Plus Two Interactive