Swap Left Stick with Right Stick

This script swap the left stick with the right stick. Zoom_Only = TRUE for zoom only(L2,LT) or Zoom_Only = FALSE for always on. Please enjoy. - Token
Version1.00
Authortoken
Publish DateSun, 18 May 2014 - 20:10
Last UpdateSun, 18 May 2014 - 20:10
Downloads69
RATE


0

0

Code: Select all
int Zoom_Only = TRUE; // True for zoom only and False for always on.
main {
 
if(get_val(7) || !Zoom_Only) {
set_val(9,0)
set_val(10,0)
set_val(11,0)
set_val(12,0)
set_val(9,get_lval(11))
set_val(10,get_lval(12))
set_val(11,get_lval(9))
set_val(12,get_lval(10))
}
 
}