Commit Graph

151 Commits

Author SHA1 Message Date
David Anderson
688c12ac8b fixed two bugs 2005-08-02 07:46:41 +00:00
David Anderson
5078ed9d0f changed on advice from target 2005-08-01 19:01:25 +00:00
David Anderson
bc64ae2712 name change 2005-08-01 05:15:57 +00:00
David Anderson
dd6c169994 Fixed c_str() 2005-07-31 06:04:42 +00:00
David Anderson
faae071ee8 version bump 2005-07-30 16:52:51 +00:00
David Anderson
431eb72518 Updated twisty's code 2005-07-30 01:51:12 +00:00
David Anderson
fa46d2e1b5 Patched engine with non-constructing string 2005-07-29 21:30:52 +00:00
David Anderson
559d8bc7eb Quick patch for possible bug at15468 2005-07-29 20:23:08 +00:00
David Anderson
0d90a958ae Added request at16475
Fixed crash bug from bad allocation in construction
2005-07-29 20:15:08 +00:00
David Anderson
842813dcbb Fixed a few potential bugs, and set_msg_arg* no longer accepts type changes 2005-07-23 20:16:29 +00:00
David Anderson
9e194394c3 CVector fix - corrupt memory on size change 2005-07-23 16:58:10 +00:00
David Anderson
c5aae0d8aa little bug fix 2005-07-23 07:07:41 +00:00
David Anderson
b9131293c5 entity_set_owner accepts anything now 2005-07-22 20:47:13 +00:00
David Anderson
191824d72a new message system and string class 2005-07-22 09:26:37 +00:00
David Anderson
ffbf9fdca6 Saved a whole four bytes of memory 2005-07-19 16:14:52 +00:00
David Anderson
e8c87f8d89 added is_visible, is_in_viewcone 2005-07-15 20:28:22 +00:00
David Anderson
74ec2e75b8 New auto-module system 2005-07-15 19:05:31 +00:00
David Anderson
db293cc451 Fixed memory leaks
Optimized message handling a bit
2005-07-14 04:50:46 +00:00
David Anderson
948be015a7 new version number 2005-01-31 19:35:06 +00:00
David Anderson
b4d2f83d6f sdk sync 2005-01-31 07:54:17 +00:00
David Anderson
ee464539de Fixed authors and version numbers 2004-11-11 09:08:12 +00:00
Johnny Bergström
8f18856e91 Fixed SetView (by always hooking Spawn and precaching the needed dummy model rpgrocket.mdl) 2004-10-27 19:06:43 +00:00
David Anderson
ddfba00791 Fixed 2004-10-25 23:08:06 +00:00
Johnny Bergström
66386cca59 Fixed entity_set_byte 2004-10-24 15:41:25 +00:00
David Anderson
4edd77faee Crash bug fix from Damaged Soul 2004-10-24 01:11:41 +00:00
Johnny Bergström
3efa25a5fb Fixed entity_set_edict 2004-10-14 08:15:41 +00:00
David Anderson
9e8f380121 changed is_valid_ent 2004-10-05 00:45:15 +00:00
David Anderson
5db290890f Fixed debugging stuff 2004-10-04 05:51:27 +00:00
David Anderson
bb12f71137 made worldspawn a valid ent 2004-10-03 23:21:54 +00:00
David Anderson
fc15ac1f41 Added debugging engine 2004-10-03 20:00:23 +00:00
Johnny Bergström
df43d897df Fioxed call_think:
if (!is_ent_valid(iEnt)) {
		EngineError(amx, "Invalid Entity %d", iEnt);
		return 0;
	}

was

	if (is_ent_valid(iEnt)) {
		EngineError(amx, "Invalid Entity %d", iEnt);
		return 0;
	}
2004-09-29 06:17:44 +00:00
Steve Dudenhoeffer
82ca25b231 wow... =/ 2004-09-23 21:00:43 +00:00
Steve Dudenhoeffer
a555f9b3f0 Fixed message blocks (jtp10181) 2004-09-23 20:59:26 +00:00
Johnny Bergström
768ea7519f get_info_keybuffer() now works in client_authorized 2004-09-18 13:14:20 +00:00
David Anderson
3419aa4dc5 Fix for isspace 2004-09-17 19:04:44 +00:00
Johnny Bergström
d43807a248 Added get_string() to engine:
/* Converts a string offset into a real string. Some of the forwards in fakemeta
   uses string offsets. (FM_CreateNamedEntity) */
native get_string(_string, _returnString[], _len);
2004-09-16 11:02:51 +00:00
David Anderson
b209d92a2a Fixed bug noted by JJKiller 2004-09-12 00:20:00 +00:00
David Anderson
7f6e9f5e20 *** empty log message *** 2004-09-11 22:46:28 +00:00
David Anderson
c12b04d302 new SDK 2004-09-11 21:58:46 +00:00
David Anderson
e7cd31b1d5 *** empty log message *** 2004-09-11 21:13:02 +00:00
David Anderson
00582481c6 stdc++ errors 2004-09-11 17:36:45 +00:00
David Anderson
a055d3d373 Upgraded CVector 2004-09-10 03:31:36 +00:00
David Anderson
388915e6f8 Fixes 2004-09-09 13:44:43 +00:00
David Anderson
4d8a927ff7 Fixed cells 2004-09-09 13:43:08 +00:00
Steve Dudenhoeffer
17faf3af1f woops 2004-09-08 22:05:01 +00:00
David Anderson
1c3a871831 Possible fix for forward unregister bug 2004-09-08 21:43:50 +00:00
David Anderson
a313c5b95b updated strings 2004-09-08 21:13:04 +00:00
David Anderson
02d60ded5d Made memory management optional 2004-09-07 06:17:50 +00:00
David Anderson
8d0b5360c2 Fix for find_ent 2004-09-06 18:59:59 +00:00
Johnny Bergström
b040f4474b Fixed sending 0 to find_ent_by_owner. 2004-09-06 08:21:13 +00:00