Yeah, I'm uploading this script now, I have to say my impressions of what this game would be for something made in two weeks are way off. This game is well made the controls are perfect, it's definitely a great platformer game. But whatever.
here is the text version:
//Controls for A Game with a Kitty 1 and 2
//Written by Tom Jones
//
//AGwaK1 Controls:
//If Classic Controller is in:
//Y-Button = Run
//B-Button = Jump
//Dpad = Move
//
//Without Classic Controller:
//One-Button = Run
//Two-Button = Jump
//Dpad = Move
//AGwaK2 Controls
//If Classic Controller is in:
//Y-Button = Shoot Fireballs
//B-Button = Jump
//Dpad or Joy1 = Move
//
//Without Classic Controller:
//One-Button = Shoot Fireballs
//Two-Button = Jump
//Dpad = Move
if Wiimote.HasClassic then
CTRL = Wiimote.Classic.y
Shift = Wiimote.Classic.b
Keyboard.ArrowKeys = Wiimote.Classic.Dpad
Keyboard.ArrowKeys = Wiimote.Classic.Joy1
endif
CTRL = Wiimote.One
Shift = Wiimote.Two
Keyboard.ArrowKeys = Wiimote.Dpad
Wiimote.Led1 = true
Here is the download version:
http://www.mediafire.com/?yetyeat9y1c
Have fun with this game.
Friday 25 July 2008
Thursday 24 July 2008
Cave Story Controls Script.
I haven't made a script or posted one in a while for 3 reasons:
1. I have been playing A Game with a Kitty and Cave Story so I have been distracted
2. I was thinking 'what's the point in updating this blog, it's not like anybody actually reads it...'
3. I ran out of ideas to make scripts from because I posted too many in such a short time so from now on I will limit the script posting to one per day, this is today's.
Woooh Cave Story, it is truly an amazingly fun game a bit hard albeit but still fun like nothing else, I (obviously) have been using my Classic controller to play this and AGwaK with.
Here is the text version:
// Cave Story controls script
// Written by Tom Jones
//
// B-Button = Jump
// Y-Button = Shoot
// L and R-Button = Change Weapons
// X-Button = Item Screen
// ZR-Button = Map
Keyboard.ArrowKeys = Wiimote.Classic.Dpad
Keyboard.ArrowKeys = Wiimote.Classic.Joy1
Z = Wiimote.Classic.b
X = Wiimote.Classic.y
A = Wiimote.Classic.L
S = Wiimote.Classic.R
Q = Wiimote.Classic.x
W = Wiimote.Classic.ZR
Wiimote.Led1 = true
Here is the download version:
http://www.mediafire.com/?nmhxxwbbljz
Thanks for downloading my script (wow I just realized how incredibly formal this is, from now on I wont say shit like this and I will type like a normal person... well as normal as I can get, seeya)
~Tom
1. I have been playing A Game with a Kitty and Cave Story so I have been distracted
2. I was thinking 'what's the point in updating this blog, it's not like anybody actually reads it...'
3. I ran out of ideas to make scripts from because I posted too many in such a short time so from now on I will limit the script posting to one per day, this is today's.
Woooh Cave Story, it is truly an amazingly fun game a bit hard albeit but still fun like nothing else, I (obviously) have been using my Classic controller to play this and AGwaK with.
Here is the text version:
// Cave Story controls script
// Written by Tom Jones
//
// B-Button = Jump
// Y-Button = Shoot
// L and R-Button = Change Weapons
// X-Button = Item Screen
// ZR-Button = Map
Keyboard.ArrowKeys = Wiimote.Classic.Dpad
Keyboard.ArrowKeys = Wiimote.Classic.Joy1
Z = Wiimote.Classic.b
X = Wiimote.Classic.y
A = Wiimote.Classic.L
S = Wiimote.Classic.R
Q = Wiimote.Classic.x
W = Wiimote.Classic.ZR
Wiimote.Led1 = true
Here is the download version:
http://www.mediafire.com/?nmhxxwbbljz
Thanks for downloading my script (wow I just realized how incredibly formal this is, from now on I wont say shit like this and I will type like a normal person... well as normal as I can get, seeya)
~Tom
Saturday 19 July 2008
GBA Controls Script.
My favourite emulated consoles are the GBA and Snes and I already have a Snes script, so here's my GBA script.
Here's the text version:
//Controls for the GBA
//Written by Tom Jones
//
//Controls(set your emulator accordingly):
//Y-Button = B
//B-Button = A
//Dpad or Joy = Arrow Keys
//Plus-Button = Enter
//Minus-Button = O
//L-Button = Q
//R-Button = P
B = Wiimote.Classic.Y
A = Wiimote.Classic.B
Keyboard.ArrowKeys = Wiimote.Classic.Dpad
Keyboard.ArrowKeys = Wiimote.Classic.Joy1
Enter = Wiimote.Classic.Plus
O = Wiimote.Classic.Minus
Q = Wiimote.Classic.L
P = Wiimote.Classic.R
Here is the download version:
http://www.mediafire.com/?enw5jvg1pvl
Thanks for downloading my script
~Tom
Here's the text version:
//Controls for the GBA
//Written by Tom Jones
//
//Controls(set your emulator accordingly):
//Y-Button = B
//B-Button = A
//Dpad or Joy = Arrow Keys
//Plus-Button = Enter
//Minus-Button = O
//L-Button = Q
//R-Button = P
B = Wiimote.Classic.Y
A = Wiimote.Classic.B
Keyboard.ArrowKeys = Wiimote.Classic.Dpad
Keyboard.ArrowKeys = Wiimote.Classic.Joy1
Enter = Wiimote.Classic.Plus
O = Wiimote.Classic.Minus
Q = Wiimote.Classic.L
P = Wiimote.Classic.R
Here is the download version:
http://www.mediafire.com/?enw5jvg1pvl
Thanks for downloading my script
~Tom
Atari 2600 Controls Script
You can press 1 and 2 to switch between the Joystick mode (you tilt the remote to act as a joystick) and Dpad mode where the Dpad represents the Arrow Keys.
Here is the text version:
//Written by Tom Jones
//
//Controls(set your emulator accordingly):
//Tilt Wiimote or Dpad = Arrow Keys
//B-Button = Z
//One-Button and Two-Button = switch between Joystick mode and Dpad mode
if var.Joystick = true then
Left = Wiimote.RawForceX >= 7.5
Right = Wiimote.RawForceX <=-7.5
Up = Wiimote.RawForceY >=7.5
Down = Wiimote.RawForceY <=-7.5
else
ArrowKeys = Wiimote.Dpad
endif
Z = Wiimote.B
Wiimote.Led1 = true
if Wiimote.One = true then
var.Joystick = true
endif
if Wiimote.Two = true then
var.Joystick = false
endif
Here is the Download version:
http://www.mediafire.com/?9ywox2xxmmm
Thanks for downloading my script
~Tom
Here is the text version:
//Written by Tom Jones
//
//Controls(set your emulator accordingly):
//Tilt Wiimote or Dpad = Arrow Keys
//B-Button = Z
//One-Button and Two-Button = switch between Joystick mode and Dpad mode
if var.Joystick = true then
Left = Wiimote.RawForceX >= 7.5
Right = Wiimote.RawForceX <=-7.5
Up = Wiimote.RawForceY >=7.5
Down = Wiimote.RawForceY <=-7.5
else
ArrowKeys = Wiimote.Dpad
endif
Z = Wiimote.B
Wiimote.Led1 = true
if Wiimote.One = true then
var.Joystick = true
endif
if Wiimote.Two = true then
var.Joystick = false
endif
Here is the Download version:
http://www.mediafire.com/?9ywox2xxmmm
Thanks for downloading my script
~Tom
Friday 18 July 2008
Control the Mouse With Your Wiimote Script.
Believe me it is really satisfying to sit back and control your mouse without having to lean forward, you will be dreading that moment when you have to type something.
here is the text version:
//Written by Tom Jones
//
//Controls:
//Dpad = Move the cursor
//A-Button = Left click
//Minus-Button = Right click
//B+Dpad = croll
mouse.DirectInput = mouse.DirectInput + wiimote.Dpad *6
mouse.leftbutton = wiimote.A
mouse.rightbutton = wiimote.minus
if wiimote.b = true
if wiimote.up = true then
mouse.wheelup = true
endif
if wiimote.down = true then
mouse.wheeldown = true
endif
if wiimote.left = true then
mouse.wheelleft = true
endif
if wiimote.right = true then
mouse.WheelRight = true
endif
endif
Here is the download version:
http://www.mediafire.com/?gmtxfyujlte
Thanks for downloading my script
~Tom
here is the text version:
//Written by Tom Jones
//
//Controls:
//Dpad = Move the cursor
//A-Button = Left click
//Minus-Button = Right click
//B+Dpad = croll
mouse.DirectInput = mouse.DirectInput + wiimote.Dpad *6
mouse.leftbutton = wiimote.A
mouse.rightbutton = wiimote.minus
if wiimote.b = true
if wiimote.up = true then
mouse.wheelup = true
endif
if wiimote.down = true then
mouse.wheeldown = true
endif
if wiimote.left = true then
mouse.wheelleft = true
endif
if wiimote.right = true then
mouse.WheelRight = true
endif
endif
Here is the download version:
http://www.mediafire.com/?gmtxfyujlte
Thanks for downloading my script
~Tom
Nes Wiimote Script
It's the same as the VC.
Here is the text version:
// Controls for Nes
// Written by Tom Jones
//
// Controls(same as VC):
// Dpad (on the side) = Arrow Keys
// One-Button = Z
// Two-Button = X
// Minus-Button = CTRL
// Plus-Button = Enter
Left = Wiimote.Up
Right = Wiimote.Down
Down = Wiimote.Left
Up = Wiimote.Right
Z = Wiimote.One
X = Wiimote.Two
CTRL = Wiimote.Minus
Enter = Wiimote.Plus
Wiimote.Led1 = true
Here is the download version:
http://www.mediafire.com/?emtyucn2dmb
Thanks for downloading my script
~Tom
Here is the text version:
// Controls for Nes
// Written by Tom Jones
//
// Controls(same as VC):
// Dpad (on the side) = Arrow Keys
// One-Button = Z
// Two-Button = X
// Minus-Button = CTRL
// Plus-Button = Enter
Left = Wiimote.Up
Right = Wiimote.Down
Down = Wiimote.Left
Up = Wiimote.Right
Z = Wiimote.One
X = Wiimote.Two
CTRL = Wiimote.Minus
Enter = Wiimote.Plus
Wiimote.Led1 = true
Here is the download version:
http://www.mediafire.com/?emtyucn2dmb
Thanks for downloading my script
~Tom
N64 Classic Controller script.
Now you can use the N64 with your Classic Controller it is seriously easier to control with the Classic Controller.
Here is the text version:
// Controls for N64
// Written by Tom Jones
//
// These are the (they are the same as VC):
// A-Button = A
// B-Button = B
// Plus-Button = Enter
// Joy2 = NumPad
// Joy1 = Arrow Keys
// Zr-Button = Z
// L-Button = Q
// R-Button = P
// Left-Button = D
// Up-Button = F
// Right-Button = G
// Down-Button = R
A = Wiimote.Classic.a
B = Wiimote.Classic.b
Enter = Wiimote.Classic.Plus
Keyboard.NumPad = Wiimote.Classic.Joy2
Keyboard.ArrowKeys = Wiimote.Classic.Joy1
Z = Wiimote.Classic.ZR
Q = Wiimote.Classic.L
P = Wiimote.Classic.R
D = Wiimote.Classic.Left
F = Wiimote.Classic.Up
G = Wiimote.Classic.Right
R = Wiimote.Classic.Down
Here is the download version:
http://www.mediafire.com/?tyezbmjxzcy
Thanks for downloading this script
~Tom
Here is the text version:
// Controls for N64
// Written by Tom Jones
//
// These are the (they are the same as VC):
// A-Button = A
// B-Button = B
// Plus-Button = Enter
// Joy2 = NumPad
// Joy1 = Arrow Keys
// Zr-Button = Z
// L-Button = Q
// R-Button = P
// Left-Button = D
// Up-Button = F
// Right-Button = G
// Down-Button = R
A = Wiimote.Classic.a
B = Wiimote.Classic.b
Enter = Wiimote.Classic.Plus
Keyboard.NumPad = Wiimote.Classic.Joy2
Keyboard.ArrowKeys = Wiimote.Classic.Joy1
Z = Wiimote.Classic.ZR
Q = Wiimote.Classic.L
P = Wiimote.Classic.R
D = Wiimote.Classic.Left
F = Wiimote.Classic.Up
G = Wiimote.Classic.Right
R = Wiimote.Classic.Down
Here is the download version:
http://www.mediafire.com/?tyezbmjxzcy
Thanks for downloading this script
~Tom
Subscribe to:
Posts (Atom)