Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local max = 20
- local seed = 375
- for i=1,seed do
- random1 = math.random(1,max)
- random2 = math.random(1,5)
- random3 = math.random(1,2)
- end
- local ppsize = random1
- if random3 == 1 then
- ppsize = ppsize + random2
- else
- ppsize = ppsize - random2
- end
- local str = "8"
- if ppsize >= 1 then
- for i=1,ppsize do
- str = str.."="
- end
- else
- str = str.."="
- end
- str = str.."D"
- print("Your pp size: \n"..str)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement