Ok...I think an outdated version is included in Sandbox+
Ok...I think an outdated version is included in Sandbox+
I think an outdated version is included in Sandbox+
ok...It is not. There is no mission replay bundled with Sandbox+ for SRTT at all.
ok...
well its not possible to merge it with the sandbox+, right?
You have to update ASM files, we only have Gibbed tools at the moment and they aren't automatic so you have to update each ASM manually via commandline. Extract Gibbed tools, create a folder called ASM inside and paste all STR2 and ASM files from your SR:TT install folder in it. Then create a batch file inside Gibbed tools folder and use the following command (just replace 'example' with a proper ASM name):My game freezes after the beginning cutscenes of the missions, my current mods:
Sandbox
GoS
Giant Planes Handling Mod
Rare Vehicle Cheats
SR4 and GooH Weapons Pack
And Mission Replay
Gibbed.SaintsRow3.UpdateASM.exe ASM\example.asm_pc ASM\
Where can i find missions to extract so can modify them?That's one of the things I'll be fixing in the mission scripts. For now, you can edit sr3_city.lua and add the following lines to function sr3_city_main()
city_zone_swap("lockdown", false)
-- Disable Traffic Splines Over Drawbridges
traffic_disable_drawbridge_area(1, false)
traffic_disable_drawbridge_area(2, false)
traffic_disable_drawbridge_area(7, false)
traffic_disable_drawbridge_area(8, false)
traffic_disable_drawbridge_area(9, false)
traffic_disable_drawbridge_area(10, false)
traffic_disable_drawbridge_area(11, false)
traffic_disable_drawbridge_area(12, false)
traffic_disable_drawbridge_area(13, false)
traffic_disable_drawbridge_area(14, false)
traffic_disable_drawbridge_area(15, false)
traffic_disable_drawbridge_area(16, false)
traffic_disable_drawbridge_area(17, false)
traffic_disable_drawbridge_area(18, false)
traffic_disable_drawbridge_area(19, false)
traffic_disable_drawbridge_area(20, false)
traffic_disable_drawbridge_area(21, false)
traffic_disable_drawbridge_area(22, false)
traffic_disable_drawbridge_area(23, false)
traffic_disable_drawbridge_area(24, false)
traffic_disable_drawbridge_area(25, false)
traffic_disable_drawbridge_area(27, false)
traffic_disable_drawbridge_area(28, false)
traffic_disable_drawbridge_area(29, false)
traffic_disable_drawbridge_area(30, false)
traffic_disable_drawbridge_area(31, false)
traffic_disable_drawbridge_area(32, false)
traffic_disable_drawbridge_area(33, false)
the gibble tools keeps closing once i open itIt's a little tricky. Here's the easiest way to do it:
Download the latest build of gibbed's tools and extract the binaries from inside the bin_sr3 folder somewhere:
http://svn.gib.me/builds/volition/
Put the following modded files from both mods into your new folder with the binaries
cell_mission_main.str2_pc <- from replay mod
cell_menu_main.str_pc <- from replay mod
store_vehicle.str2_pc <- from customize all vehicles mod
vint_doc_containers.asm_pc <- this version can be from either mod
Create a batch file with the following commands:
Code:Gibbed.SaintsRow3.UpdateASM.exe vint_doc_containers.asm_pc . pause
Run the above batch file and it will rebuild the vint_doc_containers.asm_pc using the str2_pc files from that folder
Move the updated vint_doc_containers.asm_pc to your sr3 install folder. It is now rebuilt to work with both mods.
This is the easiest way to update almost any asm_pc file in the game.You have to update ASM files, we only have Gibbed tools at the moment and they aren't automatic so you have to update each ASM manually via commandline. Extract Gibbed tools, create a folder called ASM inside and paste all STR2 and ASM files from your SR:TT install folder in it. Then create a batch file inside Gibbed tools folder and use the following command (just replace 'example' with a proper ASM name):
Code:Gibbed.SaintsRow3.UpdateASM.exe ASM\example.asm_pc ASM\