version 1.20 | | version 1.21 |
---|
| | |
/* | | /* |
* static char *rcsid_commands_c = | | * static char *rcsid_commands_c = |
* "$Id: commands.c,v 1.20 2002/03/20 06:27:46 mwedel Exp $"; | | * "$Id: commands.c,v 1.21 2002/06/21 05:52:24 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
| | |
CommArray_s CommunicationCommands [] = { | | CommArray_s CommunicationCommands [] = { |
/* begin emotions */ | | /* begin emotions */ |
{"tell", command_tell, 0.0}, | | {"tell", command_tell, 0.1}, |
{"reply", command_reply, 0.0}, | | {"reply", command_reply, 0.0}, |
{"say", command_say, 0.0}, | | {"say", command_say, 0.1}, |
{"shout", command_shout, 0.0}, | | {"shout", command_shout, 0.1}, |
{"nod", command_nod, 0.0}, | | {"nod", command_nod, 0.0}, |
{"dance", command_dance, 0.0}, | | {"dance", command_dance, 0.0}, |
{"kiss", command_kiss, 0.0}, | | {"kiss", command_kiss, 0.0}, |
| | |
* to the various players/sockets. | | * to the various players/sockets. |
*/ | | */ |
CommArray_s Socket2_Commands[] = { | | CommArray_s Socket2_Commands[] = { |
{"shout", command_shout, 0.0}, | | {"shout", command_shout, 0.1}, |
{"tell", command_tell, 0.0}, | | {"tell", command_tell, 0.1}, |
}; | | }; |
| | |
const int Socket2_CommandsSize =sizeof(Socket2_Commands) / sizeof(CommArray_s); | | const int Socket2_CommandsSize =sizeof(Socket2_Commands) / sizeof(CommArray_s); |