Physics
I'm pretty sure I have it setup right.. but the vq3 style physics doesn't quite match.
For example the strafe jump on q3dm6, rail to bridge. doesn't take much effort in this mods vq3 physics compared to defrags vq3 physics.
maybe it's about g_speed value?
check it to be 320
and xp_physics 0
for me it feels the same however don't try to compare with quakelive's bridge2rail jump since there they limited the maximum speed from circle jump...
_________
epsislow
acceleration is same enough that you shouldn't feel much diff in a unspecific trick like b2r. so how about giving more detail?
maybe it's about g_speed value?
check it to be 320
and xp_physics 0for me it feels the same however don't try to compare with quakelive's bridge2rail jump since there they limited the maximum speed from circle jump...
wait a minute, wasn't circle jump speed limited in baseq3/defrag as well? smth like 540 ups, no? when jumping on a horizontal plane, ofc.
my config settings for the physics ( are they right? i was going from docs )
(for vq3 physics)
$xp_physics = 8;
$g_speed = 320;
$g_gravity = 800;(for cpm physics)
$xp_physics = 7;
$g_speed = 320;
$g_gravity = 800;
these are correct settings. but i suggest you using named constants, like this:
$xp_physics = PHYSICS_NO_RAMP_JUMPS; // bq3
$xp_physics = PHYSICS_CONTROL_FORWARD | PHYSICS_CONTROL_SIDEWARD | PHYSICS_CONTROL_STOP; // cpm
in this case one don't have to remember what all these numbers mean.
about wrong feeling: are you sure you don't have a code that overrides your settings above? also, check if your cfg is really loaded. it might have some syntax errors and thus might not be loaded.
my config settings for the physics ( are they right? i was going from docs )
(for vq3 physics)
$xp_physics = 8;
$g_speed = 320;
$g_gravity = 800;
(for cpm physics)
$xp_physics = 7;
$g_speed = 320;
$g_gravity = 800;
not sure about more detail.. probably just confuse people. all i can say is the rail to bridge jump doesn't take much strafe effort to make. if i do it like in defrag mod, i over strafe the jump in this mod.