I wanted to ask for a tcl script:
okay lets go:
1) When i type !ticket <nickname> the eggdrop should do: /msg Q chanlev #BamsUnholyUnion <nickname> +av , at the same time he should message in the active channel: Thanks for using our Service, you can now join #BamsUnholyUnion for 5 Minutes!.
Well.., after 4 Minutes, the bot should notice the <nickname> with: Your Ticket is in the last Minute! Pay for a Lifetime Ticket.
After 5 Minutes, the Bot should message in #BamsUnholyUnion: <nickname>, your Ticket was deleted (Reason: Test Time Expierence)
After this the Bot should do that: /msg Q chanlev #BamsUnholyUnion <nickname> -av
DONE:)
REALLY BIG THANKS, I NEED THIS SCRIPT
EDIT:
Code: Select all
bind pub o|o !ticket pub:ticket
proc pub:ticket {nick uhost hand chan text} {
set who [lindex $args 0]
putserv "MODE $chan +v $who"
putquick "PRIVMSG $chan :Thanks for using our Service $who, you can now join #BamsUnholyUnion for 5 Minutes!"
putquick "PRIVMSG Q :chanlev #BamsUnholyUnion $who +av"
timer 4 [list putserv "NOTICE $who :Your Ticket is in the last Minute! Pay for a Lifetime Ticket"]
timer 5 [list (putquick "PRIVMSG #BamsUnholyUnion :$who, your Ticket was deleted (Reason: Test Time Expierence)) && (putquick "PRIVMSG Q :chanlev #BamsUnholyUnion $who -av)]
}