Top

Guestbook


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  1.0
Scores Submitted  1
Date Added  May 31, 2007
Last Updated  May 31, 2007
Tags  add  book  gb  guest  guestbook  read  write 

Introduction

Ok this is a pretty good guestbook which is extremely simple you can write, read, and type !guestbook for help

This is how it works :D

Type !guestbook and it'll tell you, using my timer from scratch :D which luckily worked ;p , to type

!addgb {yourtexthere}
To add a guestbook message and
!readgb
To read a random guestbook message!

It's as simple as that so again the commands are
!guestbook
Get instructions
!addgb {yourtexthere}
Add a guestbook entry
!readgb
Read a random entry!

Grab the Code

Comments

  (4)  RSS
ermansanidhya
Comments: 43
 
mIRC Snippet:  Guestbook
Posted on Sep 17, 2007 5:39 am
very simple i like it Lol:)
mountaindew
Comments: 1,539
 
mIRC Snippet:  Guestbook
Posted on Sep 17, 2007 3:32 pm
Code:

on *:text:*:#:{
  if ($1 == !guestbook) {
    .timer 1 1 notice $nick 12Guestbook-4Type 12!Addgb (yourtexthere)4 to write a message in the guestbook!
    .timer 1 2 notice $nick 4Type 12!Readgb4 to read a random message!
  }
  if ($1 == !addgb && $2) write guestbook.txt $2- < Added by $nick > === Random guestbook message
  if ($1 == !readgb) msg $chan $read(guestbook.txt) 
}

Mitchell
Comments: 23
 
mIRC Snippet:  Guestbook
Posted on May 10, 2008 8:16 pm
any way that will show all guest book messages?
napa182
Comments: 996
 
mIRC Snippet:  Guestbook
Posted on May 10, 2008 11:28 pm
the way it\'s set up it will read random messages

Please Register or Login to start posting comments.
Bottom