Blockland Forums > Modification Help

My chatbot is not working

Pages: << < (18/23) > >>

Deoxys And One Noob:


--- Quote from: Xalos on April 18, 2012, 05:21:38 PM ---I could easily help with this.

I also refuse point-blank to help you with something which is obnoxious and which should never even be made for anything outside learning purposes.


If you have to nag someone who can make nice client-sided stuff for you, I recommend Nexus. He works primarily client-side. I also recommend not trying to make chatbots unless you can make them without asking the community at large for help. We're notorious for not liking chatbots.


Also, @Autogreeter:

Xalos:                                                conn conn conn conn connected.ected.ected.ected.e cted.Deoxys And One Noob:Hello there, Xalos: conn conn conn connected.ected.ected.ected.Deoxys And One Noob:Hello there, Deoxys And One Noob: Hello there, Xalos: conn conn connected.ected.ected.Deoxys And One Noob:Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Xalos: conn connected.ected.Deoxys And One Noob:Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Xalos: connected.Deoxys And One Noob:Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Xalos:
See where I'm going with this?

--- End quote ---

Unless the chatbot helps

Like, you know, ping for the player, I'm working on that now.

I know the script

Headcrab Zombie:

There are far better ways to show ping than through a chatbot

Also, regarding the poll; there are far better choices than what you listed. I've never seen anything scripting related from Danny Boy, jes is still learning, and I haven't seen enough from Xalos to comment.

Port:


--- Quote from: Xalos on April 18, 2012, 05:21:38 PM ---I could easily help with this.

I also refuse point-blank to help you with something which is obnoxious and which should never even be made for anything outside learning purposes.


If you have to nag someone who can make nice client-sided stuff for you, I recommend Nexus. He works primarily client-side. I also recommend not trying to make chatbots unless you can make them without asking the community at large for help. We're notorious for not liking chatbots.


Also, @Autogreeter:

Xalos:                                                conn conn conn conn connected.ected.ected.ected.e cted.Deoxys And One Noob:Hello there, Xalos: conn conn conn connected.ected.ected.ected.Deoxys And One Noob:Hello there, Deoxys And One Noob: Hello there, Xalos: conn conn connected.ected.ected.Deoxys And One Noob:Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Xalos: conn connected.ected.Deoxys And One Noob:Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Xalos: connected.Deoxys And One Noob:Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Deoxys And One Noob: Hello there, Xalos:
See where I'm going with this?

--- End quote ---

Who uses chat to detect connections anymore anyway? secureClientCmd_clientJoin.

Xalos:


--- Quote from: Port on April 21, 2012, 11:49:30 PM ---Who uses chat to detect connections anymore anyway? secureClientCmd_clientJoin.
--- End quote ---

Sadly, everyone still uses the chat-detecting version. Except you and me.

Axolotl:


--- Quote from: Xalos on April 22, 2012, 02:30:58 AM ---Sadly, everyone still uses the chat-detecting version. Except you and me.

--- End quote ---
At least my bot uses secureClientCmd_clientJoin


--- Code: ---$AxoBot::AutoGreet = 1;

package AxoBot_Client
{
function clientcmdChatMessage(%client,%b,%c,%all,%PreTag,%name,%postTag,%msg)
{
parent::clientcmdChatMessage(%client,%b,%c,%all,%PreTag,%name,%postTag,%msg);
schedule(1000,0,AxoBot_Check,%name,%msg);
}
function secureClientCmd_ClientJoin(%a,%b,%c,%d,%e,%f,%g)
{
parent::secureClientCmd_ClientJoin(%a,%b,%c,%d,%e,%f,%g);
schedule(1000,0,"AxoBot_AutoGreet",%a);
}
};

function AxoBot_AutoGreet(%a)
{
if($AxoBot::AutoGreet)
commandtoserver('messagesent',"Hi" SPC %a @ "!");
}
--- End code ---


Pages: << < (18/23) > >>

Go to full version