How To

how to make genarate random names

0

Awesomenesspeanut 2019-09-07 08:33

im making a game and I want to know how to generate random names


Awesomenesspeanut 2019-09-07 08:36

and how do you do clean randomizations (whole numbers)


was8bit 2019-09-07 09:57 (Edited)

The latest update allows for

RANDOMIZE TIMER

R=RND(100)

will produce a random integer from 0 -100


was8bit 2019-09-07 10:00 (Edited)

EZ random names, make an array of consonants, and array for vowels, so

Name=C+V+C will make names like WIF SOG BUD HIK etc...


was8bit 2019-09-07 10:01

Or NAME=V+C+V yields names like OMA IGU APU etc...


was8bit 2019-09-07 10:03

You then can have a presorter that allows for differing combinations of C and V

CV
VC
CVC
VCV
CVCV
VCVC
CVCVC


moechofe 2019-09-09 17:39

You probably need a list of valid syllabus, randomly take 2 or 3 and concat them. Maybe add a terminator and the end.


Log in to reply.