Tales From Space: About a Blob

A simple script to make some things easier. My wife can no longer play without it. Blob now always are eating, press L2 to not. Blob runs if left stick is > 88%.
Versionv1.01
AuthorConsoleTuner
Publish DateSun, 13 Feb 2011 - 12:24
Last UpdateSun, 13 Feb 2011 - 12:31
Downloads165
RATE


0

0

Release Notes: v1.01 Just a correction on script comment.
Code: Select all
/* *
* Tales From Space: About a Blob
*
*  A simple script to make some things easier.
*  My wife can no longer play without it.
* ************************************************************* */

 
main {
    // Always eat, L2 to not.
    if(get_val(PS3_L2)) {
        set_val(PS3_L2, 0);
    } else {
        set_val(PS3_L2, 100);
    }
 
    // Run if left stick is > 88%
    if(abs(get_val(PS3_LX)) > 88 || abs(get_val(PS3_LY)) > 88) {
        set_val(PS3_SQUARE, 100);
    }
 
    // Jump 100%, just in case. It may not have any effect.
    if(get_val(PS3_CROSS))
        set_val(PS3_CROSS, 100);
}