diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-19 23:14:00 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-19 23:14:00 +0000 |
commit | c02ec0cce39b36a6264e414a4741c8ea131f5286 (patch) | |
tree | aa22c3dcb16bd7fbad618d158fa1cb3614b65ee3 /Northstar.CustomServers | |
parent | f8685213baf4eef93dae6cc98c8e4a8318565bd3 (diff) | |
download | NorthstarMods-c02ec0cce39b36a6264e414a4741c8ea131f5286.tar.gz NorthstarMods-c02ec0cce39b36a6264e414a4741c8ea131f5286.zip |
temp fra fix
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/_menu_callbacks.gnut | 6 | ||||
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/_powerup.gnut | 32 |
2 files changed, 25 insertions, 13 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_menu_callbacks.gnut b/Northstar.CustomServers/mod/scripts/vscripts/_menu_callbacks.gnut index e8deccb0..1feefc2b 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/_menu_callbacks.gnut +++ b/Northstar.CustomServers/mod/scripts/vscripts/_menu_callbacks.gnut @@ -11,6 +11,12 @@ bool function ClientCommandCallback_LeaveMatch( entity player, array<string> arg // note: this is imperfect if we have multiple people of the same uid on a server, but that's only a thing in testing if ( NSIsPlayerIndexLocalPlayer( player.GetPlayerIndex() ) ) { + if ( GetConVarBool( "ns_should_return_to_lobby" ) && GetMapName() != "mp_lobby" ) + { + GameRules_EndMatch() + return true + } + foreach ( entity otherPlayer in GetPlayerArray() ) if ( otherPlayer != player ) thread WritePersistenceAndLeave( otherPlayer ) diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_powerup.gnut b/Northstar.CustomServers/mod/scripts/vscripts/_powerup.gnut index 5756bb53..e57533f0 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/_powerup.gnut +++ b/Northstar.CustomServers/mod/scripts/vscripts/_powerup.gnut @@ -62,32 +62,38 @@ void function PowerupSpawnerThink( entity spawnpoint, PowerUp powerupDef ) PickupGlow glow = CreatePickupGlow( powerup, powerupDef.glowColor.x.tointeger(), powerupDef.glowColor.y.tointeger(), powerupDef.glowColor.z.tointeger() ) glow.glowFX.SetOrigin( spawnpoint.GetOrigin() ) // want the glow to be parented to the powerup, but have the position of the spawnpoint - thread TrackPowerupCleanup( powerup ) + OnThreadEnd( function() : ( powerup ) + { + if ( IsValid( powerup ) ) + powerup.Destroy() + }) powerup.WaitSignal( "OnDestroy" ) wait powerupDef.respawnDelay } } -void function TrackPowerupCleanup( entity powerup ) -{ - powerup.EndSignal( "OnDestroy" ) - - svGlobal.levelEnt.WaitSignal( "CleanUpEntitiesForRoundEnd" ) - if ( IsValid( powerup ) ) - powerup.Destroy() -} - bool function OnPowerupCollected( entity player, entity healthpack ) { PowerUp powerup = GetPowerUpFromItemRef( expect string( healthpack.s.powerupRef ) ) - if ( player.IsTitan() == powerup.titanPickup ) + if ( powerup.titanPickup == player.IsTitan() ) { // hack because i couldn't figure out any other way to do this without modifying sh_powerup // ensure we don't kill the powerup if it's a battery the player can't pickup - if ( ( powerup.index == ePowerUps.titanTimeReduction || powerup.index == ePowerUps.LTS_TitanTimeReduction ) && ( player.IsTitan() || PlayerHasMaxBatteryCount( player ) ) ) - return false + if ( powerup.index == ePowerUps.titanTimeReduction || powerup.index == ePowerUps.LTS_TitanTimeReduction ) + { + if ( player.IsTitan() ) + return false + + if ( PlayerHasMaxBatteryCount( player ) ) + return false + + // this is seemingly innacurate to what fra actually did, but for whatever reason embarking with >1 bat crashes in vanilla code + // so idk this is easier + if ( GAMETYPE == FREE_AGENCY && ( IsValid( player.GetPetTitan() ) || IsTitanAvailable( player ) ) && GetPlayerBatteryCount( player ) > 0 ) + return false + } // idk why the powerup.destroyFunc doesn't just return a bool? would mean they could just handle stuff like this in powerup code powerup.destroyFunc( player ) |