home *** CD-ROM | disk | FTP | other *** search
/ HaCKeRz KrOnIcKLeZ 3 / HaCKeRz_KrOnIcKLeZ.iso / scriptz / 2kewlgbook.txt < prev    next >
Text File  |  1996-04-23  |  1KB  |  23 lines

  1. --------------------------------
  2. The mIRC Guestbook by Weapon_X
  3. --------------------------------
  4. Thanks for downloading my mIRC Guestbook! This is one of the many mIRC addons/bots I have made.
  5. Some examples are GAMEBOT and 2KEWL BOT! Well, this is how it works,
  6. when someone messages you with !guestbook <sign/download/view> the person either signs the guestbook,
  7. views the guestbook, or downloads it. Simple as that. Just put this into
  8. the events! 
  9.  
  10. >>>>>>><EVENTS><<<<<<< 
  11. 1:ON TEXT:!guestbook*:?: { /if $parm2 == download goto download | /if $parm2 == sign goto sign | /if $parm2 == view goto view | /if $parm2 == $null /notice $nick Usage: !guestbook <view/sign/download> <message if signing> | /halt
  12. :sign
  13. /if $parm3 == $null goto error 
  14. /write guest.book User: $nick  - Signed: $Adate @ $time 
  15. /write guest.book Comments  --->       $parm3* 
  16. /write guest.book ======================================================== 
  17. /notice $nick Thank you for signing the guestbook! mIRC Guestbook by Weapon_X (Weapon_X@juno.com) | /halt
  18. :error
  19. /notice $nick Usage: !guestbook <view/sign/download> <comment if signing> | /halt
  20. :view
  21. /play $nick guest.book | /halt 
  22. :download
  23. /notice $nick Dcc Sending the guestbook! | /dcc send $nick guest.book | /halt }