| View previous topic :: View next topic |
| Author |
Message |
markus3000
Joined: 04 Oct 2007 Posts: 1
Digg It |
Posted: Thu Oct 04, 2007 6:41 pm Post subject: Ghost Recon: Advanced Warfighter Script search! |
|
|
Hi! I´m searching for a script to control GRAW (Ghost Recon: Advanced Warfighter) and maybe also GRAW 2 (Ghost Recon: Advanced Warfighter 2).
I´ve noticed that in some games you can control everything but not the cursor. Why is that? Are the mouse control scripts not good enough?
thanks for your help,
Markus |
|
| Back to top |
|
 |
Frogman
Joined: 25 Jun 2008 Posts: 1
Digg It |
Posted: Wed Jun 25, 2008 8:02 pm Post subject: Hi I made a script for GRAW 2 |
|
|
the aiming isn't that accurate but it works
// GRAW 2 Script Created by Jon short
// Controls
// A to zoom in
// B to shoot
// Z on nunchuck to bring up the guns then to choose the gun up and down on the d-pad
// C while moving will make you run
// Minus to crouch and plus to stand up
// 1 to bring up the orders for your team
// Home to bring up the menu to quit
// twist the nunchuck to reload
// move with analog stick
// aim with d-pad
if var.debug = false
var.sensitivity = 10 //Try adjusting if aiming seems too fast or too slow. (10-30) Default: 10
var.aimX = 0.3 //Sensitivity for mouse X axis. Adjust if tilting sideways seems awkward. (0.2-1.0) Default: 0.3
var.aimY = 0.3 //Sensitivity for mouse Y axis. Adjust if tiliting forward/backward seems awkard (0.2-1.0) Default: 0.3
//End of Debug variables
var.debug = true
endif
Mouse.RightButton = wiimote.A
Mouse.LeftButton = Wiimote.B
Mouse.WheelDown = Wiimote.Down
Mouse.WheelUp = Wiimote.Up
key.ESC = wiimote.HOME
key.V = wiimote.PLUS
key.C = wiimote.MINUS
key.TAB = wiimote.1
key.LEFTSHIFT = wiimote.NUNCHUK.CBUTTON
key.F = wiimote.NUNCHUK.ZBUTTON
if -1 < Wiimote1.Nunchuk.JoyY < -0.5 then
W = true
wait 1 ms
W = false
endif
if 2 > Wiimote1.Nunchuk.JoyY > 0.5 then
S = true
wait 1 ms
S = false
endif
if -1 < Wiimote1.Nunchuk.JoyX < -0.5 then
A = true
wait 1 ms
A = false
endif
if 2 > Wiimote1.Nunchuk.JoyX > 0.5 then
D = true
wait 1 ms
D = false
endif
if wiimote.B = true then
wiimote.rumble = true
wait 400 ms
wiimote.rumble = false
endif
key.R = Wiimote.Nunchuk.Roll > 45 degrees
if wiimote.Right
mouse.DirectInputX = mouse.DirectInputX+15
endif
if wiimote.Down
mouse.DirectInputY = mouse.DirectInputY+15
endif
if wiimote.Left
mouse.DirectInputX = mouse.DirectInputX-15
endif
if wiimote.Up
mouse.DirectInputY = mouse.DirectInputY-15
endif |
|
| Back to top |
|
 |
|