Typo commented on a Page, !restaurant  -  Jul 03, 2008

You should combine your on text events. For instance, taking the first few and combining them would turn:

on *:TEXT:!Restaurant*:#:{ 
  msg $chan $nick goes to a restaurant. 
  timer 1 1 notice $nick 11,1|The Menu| 
  timer 1 3 notice $nick 11,1|Welcome To A<yournick>\'s Personel Bar And Restaurant| 
  timer 1 5 notice $nick 11,1|Enjoy, Food Options Are, Type !drinks, !food, !Dessert, And !bar| 
} 
on *:TEXT:!Bar*:#:{ 
  msg $chan $nick goes to a Backroom 
  timer 1 1 notice $nick 11,1|The Menu| 
  timer 1 3 notice $nick 11,1|Alcohol 18 +, Lmao Not. Selctions Are Redwine, Whitewine, Margarita, Tequila, Rome, Beer, Whisky, Corona, BudLight, MillerLight, BudWieser 
} 
on *:TEXT:!redwine*:#:{ 
  describe $chan 11,1I Presume A Special Moment With A Special Person Idk, Enjoy This Wine $nick. 
} 
on *:TEXT:!whitewine*:#:{ 
  describe $chan 11,1You Have Very Good Taste $nick Enjoy It,. 
}

into

on *:text:*:#:{
  if ($1 == !Restaurant) { 
    msg $chan $nick goes to a restaurant. 
    timer 1 1 notice $nick 11,1|The Menu| 
    timer 1 3 notice $nick 11,1|Welcome To A<yournick>\'s Personel Bar And Restaurant| 
    timer 1 5 notice $nick 11,1|Enjoy, Food Options Are, Type !drinks, !food, !Dessert, And !bar| 
  } 
  if ($1 == !bar) { 
    msg $chan $nick goes to a Backroom 
    timer 1 1 notice $nick 11,1|The Menu| 
    timer 1 3 notice $nick 11,1|Alcohol 18 +, Lmao Not. Selctions Are Redwine, Whitewine, Margarita, Tequila, Rome, Beer, Whisky, Corona, BudLight, MillerLight, BudWieser 
  } 
  if ($1 == !redwine) { 
    describe $chan 11,1I Presume A Special Moment With A Special Person Idk, Enjoy This Wine $nick. 
  } 
  if ($1 == !whitewine) { 
    describe $chan 11,1You Have Very Good Taste $nick Enjoy It,. 
  }
}

If you need help doing this to the rest of them just let me know.

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.