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.

Basic Brainstorming: Default Cvar Values

Page: 1 of 1
 razorace
12-02-2003, 4:43 AM
#1
I've been thinking, why don't we change so of the annoying defaults for some of the cvars to improve things a bit?

Increasing the sv_fps and related network cvars would make the saber collision improvement (by boosting the server fps) transparent and work for everyone right out of the box.
 keshire
12-02-2003, 4:52 AM
#2
How about re-implementing arm breakage too. I really like what is proposed in the code.
 razorace
12-02-2003, 5:06 AM
#3
I saw a tiny reference to that but I didn't know what it did. Could you please explain what it is suppose to do and where in the code it is?
 keshire
12-02-2003, 5:11 AM
#4
aw man, I was going through it all this morning. Its scattered throughout the saber and force code. It states that when a limb is broken it affects everything done with said limb. force powers (ie no two-handed lightning), sabering (strenght of attacks and parries) etc.
 razorace
12-02-2003, 5:23 AM
#5
Does it have some visual component or is it just a internal thing?
 keshire
12-02-2003, 5:26 AM
#6
I've seen no visual components to indicate so. But you could tie it to the unused bashed animation. I'm not sure where all its linked.
 Marker0077
12-02-2003, 5:32 AM
#7
There's like 5 other master server CVars for sending the heartbeat to & only one of them gets used. You should default sv_master to master0.gamespy.com & I'll see if I can find out some other master servers to send heartbeats to as well.
 razorace
12-02-2003, 7:13 AM
#8
Originally posted by keshire
I've seen no visual components to indicate so. But you could tie it to the unused bashed animation. I'm not sure where all its linked.

And how do you suggest that would work? I can't really see having broken arms work without a constant visual indicator....unless it's in the traditional movie style where the hero pops it back into place.
 keshire
12-02-2003, 7:34 AM
#9
And how do you suggest that would work?

A nice decal?

/shrugs
 GothiX
12-02-2003, 8:05 AM
#10
Some blood sprites, maybe?
 keshire
12-02-2003, 9:46 AM
#11
if (arm == BROKENLIMB_LARM)
{
if (ent->client->saber[1].model[0] &&
ent->client->ps.weapon == WP_SABER &&
!ent->client->ps.saberHolstered &&
ent->client->saber[1].soundOff)
{ //the left arm shuts off its saber upon being broken
G_Sound(ent, CHAN_AUTO, ent->client->saber[1].soundOff);
}
}



//Do a pain anim based on the side. Since getting your arm broken does tend to hurt.
if (arm == BROKENLIMB_LARM)
{
anim = BOTH_PAIN2;
}
else if (arm == BROKENLIMB_RARM)
{
anim = BOTH_PAIN3;
}

if (anim == -1)
{
return;
}


Excuse my formatting. g_client.c

referenced in g_combat.c, g_main.c, g_local.h, bg_main.c and a few others.


if ((ps->brokenLimbs & (1 << BROKENLIMB_RARM)) ||
(ps->brokenLimbs & (1 << BROKENLIMB_LARM)))
{ //powers we can't use with a broken arm
switch (power)
{
case FP_PUSH:
case FP_PULL:
case FP_GRIP:
case FP_LIGHTNING:
case FP_DRAIN:
return qfalse;
default:
break;
}
}
 keshire
12-02-2003, 9:47 AM
#12
So custom sounds and anims are possible.

And I'll do a more thourogh search when I get back in tonight.
 razorace
12-02-2003, 10:49 AM
#13
I don't think that will be very convencing. A hacked off arm might be doable thou.
 Kurgan
12-02-2003, 8:25 PM
#14
Arm Breakage? Whoa.. just like Bushido Blade!


It hangs limply at your side after a hit. ; )


Of course the original BB had leg breakage too (you crawl when your legs are taken out!). BB2 just had one arm breakage.


While you're at it with default changes, make saberdamagescale 2 and debugmelee 1, and cg_dismember 2, g_dismember 100.
 razorace
12-02-2003, 8:32 PM
#15
I think saberdamagescale and debugmelee should remain the same. I'll actually change the functioning of the default behavior of those cvars soon anyway.

But I do agree that dismemberment should default on.
 keshire
12-03-2003, 3:25 AM
#16
Looks like broken limbs are also used for vehicle code but not in the same way. I think its used for checking what area of the radar flashes when damage is taken.

Any ways, armbreakage, breakarm, and the brokenlimb state is located in these. Hope its helpful.

g_local.h
g_combat.c
g_main.c
g_client.c
g_cmds.c
g_items.c
g_saga.c
g_vehicles.c
g_weapon.c

cg_local.h
cg_draw.c
cg_players.c
cg_predict.c

bg_public.h
bg_misc.c
bg_panimate.c
bg_saber.c

q_shared.h
w_saber.c
FighterNPC.c
 NickR
12-04-2003, 12:28 AM
#17
Try out the "limb_break" command ingame, you get some nice ****ed up anims. :D

P.S. You might have to have the dlls compiled in DEBUG mode so the default ones that come with JA might not let you use this command. I might be wrong but you do need cheats on to try it out.
Page: 1 of 1