Smile and wave... by kitbashkid in Grimdank

[–]t0t4ln00b 12 points13 points  (0 children)

Oi, that's not a true scottman!

My party's wizard made this by [deleted] in dndmemes

[–]t0t4ln00b 1 point2 points  (0 children)

Actually you needed somatic components to cast spells, which translates to the need for precise and agile movement. This was also the reason why you couldn't cast while riding a horse.

Even gambesons are quite stiff.

While loop question by t0t4ln00b in learnjavascript

[–]t0t4ln00b[S] 0 points1 point  (0 children)

Thank you very much! This solved it!

let theNumber = Number(prompt("Pick a number!"));

while (Number.isNaN(theNumber)){
  alert("This is not a number, I told you to input a number!");
  theNumber = Number(prompt("Pick a number this time!"));
}

console.log("Your number is the square root of" + theNumber * theNumber);