Migrated to dedicated hosting. Post any weirdness you observe in the Lounge.
Like for example, 50% chance of doing something?
yes.
function decide()a = math.random()if a < 0.5 then print("normal")elseif a < 0.70 then print("firebrand")elseif a < 0.85 then print("Illumia")elseif a < 0.95 then print("Darkheart")elseif a < 0.975 then print("DualDarkheart")else print("DualIllumia")endend