Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


NEED "cleverbot" clone or similar script for free
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

NEED "cleverbot" clone or similar script for free

20142014 Member

NEED "cleverbot" clone or similar script for free,
Thanks

Comments

  • Why? It's just pre-programmed responses and if it has nothing it spews out a randomized response. Anyone with basic coding skills could crack one out in a few hours.

    Thanked by 1netomx
  • you probably would need their database too?

  • KwiceroLTDKwiceroLTD Member
    edited March 2015

    @Mark_R said:
    you probably would need their database too?


    --

    -- Table structure for table cleverbot_responses

    CREATE TABLE IF NOT EXISTS cleverbot_responses (
    id int(11) NOT NULL AUTO_INCREMENT,
    trigger text NOT NULL,
    response text NOT NULL,
    PRIMARY KEY (id)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

    --

    -- Dumping data for table cleverbot_responses

    INSERT INTO cleverbot_responses (id, trigger, response) VALUES
    (1, 'hi/hello/hey/morning/afternoon/evening', 'Hello! I am a cleverbot alternative wannabe clone.');

    Thanked by 4Mark_R 2014 vpsGOD netomx
  • 20142014 Member

    Thanks all

  • 20142014 Member

    i mean site script :)

  • Look, we're not going to make a script for you free, so either pay up or find someone who will make the entire thing for you free.

Sign In or Register to comment.