Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. on *:TEXT:*Zac*joined*server*:#: {
  2. if ($nick == DRDCNR1) || ($nick == DRDCNR2) {
  3. if ($2 == Zac) && ($3 == has) && ($4 == joined) {
  4. inc %totallogins 1
  5. set %ingame 1
  6. set %id $left($replace($strip($1),$chr(91),,$chr(93),$null),$calc($len($1) - 3))
  7. msg $chan 9 $+ Zac is now ingame (ID: %id $+ ) I have logged in %totallogins times.
  8. }
  9. }
  10. }
  11.  
  12.  
  13. on *:TEXT:Zac*left*server*:#: {
  14. if ($nick == DRDCNR1) || ($nick == DRDCNR2) {
  15. if ($1 == Zac) && ($2 == has) && ($3 == left) {
  16. set %ingame 0
  17. unset %id
  18. msg $chan 4 $+ I have left the server. $6
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement