How do you handle multiple exclusive random outcomes? Here's how I've handled mine at the moment:
if ( chance(50) ){
if ( chance(50) ){
print "1"
}else{
print"2"
}
}else{
if ( chance(50) ){
print "3"
}else{
print"4"
}
}
If I could set an integer to a random number that might be easier to handle - but I can't figure that out.