Advertisement
Aha2Y

Untitled

Feb 4th, 2012
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.36 KB | None | 0 0
  1. /weirdflood {
  2.   if ($1 !isnum) || ($2 !isnum) {
  3.     echo -a 4Need numbers: x * y
  4.     halt
  5.   }
  6.   var %y = 0
  7.   while (%y < $2) {
  8.     var %text
  9.     var %offset = %y
  10.     var %x = 0
  11.     while (%x < $1) {
  12.       set %lolwut $rand(100,900)
  13.       %text = %text $+ $+($chr(%lolwut))
  14.       inc %x
  15.       inc %offset
  16.     }
  17.     say %text    
  18.     inc %y
  19.   }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement