Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.
 

ensiform

Latest Posts

Page: 1 of 9
Posted in: gentity_t vs centity_t
 ensiform
07-19-2008, 1:01 PM
#4
Wouldn't do anything if you (like me) had removed support for basejka bots which skill is not even a required key for the CS_PLAYERS info. So I guess ur UU would think all players are humans in my servers. :s...  [Read More]
Posted in: gentity_t vs centity_t
 ensiform
07-17-2008, 6:33 PM
#2
centity_t::currentState::eType will tell you ET_PLAYER vs ET_NPC. but you won't really be able to differentiate vs player/bot unless you come up with some method to communicate it via the scoreboard send method. You should know that centity_t out of...  [Read More]
Posted in: Build errors after i addes classes in code.
 ensiform
01-08-2008, 7:25 PM
#6
The powf one is a common error that you can find elsewhere in this section via search. The other however, I'm not sure. That sounds like something you had edited. Edit: actually you might need to check the min and max defines in the q_shared file(s)...  [Read More]
Posted in: Build errors after i addes classes in code.
 ensiform
01-08-2008, 2:21 AM
#4
Well for 1, you don't need to build the botlib at all. Also might be more helpful if you pasted a better formatted build log as its very hard to read when its all on 1 line even when copying and pasting it from our end....  [Read More]
Posted in: JK2 1.02 Source Code ???
 ensiform
11-10-2007, 6:36 PM
#6
The SDK was never released for 1.02....  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
10-31-2012, 11:30 PM
#230
There is a bug in jamp.exe where connecting to an invalid hostname or IP whilst ingame will shove you out to a black screen, unable to do anything (including open your console). A very ugly situation. The function in question is CL_Connect_f (0x41D9...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
04-08-2008, 1:05 AM
#208
There seems to be an issue with using the cgs.scores1/2 for the team score as it uses data from a ConfigString which appears to be somewhat unreliable during map changes on the client side. For instance: Server running a map that ends and starts chan...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
02-24-2008, 9:28 PM
#207
qboolean BG_LegalizedForcePowers(char *powerOut, int maxRank, qboolean freeSaber, int teamForce, int gametype, int fpDisabled) { char powerBuf[128] = ; char readBuf[128] = ; qboolean maintainsValidity = qtrue; int powerLen = strlen(powerOut); int i =...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
02-24-2008, 7:58 PM
#205
I think you only need to do proper checks in BG_LegalizedForcePowers....  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
02-20-2008, 1:25 PM
#203
Info_ValueForKey function calls are quite expensive as they must parse the entire string every time it is called. Improvement: Use a string hashing method and compare the tokens using Info_NextPair. An example of this can be seen from lucel in the N...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
02-12-2008, 6:34 PM
#202
It appears any cvar that is part of userinfo is susceptible to being too large and thus making the userinfo string bigger than 1024 (which would likely cause the IP string and others too may not then be retrieved with trap_GetUserinfo(...) as its not...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
01-23-2008, 12:47 PM
#201
Means if you try to check any of the other force power values, you get 0 regardless of what it would be on server....  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
01-22-2008, 8:40 PM
#199
cg.snap->ps.fd.forcePowerLevel[] does not contain real data for most powers. As far as I can tell its only FP_LEVITATION (1) and FP_SEE (14)...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
12-21-2007, 11:17 PM
#198
Force Dodge shouldn't work while holding a rocket lock. Jedi_DodgeEvasion: if ( self->client->ps.weaponTime > 0 || self->client->ps.forceHandExtend != HANDEXTEND_NONE ) {//in some effect that stops me from moving on my own return qfa...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
11-11-2007, 2:01 AM
#197
2 hand lightning effect origin should probably be in middle, not coming from left hand only... cg_players.c CG_Player: The following gets changed: //trap_G2API_GetBoltMatrix(cent->ghoul2, 0, ci->bolt_lhand, &boltMatrix, tAng, cent->le...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
11-09-2007, 9:36 PM
#196
Download percentage overflow in ui_main.c @ UI_DisplayDownloadInfo. Bug fixed In Icculus Q3: http://svn.icculus.org/quake3/trunk/code/ui/ui_main.c?r1=1161&r2=1204&p1=trunk/code/ui/ui_main.c&p2=trunk/code/ui/ui_main.c...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
11-09-2007, 2:30 PM
#195
Wonder why its even targeting the forcefield pickup or the forcefield it self for :S....  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
11-08-2007, 5:44 PM
#193
CalcEntitySpot has a bug when SPOT_WEAPON is the spot being used... case SPOT_WEAPON: //NOTE: automatically takes leaning into account! if( ent->NPC && !VectorCompare( ent->NPC->shootAngles, vec3_origin ) && !VectorCompare(...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
11-08-2007, 5:42 PM
#192
Well you can make vehicles without editing the SDK. I would say start by making it a flying type vehicle for now....  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
11-05-2007, 7:50 PM
#190
CG_PointContents should use projected origin and angles in-case water is a moving entity such as draining water from an area. contents |= trap_CM_TransformedPointContents( point, cmodel, ent->origin, ent->angles ); should be: contents |= tra...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
11-03-2007, 10:54 PM
#189
Unique1's Holocron code that is seen in OJP has an out of bounds bug: if (number_of_holocronpositions > MAX_HOLOCRON_POSITIONS) Should be >= because array is 0...max-1...  [Read More]
Posted in: Q3 Engine Game Bugs / JA bugs
 ensiform
11-03-2007, 9:16 PM
#188
I'm sure there are, and no I really did not. >.< Mostly in the NPC code you will find a lot of entity 0 stuff....  [Read More]
Posted in: Jedi Academy translation
 ensiform
03-01-2008, 12:42 PM
#13
That is also in one of the language str files, pretty sure. Just not certain which one. EDIT: Menus.str reference item "MYLANGUAGE" is what you want....  [Read More]
Posted in: Jedi Academy translation
 ensiform
02-28-2008, 7:37 PM
#7
so, have you done it? Why on earth did you revive a 4 year old thread?...  [Read More]
Posted in: Your Favorite Lightsaber Style
 ensiform
10-30-2007, 1:58 PM
#49
Nice reviving a 4 year old thread maroon....  [Read More]
Page: 1 of 9