• User Newbie

    [PhpBB 3] Ajax Chat 0.8.3 configurazione

    Ciao a tutti, ho installato ieri questa fantastica chat sul mio forum. Ho trovato su sourceforge a il modo per dare dei comandi al bot, cosa molto interessante, ma pure seguendo alla lettera quello che scrivono mi da errore:
    Parse error: syntax error, unexpected '}', expecting '{' in /membri/petmaniaitalia/chat/lib/class/AJAXChat.php on line 660 e non parte la chat, sicuramente sbaglio qualcosa vi riporto di seguido quello che dicono di fare.

    To make your chatbot respond to certain keywords, follow these steps.
    Remeber that you should not use windows notepad to edit PHP code. Get an editor like Notepad++ to edit php code or you may encounter problems.
    Open lib/class/AJAXChat.php and do a search for this:

    
    function insertParsedMessage($text)
    
    ```At the end of this function (about line 762 or so) is this:
    
    

    } else {
    // No command found, just insert the plain message:
    $this->insertCustomMessage(
    $this->getUserID(),
    $this->getUserName(),
    $this->getUserRole(),
    $this->getChannel(),
    $text
    );

        }
    
          }
    

    include("chatbot.php");

    enter this code into the chatbot.php page
    
    

    <?php

    // Chat bot messages
    if(stristr($text, 'help me'))
    {
    // KEYWORDS TRIGGER START
    $this->insertChatBotMessage(
    $this->getPrivateMessageID(),
    "\nHow may I help you?\n" //This is what the chatbot says when the visitor enters help me anywhere in a sentence!
    );
    }
    // KEYWORD TRIGGER END

    ?>