Sandbox+ for SRTT

Could you add a autosave hotkey to sandbox+
that would really make my game better

I took a quick look, but there doesn't seem to be any functions that would actually trigger a save. It's probably something hardcoded in the exe itself. Sorry.
 
I took a quick look, but there doesn't seem to be any functions that would actually trigger a save. It's probably something hardcoded in the exe itself. Sorry.
Oh, ok

*EDIT*
Quick way to trigger an autosave-just fly through any nearby barnstorming area or complete an activity (trail blazing,insurance fraud, ect)
 
Hello there your mod is really really awesome.

But it not working in multiplayer for me, the host can use the commands but i can't.
Is there a way to enable so anyone can use the commands on the server?

Also can you add super jump? or fly or something else like noclip
 
Hello there your mod is really really awesome.

But it not working in multiplayer for me, the host can use the commands but i can't.
Is there a way to enable so anyone can use the commands on the server?
Uhm, no. Well not yet anyway, if you want commands to work for both of you:

First press Ctrl+SEMICOLON; (from the host pc)
then if should say "commands now effect the coop player" or something like that
then press a command (eg, SHIFT+DELETE) to teleport to the saints HQ
and your coop player should also teleport to the saints HQ
If you want to deactivate it just press Ctrl+SEMICOLON again
 
Thank you Eye ZiS

Also "can you add super jump? or fly or something else like noclip"
and forced crosshairs? to use with superpowers too!

and Super Speed for use superspeed in superpowers without enabling superpowers so you can keep your weapons. Also super speed should do fast swimming.

Also zoom for crosshair
 
Thank you Eye ZiS

Also "can you add super jump? or fly or something else like noclip"
and forced crosshairs? to use with superpowers too!

and Super Speed for use superspeed in superpowers without enabling superpowers so you can keep your weapons. Also super speed should do fast swimming.

Also zoom for crosshair

Everything you're asking for is simply not possible except for keeping the use of weapons with the superpowers. If you want to change that, edit sr3_city.lua and search for the following:
inv_weapon_disable_all_but_this_slot

There will be two instances of this command, one for the local player and one for the remote player. You can comment it out by adding -- before each command. It should look something like:

Code:
    --inv_weapon_disable_all_but_this_slot( WEAPON_SLOT_MELEE, true, SYNC_LOCAL )
    auto_pickup_disable(LOCAL_PLAYER)
    if COOP_COMMANDS and coop_is_active() then
        inv_weapon_add_temporary(REMOTE_PLAYER, "DLC_super_fists", 1, true, true, false, true)
        inv_item_remove("DLC_fireball", REMOTE_PLAYER)
        inv_weapon_add_temporary(REMOTE_PLAYER, "DLC_fireball", 1, true, true, false, true)
        --inv_weapon_disable_all_but_this_slot( WEAPON_SLOT_MELEE, true, SYNC_REMOTE )
 
Back
Top