Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. // Random hexadecimal color generator by DES|Bukz
  2. // Useful for finding the right fog color you're looking for on your map.
  3. // Use /fogcolour (genhex)
  4. alias hex_alpha_list [A B C D E F]
  5. alias genhex [
  6.   fog 64
  7.   tmp_hex = [0x]
  8.   loop genhexloop 6 [
  9.     tmp_hex_int = (rnd 10)
  10.     tmp_hex_chr = (at $hex_alpha_list (rnd 6))
  11.     tmp_hex_rnd = (rnd 2)
  12.     if $tmp_hex_rnd [
  13.       tmp_hex = (concatword $tmp_hex $tmp_hex_int)
  14.     ] [
  15.       tmp_hex = (concatword $tmp_hex $tmp_hex_chr)
  16.     ]
  17.   ]
  18.   echo Trying hexadecimal color: $tmp_hex
  19.   result $tmp_hex
  20. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement