25 lines
6.1 KiB
Plaintext
25 lines
6.1 KiB
Plaintext
#using scripts\codescripts\struct;
|
|
|
|
#using scripts\shared\util_shared;
|
|
|
|
|
|
|
|
#using scripts\mp\_load;
|
|
#using scripts\mp\_util;
|
|
|
|
#using scripts\mp\mp_freerun_03_fx;
|
|
#using scripts\mp\mp_freerun_03_sound;
|
|
|
|
function main()
|
|
{
|
|
mp_freerun_03_fx::main();
|
|
mp_freerun_03_sound::main();
|
|
|
|
SetDvar( "phys_buoyancy", 1 );
|
|
SetDvar( "phys_ragdoll_buoyancy", 1 );
|
|
|
|
load::main();
|
|
|
|
util::waitforclient( 0 ); // This needs to be called after all systems have been registered.
|
|
}
|