Advertisement
RaZgRiZ

Obit 1.0

Dec 23rd, 2011
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. _action = []
  2. _object = []
  3. _styles = []
  4.  
  5. rndo = [at $arg1 (rnd (listlen $arg1))]
  6.  
  7. obit = [
  8.     _victim = (
  9.         ? (
  10.             && $numargs (> (indexof (listclients 1) $arg1) 0)
  11.         ) $arg1 (rndo (listclients))
  12.     )
  13.     _killer = (
  14.         getclientname (
  15.             rndo (listdel (listclients 1) $_victim)
  16.         )
  17.     )
  18.     say (
  19.         format "%1 was %2 with %3 by %4 %5" (
  20.             getclientname $_victim
  21.         ) (rndo $_action) (rndo $_object) $_killer (rndo $_styles)
  22.     )
  23. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement