Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;usage:
- ;/leech [bot] [first pack] [increase] [total of files]
- ;ex: /leech charger 4 3 5
- ;that will leech packs 4, 7, 10, 13 and 16
- ;off "charger".
- on *:LOAD:{
- %load = 0
- }
- alias leech {
- /msg $1 xdcc send $2
- %bot = $1
- %pack = $2
- %next = $3
- %total = $4 - 1
- %calc = %next * %total
- %final = %pack + %calc
- /enable #leech
- }
- #leech on
- on *:FILErcvd:*.*:{
- if (%pack < %final) {
- %pack = %pack + %next
- /msg %bot xdcc send %pack
- }
- else {
- /disable #leech
- }
- }
- #leech end
Advertisement
Add Comment
Please, Sign In to add comment