ruanmed

c0d3r nub's script

Jan 17th, 2013
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. alias catch {
  2. var %rate = $rand(1,4)
  3. /describe $chan throws a Pokeball on $1
  4. if (%rate != 1) { /describe $chan caught a(n) $1 $+ ! Congratulations! }
  5. if (%rate == 1) { /describe $chan tries to capture $1 $+ , but the PokeBall bursts open! Oh no! The $1 escaped! }
  6. }
  7.  
  8. on *:ACTION:*throws a rock at*:#: {
  9. if (( %catch != 1 ) && ( $$5 ison $chan )) {
  10. /catch $$5
  11. /set %catch 1
  12. /timer8 1 12 .unset %catch }
  13. }
  14. on *:ACTION:*throws rocks at*:#: {
  15. if (( %catch != 1 ) && ( $$4 ison $chan )) {
  16. /catch $$4
  17. /set %catch 1
  18. /timer8 1 12 .unset %catch
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment