View Single Post
  #2  
Old 05-14-2007, 08:54 PM
Novo Novo is offline
[TServerDeveloper]
Join Date: Jun 2006
Posts: 448
Novo will become famous soon enough
One minor problem: this.chat == " " <= There is a space in there... ( (this.chat == false) != (this.chat == " ") ) Why not do something like...

PHP Code:
if ( temp.messageInformation.size() >= this.messageDisplay )
  return; 
Like that, if the person doesn't say something for a while ( maybe two interacting NPC's!), then it wouldn't stop the timer...
Reply With Quote