Top

Guestbook


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  1.0 (of 1 scores)
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

on *:text:!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!
  .timer 1 3 notice $nick 4For help type 12/msg $me
}
 
 
on *:text:!addgb*:#: {
  write guestbook.txt $2- < Added by $nick > === Random guestbook message
}
 
 
on *:text:!readgb*:#: {
  msg $chan $read(guestbook.txt) 
}
 

Comments

  (4)  RSS
ermansanidhya
Comments: 42
 
mIRC Snippet:  Guestbook
Posted on Sep 17, 2007 5:39 am
very simple i like it Lol:)
mountaindew
Comments: 1,826
 
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: 1,454
 
mIRC Snippet:  Guestbook
Posted on May 10, 2008 11:28 pm
the way it's set up it will read random messages

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom