Updated changelog, version, compiler. -Rumble

This commit is contained in:
Rumble 2008-08-19 22:07:29 +00:00
parent 95b0068920
commit 86542d6681
5 changed files with 39 additions and 4 deletions

View file

@ -1,7 +1,40 @@
TbaMUD is currently being developed by The Builder Academy. If you need any TbaMUD is currently being developed by The Builder Academy. If you need any
help, find any bugs, or have ideas for improvement please stop by TBA at help, find any bugs, or have ideas for improvement please stop by TBA at
telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble
Major Additions:
OasisOLC 2.0.6
trigedit (DG Scripts) 1.0.14
hedit (help editor)
cedit (config editor)
tedit (text file editor)
aedit (socials editor)
qedit (quest editor)
ANSI Color
ASCII Player Files 3.0.1
128bit Support
Copyover
automap (ASCII map generator)
buildwalk (walk a new zone to link rooms)
tell m-w (an in game dictionary lookup)
gemote (emotes over gossip)
history (of all communications, tells, gossip, etc.)
file (allows imms to view syslog, errors, etc.)
pagelength (custom pagelength setting)
showvnums (roomflags that includes mobs, objs, triggers)
zpurge (purge an entire zone)
zcheck (head builder tool to check balancing)
mob autoroll (standard values set on mob level entry)
checkload (list where a mob/obj is loaded)
Auto Toggles (loot, goold, split, sac, assist, map)
Hidden mob/obj
mob/obj stacking
hindex
helpcheck
OLC copy and delete options.
export (QQ's a zone into a tarball)t
Xlist (mlist, olist, rlist, zlist, slist, tlist, qlist)
(lots of major bugfixes too)
@
tbaMUD 3.57 tbaMUD 3.57
[Aug 11 2008] - Rumble [Aug 11 2008] - Rumble
Updated World and files for 3.57 release. Updated World and files for 3.57 release.

View file

@ -7,6 +7,8 @@ NEW COMMANDS AND NEW MUD BEHAVIOR:
** Check out the latest news and information on the tbaMUD codebase at ** Check out the latest news and information on the tbaMUD codebase at
@Chttp://tbamud.com@n. @Chttp://tbamud.com@n.
** New sacrifice command allows you to donate a corpse to the Gods.
** Your prompt will now show (news) and (motd) whenever these files ** Your prompt will now show (news) and (motd) whenever these files
have been updated. have been updated.

View file

@ -2,7 +2,7 @@
# Clean-up provided by seqwith. # Clean-up provided by seqwith.
# C compiler to use # C compiler to use
CC = $(CC) CC = @CC@
# Any special flags you want to pass to the compiler # Any special flags you want to pass to the compiler
MYFLAGS = @MYFLAGS@ MYFLAGS = @MYFLAGS@

View file

@ -24,7 +24,7 @@
* @todo cpp_extern isn't needed here (or anywhere) as the extern reserved word * @todo cpp_extern isn't needed here (or anywhere) as the extern reserved word
* works correctly with C compilers (at least in my Experience) * works correctly with C compilers (at least in my Experience)
* Jeremy Osborne 1/28/2008 */ * Jeremy Osborne 1/28/2008 */
cpp_extern const char *tbamud_version = "tbaMUD, version 3.57"; cpp_extern const char *tbamud_version = "tbaMUD 3.57";
/* strings corresponding to ordinals/bitvectors in structs.h */ /* strings corresponding to ordinals/bitvectors in structs.h */
/* (Note: strings for class definitions in class.c instead of here) */ /* (Note: strings for class definitions in class.c instead of here) */

View file

@ -192,7 +192,7 @@ int add_to_save_list(zone_vnum zone, int type)
rznum = real_zone(zone); rznum = real_zone(zone);
if (rznum == NOWHERE || rznum > top_of_zone_table) { if (rznum == NOWHERE || rznum > top_of_zone_table) {
if (zone != AEDIT_PERMISSION || zone != HEDIT_PERMISSION) { if (zone != AEDIT_PERMISSION && zone != HEDIT_PERMISSION) {
log("SYSERR: add_to_save_list: Invalid zone number passed. (%d => %d, 0-%d)", zone, rznum, top_of_zone_table); log("SYSERR: add_to_save_list: Invalid zone number passed. (%d => %d, 0-%d)", zone, rznum, top_of_zone_table);
return FALSE; return FALSE;
} }