haistudio / predictable-random
Generates a predictable random number based on a starting seed.
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 0
Type:craft-plugin
Requires
- craftcms/cms: ~3.0.0
This package is not auto-updated.
Last update: 2025-05-12 02:28:41 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.