OneQuestion1
Potential Patron
- Joined
- Dec 19, 2012
Hello all,
Very new to modding, and I think this should work but does not seem to do anything. The value I have is an impossibly large value that I have entered so that the change would be 100% obvious if it were used.
This is then compiled using modguy's loader compiler. Loading the mod causes nothing to happen.
Very new to modding, and I think this should work but does not seem to do anything. The value I have is an impossibly large value that I have entered so that the change would be 100% obvious if it were used.
Code:
package flash
{
public dynamic class Main extends flash.display.MovieClip
{
public function initl(l){
var him = l.him; //l.eDOM.getDefinition("obj.Him");
him.MAX_PENIS_SIZE = 10.000000;
l.unloadMod();
}
}
}
This is then compiled using modguy's loader compiler. Loading the mod causes nothing to happen.