Wooo, my first plugin!
This plugin uses a Javascript port of the Mersenne Twister PRNG algorithm located here: gist.github.com/300494
Basically, the normal random() function in JS doesn't let you specify a seed, which is a problem if you want predictability in your randomness (little bit oxymoronic).
The main use I thought of for this is with world generation. Makes it a lot more efficient to save generated worlds, as you only have to save the seed and anything that the player has changed and you can just generate the rest on the fly.
The plugin can be found here:
dl.dropbox.com/u/1378330/RandomPlus/Random%20Plus.zip
A little example can be seen here:
dl.dropbox.com/u/1378330/RandomPlus/RandomPlus%20Example/index.html
The capx for that is here:
dl.dropbox.com/u/1378330/RandomPlus/RandomPlusExample.capx
Can anyone tell me why I'm getting that '0' at the beginning?