mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-25 21:31:28 +00:00
SERVER: Add some basic teleportation sounds
This commit is contained in:
parent
b0afa183ba
commit
da75f77d3b
1 changed files with 20 additions and 11 deletions
|
@ -46,6 +46,8 @@
|
||||||
- Keep track of whether player is touching instead of locking movement
|
- Keep track of whether player is touching instead of locking movement
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
void(vector where, float time_alive) SpawnSpark;
|
||||||
|
|
||||||
void() teleporter_cooldown =
|
void() teleporter_cooldown =
|
||||||
{
|
{
|
||||||
self.activated = false;
|
self.activated = false;
|
||||||
|
@ -72,7 +74,7 @@ void() teleport_entities_back =
|
||||||
SUB_UseTargets();
|
SUB_UseTargets();
|
||||||
self.iszomb = 0;
|
self.iszomb = 0;
|
||||||
|
|
||||||
bprint(PRINT_HIGH, "returning\n");
|
sound(self.entities[0], CHAN_WEAPON, "sounds/machines/elec_shock.wav", 1, ATTN_NORM);
|
||||||
|
|
||||||
for(float i = 0; i < 4; i++) {
|
for(float i = 0; i < 4; i++) {
|
||||||
if (self.entities[i].classname == "player") {
|
if (self.entities[i].classname == "player") {
|
||||||
|
@ -103,18 +105,15 @@ void() teleport_entities_back =
|
||||||
|
|
||||||
player.fire_delay = player.fire_delay2 =
|
player.fire_delay = player.fire_delay2 =
|
||||||
player.reload_delay = player.reload_delay2 =
|
player.reload_delay = player.reload_delay2 =
|
||||||
3.0 + time;
|
2.0 + time;
|
||||||
|
player.speed_penalty = 0.75;
|
||||||
|
player.speed_penalty_time = time + 2;
|
||||||
|
|
||||||
player.zoom = 0;
|
player.zoom = 0;
|
||||||
player.weaponmodel = player.weapon2model = "";
|
|
||||||
player.movetype = MOVETYPE_WALK;
|
player.movetype = MOVETYPE_WALK;
|
||||||
|
player.oldz = player.origin_z;
|
||||||
if (player.flags & FL_ONGROUND) {
|
player.flags = player.flags & FL_ONGROUND;
|
||||||
player.flags -= FL_ONGROUND;
|
player.velocity = '0 0 0';
|
||||||
player.velocity = v_forward * 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
player.flags -= (player.flags & FL_ONGROUND);
|
|
||||||
|
|
||||||
if (self.mode == 0)
|
if (self.mode == 0)
|
||||||
self.activated = false;
|
self.activated = false;
|
||||||
|
@ -123,6 +122,8 @@ void() teleport_entities_back =
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SpawnSpark(en.origin + '0 0 32', 1);
|
||||||
|
|
||||||
self.iszomb = 0;
|
self.iszomb = 0;
|
||||||
start_cooldown();
|
start_cooldown();
|
||||||
self.isTimed = false;
|
self.isTimed = false;
|
||||||
|
@ -222,6 +223,7 @@ void() teleport_pad_touch =
|
||||||
if (other.button7) {
|
if (other.button7) {
|
||||||
self.host.isLinked = true;
|
self.host.isLinked = true;
|
||||||
self.host.waitLink = false;
|
self.host.waitLink = false;
|
||||||
|
sound(self, CHAN_WEAPON, "sounds/weapons/tesla/switchon.wav", 1, ATTN_NORM);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (self.host.mode == 2) {
|
if (self.host.mode == 2) {
|
||||||
|
@ -240,6 +242,7 @@ void() teleporter_link_touch =
|
||||||
local entity en;
|
local entity en;
|
||||||
|
|
||||||
en = find(world, targetname, self.target2);
|
en = find(world, targetname, self.target2);
|
||||||
|
sound(self, CHAN_WEAPON, "sounds/weapons/tesla/switchoff.wav", 1, ATTN_NORM);
|
||||||
self.waitLink = true;
|
self.waitLink = true;
|
||||||
en.host = self;
|
en.host = self;
|
||||||
}
|
}
|
||||||
|
@ -299,7 +302,9 @@ void() teleport_touch =
|
||||||
objerror("Couldn't find target!");
|
objerror("Couldn't find target!");
|
||||||
|
|
||||||
self.think = teleport_entities;
|
self.think = teleport_entities;
|
||||||
self.nextthink = time + 3;
|
self.nextthink = time + 1;
|
||||||
|
SpawnSpark(self.origin + '0 0 32', 1.5);
|
||||||
|
sound(self, CHAN_WEAPON, "sounds/machines/elec_shock.wav", 1, ATTN_NORM);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (other.button1) {
|
if (other.button1) {
|
||||||
|
@ -338,6 +343,9 @@ void() func_teleporter_entrance =
|
||||||
}
|
}
|
||||||
|
|
||||||
precache_model(self.model);
|
precache_model(self.model);
|
||||||
|
precache_model("models/sprites/lightning.spr");
|
||||||
|
precache_sound("sounds/machines/elec_shock.wav");
|
||||||
|
precache_sound("sounds/weapons/tesla/switchoff.wav");
|
||||||
|
|
||||||
self.movetype = MOVETYPE_NONE;
|
self.movetype = MOVETYPE_NONE;
|
||||||
self.solid = SOLID_TRIGGER;
|
self.solid = SOLID_TRIGGER;
|
||||||
|
@ -396,6 +404,7 @@ void() func_teleporter_timed =
|
||||||
void() func_teleporter_pad =
|
void() func_teleporter_pad =
|
||||||
{
|
{
|
||||||
precache_model ("models/props/mainframe_pad.mdl");
|
precache_model ("models/props/mainframe_pad.mdl");
|
||||||
|
precache_sound("sounds/weapons/tesla/switchon.wav");
|
||||||
|
|
||||||
self.movetype = MOVETYPE_NONE;
|
self.movetype = MOVETYPE_NONE;
|
||||||
self.solid = SOLID_TRIGGER;
|
self.solid = SOLID_TRIGGER;
|
||||||
|
|
Loading…
Reference in a new issue