--- crossfire/server ---


Protocol:pserver User:anonymous
Machine:crossfire.cvs.sourceforge.net CVSROOT:/cvsroot/crossfire

Filename: c_chat.c
Revision 1.23ryo_saeba 2006/05/05 04:47:40 +2 -2
Third and last part of patch #1453869 courtesy Stefan Huehner (shuehner)
Show difference between Revision 1.22 and 1.23
Revision 1.22akirschbaum 2006/02/10 17:59:27 +2 -2
Apply slightly modified patch #1428309 (code-cleanup: const, static) by
Stefan Huehner: add const/static to functions/variables. Remove some type
casts.
Show difference between Revision 1.21 and 1.22
Revision 1.21mwedel 2006/01/01 23:50:28 +2 -2
server/c_chat.c: Apply patch 1389113 - orcknuckle messages appear in
same window.
MSW 2006-01-02
Show difference between Revision 1.20 and 1.21
Revision 1.20gros 2005/10/18 11:54:31 +3 -12
Upgrade of the Crossfire server to version 2.0 of the plugin interface.
Upgrade of the Python plugin to version 2.0 of the plugin interface.
Gros - 18/10/05
Show difference between Revision 1.19 and 1.20
Revision 1.19ryo_saeba 2004/12/25 12:09:29 +8 -6
Patches #1086095 and 1088385, party password length tweak
Show difference between Revision 1.18 and 1.19
Revision 1.18mwedel 2004/11/09 01:44:24 +34 -19
This commit adds the functionality of patch 991916, although the patch
as submitted was used as a baseline to start from.
include/sproto.h: rebuilt
server/c_chat.c: Rename command_chat() to command_tell_all() which takes
a few more optional parameters. Add command_shout() and command_chat()
that invoke command_tell_all() with the appropriate changes.
server/commands.c: Add chat to list of command table.
MSW 2004-11-08
Show difference between Revision 1.17 and 1.18
Revision 1.17ryo_saeba 2003/11/07 13:54:49 +8 -8
Fixed newline issue with previous commit.
Show difference between Revision 1.16 and 1.17
Revision 1.16ryo_saeba 2003/11/07 13:01:30 +11 -9
Improved 'tell' command. Fix Win32-Python issues. Fix Win32 compilation issue.
Show difference between Revision 1.15 and 1.16
Revision 1.15ketche 2003/07/28 00:19:35 +2 -2
*** empty log message ***
Show difference between Revision 1.14 and 1.15
Revision 1.14ketche 2003/07/26 00:30:00 +14 -1
*** empty log message ***
Show difference between Revision 1.13 and 1.14
Revision 1.13temitchell 2003/07/23 23:21:14 +7 -2
- added toggle_shout DM command to disable/enable player shouting
Show difference between Revision 1.12 and 1.13
Revision 1.12mwedel 2003/02/03 01:23:48 +3 -1
More bugfixes:
include/shop.h: remove _SHOP_H after endif, causing compiler warnings.
include/skills.h: Add check to USING_SKILL to make sure chosen_skill
is not null.
server/c_chat.c: Add some missing return values, resulting in compiler
warnings.
server/skill_util.c: Remove unused variable. compiler warnings again.
server/spell_effect.c: Change dimension door so that you can't go
through spaces that block passsage and also block view (eg walls).
This goes back to the more traditional behaviour. Remove
some unused variables.
server/spell_util.c: Add missing P_OUT_OF_MAP to move_missile, resulting
in crashes.
server/time.c: if generator is not on a map, don't have it generates.
Fixes crashes.
MSW 2003-02-02
Show difference between Revision 1.11 and 1.12
Revision 1.11garbled 2003/01/21 07:15:40 +41 -1
I have no idea how this got missed... Sorry.
Show difference between Revision 1.10 and 1.11
Revision 1.10garbled 2002/11/26 02:48:20 +2 -5
Get rid of #ifdef PLUGINS (it is on by default, I didn't take out gros's
code)
Show difference between Revision 1.9 and 1.10
Revision 1.9mwedel 2002/10/17 02:15:39 +22 -44
server/c_chat.c: Fix some buffer overflow issues - use snprintf or
use new_draw_info_format instead.
lib/artifacts: Update some cloaks not to require a minimum magic level,
since that will never be met.
MSW 2002-10-16
Show difference between Revision 1.8 and 1.9
Revision 1.8mwedel 2002/07/14 23:25:40 +4 -3
Update banner copyright with proper contact information.
MSW 2002-07-14
Show difference between Revision 1.7 and 1.8
Revision 1.7jbontje 2002/01/16 04:51:32 +44 -2
include/player.h include/sproto.h server/c_chat.c server/player.c:
New player command 'reply', replies to the last person who told you
something.
server/c_wiz.c: New DM command 'teleport', lets a DM teleport next
to target player, it is an inverse summon.
server/commands.c: Add hooks for 'reply' and 'teleport'.
mids 2002-01-16
Show difference between Revision 1.6 and 1.7
Revision 1.6gros 2001/10/14 02:57:14 +17 -4
Major changes: Added dynamic plugin support, removed old Guile support.
- Gros 10/14/01
Show difference between Revision 1.5 and 1.6
Revision 1.5garbled 2001/10/07 01:48:53 +56 -56
Fix a warning in here that I unintentionally pasto'd 30 times.
'control reaches end of non void function'

