[Command] random

Post Reply
User avatar
Raddeck
LP Manager
Reactions: 1
Posts: 508
Joined: Sat Oct 16, 2021 6:22 pm
Location: LpWorld
Contact:

Post by Raddeck »

random(float, float)


USE:
returns a random float number between the entered float parameters.
Commonly used to influence the chance a condition is true based on an actor stat.


TYPE: Command, non-Ref
RETURNS: float
THEME: Math
COMPARE:


EXAMPLE:

Code: Select all

attrBonus = Random(1,5)
Actor:attractiontoplayer += attrBonus
	
If random(30, 100) > attractiveness // condition is only possible if attractiveness is higher than 30, and more likely to happen the higher attractiveness is
	
If random(50,300) < Actor:perversion // only possible perversions is higher than 50, but only has a 20% chance of happening
Last edited by Raddeck on Wed Jun 15, 2022 6:36 pm, edited 1 time in total.
Reason: updated
Like my work? Buy me a coffee or support me on Patreon to keep it coming. :ugeek:
-Don't PM me for support-
Top
Post Reply