haistudio / predictable-random
Generates a predictable random number based on a starting seed.
Package info
github.com/tobiastoft/predictable-random
Type:craft-plugin
pkg:composer/haistudio/predictable-random
Requires
- craftcms/cms: ~3.0.0
This package is not auto-updated.
Last update: 2026-03-30 06:42:16 UTC
README
Generates a predictable random number (or item in an array) based on a starting seed. For when you want things to seem random, but not really be random.
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later.
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project -
Then tell Composer to load the plugin:
composer require haistudio/predictable-random -
In the Control Panel, go to Settings → Plugins and click the “Install” button for Predictable Random.
Configuring Predictable Random
Set a seed with:
{% do setPredictableRandomSeed(666) %}
Get current seed value with:
{% do getPredictableRandomSeed() %}
Get a random number within a range:
{% set number = predictableRandom(min, max) %}
Or get a random value from an array of possible values:
{% set number = predictableRandom([0,2,4,8,16,'bad','code']) %}
Predictable Random Roadmap
None whatsoever.