diff options
author | DBmaoha <56738369+DBmaoha@users.noreply.github.com> | 2023-04-29 01:55:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-28 19:55:50 +0200 |
commit | 5fbd1edf7942a542605f6274604ed0e0ba9f20b7 (patch) | |
tree | 5afaac872d2669effddd81ac4636259b557b3bcc /Northstar.Custom | |
parent | 2d6ca83c3ab5f045dfbc5d0a167b925112b2bd84 (diff) | |
download | NorthstarMods-5fbd1edf7942a542605f6274604ed0e0ba9f20b7.tar.gz NorthstarMods-5fbd1edf7942a542605f6274604ed0e0ba9f20b7.zip |
Improve AI spawn functions (#626)
* initial commit
* remove modded contents
* Update _ai_gamemodes.gnut
* restore HandleScoreEvent() checks
* fix squad minimap icon
* fix compile error
* Update _gamemode_aitdm.nut
* update formatting as requested changes
* add missing reaper highlight
* Formatting
* Newline test
* Did this work?
---------
Co-authored-by: F1F7Y <64418963+F1F7Y@users.noreply.github.com>
Diffstat (limited to 'Northstar.Custom')
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut index b025ff0a..8a26f8bf 100644 --- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut +++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut @@ -117,8 +117,8 @@ void function GamemodeFW_Init() // _battery_port.gnut needs this RegisterSignal( "BatteryActivate" ) - AiGameModes_SetGruntWeapons( [ "mp_weapon_rspn101", "mp_weapon_dmr", "mp_weapon_r97", "mp_weapon_lmg" ] ) - AiGameModes_SetSpectreWeapons( [ "mp_weapon_hemlok_smg", "mp_weapon_doubletake", "mp_weapon_mastiff" ] ) + AiGameModes_SetNPCWeapons( "npc_soldier", [ "mp_weapon_rspn101", "mp_weapon_dmr", "mp_weapon_r97", "mp_weapon_lmg" ] ) + AiGameModes_SetNPCWeapons( "npc_spectre", [ "mp_weapon_hemlok_smg", "mp_weapon_doubletake", "mp_weapon_mastiff" ] ) AddCallback_EntitiesDidLoad( LoadEntities ) AddCallback_GameStateEnter( eGameState.Prematch, OnFWGamePrematch ) |