Neo_Player

Untitled

Mar 24th, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. ;usage:
  2. ;/leech [bot] [first pack] [increase] [total of files]
  3. ;ex: /leech charger 4 3 5
  4. ;that will leech packs 4, 7, 10, 13 and 16
  5. ;off "charger".
  6.  
  7. on *:LOAD:{
  8. %load = 0
  9. }
  10.  
  11. alias leech {
  12. /msg $1 xdcc send $2
  13. %bot = $1
  14. %pack = $2
  15. %next = $3
  16. %total = $4 - 1
  17. %calc = %next * %total
  18. %final = %pack + %calc
  19. /enable #leech
  20. }
  21.  
  22. #leech on
  23.  
  24. on *:FILErcvd:*.*:{
  25. if (%pack < %final) {
  26. %pack = %pack + %next
  27. /msg %bot xdcc send %pack
  28. }
  29. else {
  30. /disable #leech
  31. }
  32. }
  33.  
  34. #leech end
Advertisement
Add Comment
Please, Sign In to add comment