i was thinking why not have something like forza that way (not promoting vob mods) it would A be easier for devs to add cars B user generated cars... only downside... we would need to upload the vobs to LFS world... problem is if the user does not have car in lfs world would it be locked for online use :P
Delivery Drop against the Clock AKA Jobs im working on
Secret Stash Will add
Criminal Contraband i would add this but it deals with drugs (some people don't like servers that promote this) i was thinking of this except with alcohol
is there a way you could add a random number generator Like
<?php $Start_Number = 1; $End_Number = 100; privMsg( RanNum( $Start_Number,$End_Number ) ); # does not have to be in a privMsg ?>
i came up with
public void rannum(GLScript.unionVal val, ArrayList args) { string ident = val.nameFunction; testArgs(ident, "SS", args); int min = Convert.ToInt32(args[0]); int max = Convert.ToInt32(args[1]); Random random = new Random(); val.typVal = GLScript.typVal.str; val.sval = utils.quote( Convert.ToString( random.Next(min, max) ) ); return; }