blob: 3b1c8a8ab7cb065164a62525c9dd4ce3ef2cb2e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// despite the name this is NOT a shared script, it only runs on the server
// todo: move all contents of this script to one called _loadouts_mp.nut, naming here is confusing af
// current contents of this script are just random placeholder funcs i wasn't sure about the proper location of
global function GetNPCDefaultWeaponForLevel
global function GetTitanLoadoutForCurrentMap
TitanLoadoutDef function GetTitanLoadoutForCurrentMap()
{
TitanLoadoutDef loadout
return loadout
}
NPCDefaultWeapon ornull function GetNPCDefaultWeaponForLevel( entity npc )
{
return null
}
|