So ive been looking into thing for puzzlescript for rng and i think i got it working but its kinda broken. As in it spawn a blank map and wont use my teleport spots wont appear, so ive been looking into it and i appreciate the feedback.
Viewing post in My first hop back into itch.io
i had seen about puzzlescript and it was html5 libraries. So i do have a bit knowledge about html5. Basically you need to use Math.floor() to round up the Math.Random() so the codes it looks like this
Math.random() //<< it returns double number from 0 - 1. example 0.189281, 0.83823, 0.90823879, 0.49874965
Math.floor(Math.random() * 10); //<< return a number 0 - 9
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
} //<< this return an int number with threshold
i found it at this place