kinther
f8d9d31c1c
Update audit command for melee weapons, add helpfile entry
2025-12-31 08:27:33 -08:00
kinther
1b7a53f953
Mount update 2
2025-12-30 18:07:00 -08:00
kinther
59a38beb3d
Alignment update 1
2025-12-30 10:11:20 -08:00
kinther
1aa14abdb4
acaudit migration to audit command
2025-12-29 18:12:25 -08:00
kinther
3344074ea2
Add age and time played functionality
2025-12-29 18:08:53 -08:00
kinther
e19b481759
Clean up set command options
2025-12-29 08:26:12 -08:00
kinther
d4a7ccea5d
Rename move to stamina
2025-12-29 08:20:07 -08:00
kinther
cd3743018b
Stat command update for saving throws
2025-12-28 20:58:06 -08:00
kinther
8018ed3fcf
Species update 1
2025-12-28 16:56:57 -08:00
kinther
1efb08dafd
Cap skill levels, fix imm combat, remove plr_killer and plr_thief flags
2025-12-28 15:11:37 -08:00
kinther
d4bda3ad4a
Coins as items update 2
2025-12-24 11:06:57 -08:00
kinther
972d290126
Coins as items update 1
2025-12-24 10:34:28 -08:00
kinther
9d894e208d
Remove rent code and cost per day
2025-12-24 08:38:38 -08:00
kinther
715e778b29
Fix duration stat output and add class identifier
2025-12-23 07:50:59 -08:00
kinther
5dcc018fcd
Say and talk update
2025-12-15 19:53:08 -08:00
kinther
5591664de5
Hidden emote update
2025-12-15 14:52:15 -08:00
kinther
219d59787f
Scan/hide update
2025-12-15 13:39:03 -08:00
kinther
cba4a5b0aa
Stat output update
2025-12-15 12:32:41 -08:00
kinther
9f95400f08
NPC class update
2025-12-14 15:38:01 -08:00
kinther
ff5f254fce
Fix saving throw bonus logic
2025-12-14 14:56:09 -08:00
kinther
4f2e68a369
Background addition
2025-12-14 14:26:09 -08:00
kinther
2e1d7816f6
Sdesc update
2025-12-12 07:14:11 -08:00
kinther
8904005169
Remove title code
2025-10-31 11:39:36 -07:00
kinther
88adbfb8d9
Minor changes to stat command
2025-10-25 16:02:12 -07:00
kinther
cc342ef45c
Remove bare hand damage in favor of unarmed skill proficiency
2025-10-18 06:38:15 -07:00
kinther
0e44eaf319
Remove str_add since we are using 5e-like stats
2025-10-11 08:44:45 -07:00
kinther
d0708b4472
Rename thief class to rogue
2025-10-11 08:26:27 -07:00
kinther
7c9e1ea2fd
Migrate to 5e saving throws
2025-10-03 19:38:42 -07:00
kinther
19682f5b58
Remove app_type bonuses in favor of ability mod bonus
2025-10-03 14:51:34 -07:00
kinther
c4f99fb2de
Patch rsave to save rooms in zone correctly
2025-10-03 13:21:47 -07:00
kinther
0ebf1cb02f
Increase vnum capabilities
2025-10-02 15:30:14 -07:00
kinther
32fcaed835
Update zreset to load rsaved objects and mobs
2025-10-02 09:53:18 -07:00
kinther
05a2dfce9f
Rename classes
2025-09-30 07:39:45 -07:00
kinther
cb59bf0315
Remove hitroll/damroll
2025-09-30 07:00:54 -07:00
kinther
2703cbcf25
Add rsave command
2025-09-25 09:35:23 -07:00
kinther
b9acbbba9f
Fix syserror messages on start related to msave
2025-09-25 09:13:24 -07:00
kinther
648085d41f
Rename action_desc to main_desc
2025-09-07 16:11:05 -07:00
kinther
542b01d71d
Add mob equipment save function
2025-08-31 15:55:00 -07:00
kinther
448adc6cba
Add WORN_BACK location
2025-08-31 10:56:33 -07:00
kinther
7a188a7cdb
Fix outstanding tbamud compile errors
2025-08-31 06:38:31 -07:00
kinther
0815cd6a96
More oedit updates and new objects
2025-08-25 15:27:42 -07:00
kinther
2159ca06f0
Update shield use skill, add durability to armor, update oedit, and increase object values
2025-08-23 17:48:42 -07:00
kinther
75316a6702
Convert system to "5e-like"
2025-08-20 15:27:14 -07:00
kinther
41742a168a
Fix emoting system
2025-08-20 09:24:27 -07:00
kinther
16cd1fac05
Add four new classes
2025-08-19 10:54:28 -07:00
kinther
5aec076135
Emoting system
2025-08-19 07:10:24 -07:00
kinther
a045045eec
Updated set skill command to account for multi-word skills
2025-08-17 11:05:35 -07:00
kinther
993a94634e
Add set skill command
2025-08-17 09:32:59 -07:00
kinther
5a19b015e3
Remove practice command, add skills command, remove guild special room assignment
2025-08-17 09:12:48 -07:00
Thomas Arp
eb650c2811
GitHub issues 78 79 81 num aff flags off by one ( #82 )
...
* Make sure all followers are free'd before freeing the character list
Otherwise, the followers structs will point to free'd memory and
the stop_follower call will attempt to dereference a free'd
characters' followers list.
* https://github.com/tbamud/tbamud/issues/79 typo
* https://github.com/tbamud/tbamud/issues/81 nullpointer crash on syntax check run
* NUM_AFF_FLAGS fix.
Now, consistently, the NUM_AFF_FLAGS is used in the same way as other
NUM_* variables. Specifically, the the number is consistent with
how others are defined - 1 above the highest in the list.
I would like to have removed the need to start from 1 instead of 0
as well, but the loading mechanism, and thus potentially a lot of
existing object files, use 0 as a marker for "no flags set", and
we can't easily fix that. So, the places we loop through the list,
we still need to make sure we're stying within the [1;NUM_AFF_FLAGS) interval.
Simultaneously, I've checked over the other flags, and it seems like
the usage is pretty consistent there.
Fixes https://github.com/tbamud/tbamud/issues/78
2020-02-25 18:39:29 -05:00