SA-MP Forums Archive
[Include] Cleverbot - Never Be Alone Again! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+---- Forum: Includes (https://sampforum.blast.hk/forumdisplay.php?fid=83)
+---- Thread: [Include] Cleverbot - Never Be Alone Again! (/showthread.php?tid=315117)

Pages: 1 2 3


Re: Cleverbot - Never Be Alone Again! - titanak - 04.02.2012

very nice job now i dont need to talk with myself


Re: Cleverbot - Never Be Alone Again! - [J] - 05.02.2012

Will this happen when anyone talks or only when anyone talks when there are only 1 player ?


Re: Cleverbot - Never Be Alone Again! - [P4] - 05.02.2012

Lolz this is awesome!



Re: Cleverbot - Never Be Alone Again! - xXitsgodzillaXx - 22.03.2012

Код:
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(30) : error 017: undefined symbol "format"
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(30) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(30) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(30) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(31) : error 017: undefined symbol "SendClientMessage"
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(36) : error 017: undefined symbol "format"
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(36) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(36) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(36) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(37) : error 017: undefined symbol "SendClientMessage"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
uh what? help? i get this when i try to compile the include file. :S


Re: Cleverbot - Never Be Alone Again! - Fj0rtizFredde - 22.03.2012

Quote:
Originally Posted by xXitsgodzillaXx
Посмотреть сообщение
Код:
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(30) : error 017: undefined symbol "format"
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(30) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(30) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(30) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(31) : error 017: undefined symbol "SendClientMessage"
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(36) : error 017: undefined symbol "format"
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(36) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(36) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(36) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Administrator\Desktop\CleverBot.inc(37) : error 017: undefined symbol "SendClientMessage"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
uh what? help? i get this when i try to compile the include file. :S
You're not suppose to compile the include. Put the .inc file in your pawno/include folder then go to your gamemode and do
pawn Код:
#include <CleverBot>
also check the example on the first post to see how it it's working.


Re: Cleverbot - Never Be Alone Again! - xXitsgodzillaXx - 23.03.2012

Quote:
Originally Posted by Fj0rtizFredde
Посмотреть сообщение
You're not suppose to compile the include. Put the .inc file in your pawno/include folder then go to your gamemode and do
pawn Код:
#include <CleverBot>
also check the example on the first post to see how it it's working.
what i meant to say was, thats what i get when i compile my GM with the include installed, sorry for that i was tired. lol

*EDIT* okay never mind i put

pawn Код:
#include <CleverBot>
above

pawn Код:
#include <a_samp>
*EDIT 2* okay, hopefully this is the last time i edit this post XD

BUT, im getting a warning saying

Код:
C:\Documents and Settings\Administrator\Desktop\gta sa server\gamemodes\DDPDRIFT.pwn(3674) : warning 203: symbol is never used: "message"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
im not sure were i have to put

pawn Код:
CMD:message(playerid, params[])
{
    if(isnull(params)) return SendClientMessage(playerid,-1,"Error Use It Like This: /message [Text]");
    new test[128];
    format(test, sizeof(test), "Me: %s", params);
    SendClientMessage(playerid, 0xFFFFFFFF, test);
    SendPlayerMessageToCleverbot(playerid, params);
    return 1;
}
is there any specific function im supposed to put it under?


Re: Cleverbot - Never Be Alone Again! - Fj0rtizFredde - 24.03.2012

Quote:
Originally Posted by xXitsgodzillaXx
Посмотреть сообщение
what i meant to say was, thats what i get when i compile my GM with the include installed, sorry for that i was tired. lol

*EDIT* okay never mind i put

pawn Код:
#include <CleverBot>
above

pawn Код:
#include <a_samp>
*EDIT 2* okay, hopefully this is the last time i edit this post XD

BUT, im getting a warning saying

Код:
C:\Documents and Settings\Administrator\Desktop\gta sa server\gamemodes\DDPDRIFT.pwn(3674) : warning 203: symbol is never used: "message"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
im not sure were i have to put

pawn Код:
CMD:message(playerid, params[])
{
    if(isnull(params)) return SendClientMessage(playerid,-1,"Error Use It Like This: /message [Text]");
    new test[128];
    format(test, sizeof(test), "Me: %s", params);
    SendClientMessage(playerid, 0xFFFFFFFF, test);
    SendPlayerMessageToCleverbot(playerid, params);
    return 1;
}
is there any specific function im supposed to put it under?
That code is for ZCMD. I guess you dont use it so the only function you shoud use is this one:
pawn Код:
SendPlayerMessageToCleverbot(playerid, "Message Here!");



Re: Cleverbot - Never Be Alone Again! - [MM]18240[FMB] - 17.07.2012

Can someone link me to their host?


Re: Cleverbot - Never Be Alone Again! - pln102 - 26.10.2012

Can someone give me .inc?
I don't know to make include file, would someone send me it?


Re: Cleverbot - Never Be Alone Again! - a.z.a.r - 27.10.2012

help again!
__________________________________________________ __________________________________________________

E:\SWSetup\SP32105\tgGames\GTA - San Andreas\WINDOWS SERVER\gamemodes\azargm.pwn(6) : fatal error 100: cannot read from file: "foreach"
__________________________________________________ __________________________________________________


Re: Cleverbot - Never Be Alone Again! - VinLoman - 02.05.2014

Wow that's hilarious


Re: Cleverbot - Never Be Alone Again! - iRaiDeN - 02.05.2014

Nice!


Re: Cleverbot - Never Be Alone Again! - Xtreamerz - 05.05.2014

Gud job


Re: Cleverbot - Never Be Alone Again! - [WSF]ThA_Devil - 12.06.2014

After a while, it started not working so I updated API and edited it a bit.
So... here it is:
http://pastebin.com/MHZq8gNE
replace contents in chatterbotapi.php and it will start working


Respuesta: Cleverbot - Never Be Alone Again! - Gryphus One - 13.06.2014

Will this pass Turing test just like Eugene did a few days ago?


Respuesta: Cleverbot - Never Be Alone Again! - deryan - 05.07.2014

What's wrong?



Re: Cleverbot - Never Be Alone Again! - FahadKing07 - 05.07.2014

Yea. Great work. Keep it up man <3


Re: Respuesta: Cleverbot - Never Be Alone Again! - DamonD - 05.07.2014

Quote:
Originally Posted by deryan
Посмотреть сообщение
What's wrong?
Yeah I get this exact problem even when hosting it on my own web-server...


Re: Cleverbot - Never Be Alone Again! - uZ1 - 10.07.2015

This doesn't work anymore...I think the PHP API need some edit.


Re: Cleverbot - Never Be Alone Again! - iLearner - 31.01.2017

The api at http://cleverbot.com/webservicemin is no longer available, anyone found another solution? (i found one but they want to get paid for x api calls like wtf)