aboutsummaryrefslogblamecommitdiff
path: root/bc_funcs/misc.bc
blob: a7683971c22a81d6487e1765772fa4219f82ecc4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                        


                    

                                
                                    
                              
 
                 
                                          
 
define void findseed() {
	auto x, i, s
	s = scale
	scale = 0

	for (i = 0; i < 12; i++)
		if (rand() % 10 < 1)
			x += 1

	scale = s
	print "Your seed is a ", x, " eye"
}