garbled 2001-10-06
Show difference between Revision 1.4 and 1.5
Revision 1.4garbled 2001/09/27 14:37:39 +817 -1
Add a new command category called communications commands. Place tell,
shout and say in here. Also create emotion functions. These functions
have no real effect on the game, but make communications between players
more colorful and fun. They are mostly fluff. Included with this patch
are two new convenience functions, new_info_map_except, and
new_info_map_except2, which allow the programmer to write to an entire
map, except for certain individuals.

Tested by myself, mids, and gros, with thanks to them for fixing
something I didn't catch.

garbled 2001-09-27
Show difference between Revision 1.3 and 1.4
Revision 1.3cvs 2000/12/18 01:38:25 +52 -4
MSW 2000/12/17: Various changes. Note that the scope of files in this checkin
make it appear that a lot was changed, but in fact it was mostly just
re-orginization - very little code has actually changed.
include/autoconf.h.in: Add HAVE_LIBDES to file.
include/config.h: Remove comments after defines for MAP_MIN/MAX timeouts.
This just removes some warnings during compile. comments are now
on lines by themselves.
include/player.h: remove shootstrength for player structure. It was unused.
server/Makefile.in: remove input.c file, add c_range.c file.
server/c_chat.c: remove command_last, add command_shout and command_tell
from input.c to this file. Also fix bug in command tell which
would let players crash server at will.
server/c_misc.c,server/c_object.c: Relocate many functions
from input.c into these files.
server/c_move.c, server/c_new.c: Add standard crossfire banner comment.
server/c_range.c: New file - contains range related commands,
including spell casting (relocated from input.c)
server/c_wiz.c: move command_invisible from input.c into this file.
server/commands.c: Remove unused commands (bell, last, strength)
server/input.c: removed file.
server/main.c: Change HAVE_DES_H to HAVE_LIBDES
server/player.c: When choosing a race, draw it facing south for best
presentation of image.
server/spell_util.c: Remove dead code (#if 0 shootstrength related
code)
socket/loop.c: remove unused variables.
NOTE: Due to the addition/removal of files, you will need to do
'config.status; make depend; make' from the top level directory for
everything to be compiled properly.
End of MSW 2000/12/17 checkin.
Show difference between Revision 1.2 and 1.3
Revision 1.2cvs 2000/05/22 22:52:21 +37 -8
common/item.c: Modify query_short_name to avoid buffer overflow on long
ring descriptions. Also, increased size of buffer in this function so
that longer ring descriptions will not get truncated. MSW 5/22/2000

server/c_chat.c: Add standard banner to top of file. Fix say command so
that it does not crash the server if something beyond 256 characters is
spoken - extra data is just truncated. MSW 5/22/2000
Show difference between Revision 1.1 and 1.2
Revision 1.1uid200 1999/04/02 13:10:04 None
Initial revision
First version
Revision 1.1.1.1uid200 1999/04/02 13:10:04 +0 -0
First CVS revsion: crossfire-0.95.3
Show difference between Revision 1.1 and 1.1.1.1


File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:26