Replace
--our blueprint
bp_pak88_squad = Util_GetSquadBlueprintID("sbps/races/german/vehicles/at_gun_squad/pak43_88mm_at_gun_squad_mp.lua")
--now spawn the stuff
Util_CreateSquadsAtMarker(player1, sg_AX_Spawn_Pak88_1, spawn_pak88, mkr_AX_Spawn_Pak88_1, 1)
With
--our blueprint
local bp_pak88_squad = BP_GetSquadBlueprint("pak43_88mm_at_gun_squad_mp")
--now spawn the stuff
Util_CreateSquads(player1, sg_AX_Spawn_Pak88_1, bp_pak88_squad, mkr_AX_Spawn_Pak88_1)
Errors:
- Util_GetSquadBlueprintID Doesn't exist
- Util_CreateSquadsAtMarker Doesn't exist