Bridge Commander Central

BC Forums => BC Downloads => Topic started by: Starforce2 on December 09, 2007, 12:37:43 AM

Title: Bridge Submenu(MLeo's Submenu v5)
Post by: Starforce2 on December 09, 2007, 12:37:43 AM
Is this a mod in of itself, or is it included with the regular submenu? I only ask because I can't find anything in search specificly called bridge submenu nor did I find anything in manual search.
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: MLeo on December 09, 2007, 06:31:32 AM
It's a separate mod.

It ought to have been on BCFiles for quite some time, considering the age of the mod.
I've attached it, but as I said, it's actually quite an old mod, from the SubMenuV2 days (say, couple of days after V1 :P).
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: JimmyB76 on December 09, 2007, 09:14:34 AM
maybe SF could upload it to BCFiles from here then?
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: Starforce2 on December 09, 2007, 09:17:31 AM
what is the original filename? Maybe I just missed it.
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: MLeo on December 09, 2007, 09:22:18 AM
Either BridgeSubMenu.zip or as above.
The BridgeSubMenu.zip contains screenshots.
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: Starforce2 on December 09, 2007, 09:27:09 AM
nada. I'll get it up soon as the site stops acting wierd.
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: MLeo on December 09, 2007, 09:30:00 AM
You may want to hold that off, for a little while. ;)

[EDIT] It's an old mod anyway.
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: tijuanajr on June 20, 2018, 07:38:32 PM
does anyone have the zip file anymore going crazy looking for it Please !!!!!!
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: FekLeyr Targ on June 20, 2018, 07:43:11 PM
My apologies for (co-)reviving this thread instead of starting a new one.
However, it looks like clicking on the attachment returns a "404 - Attachment Not Found".
I think that's why tijuanajr is asking.
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: JimmyB76 on June 20, 2018, 07:47:28 PM
this will do it...
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: tijuanajr on June 20, 2018, 07:53:06 PM
thanks very much for it, do i need to add any code to the bridge script ?????
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: JimmyB76 on June 20, 2018, 08:00:25 PM
yes - look in scripts/Custom/Autoload for the bridge's script...

you would have to enter something like this:

   "SubMenu": " Federation",


for example, one of my Nebula's Bridge goes like this:

Code: [Select]
import Foundation

Foundation.BridgeDef('  USS Berkeley', 'nebulabridge', dict = {
'modes': [ Foundation.MutatorDef.Stock ],
'locations': {
'NebHelm': [ 'data/animations/Neb_stand_h_m.nif', 'Neb_stand_h_m' ],
'NebTactical': [ 'data/animations/Neb_stand_t_l.nif', 'Neb_stand_t_l' ],
'NebCommander': [ 'data/animations/Neb_stand_c_m.nif', 'Neb_stand_c_m' ],
'NebScience': [ 'data/animations/Neb_stand_s_s.nif', 'Neb_stand_s_s' ],
'NebEngineer': [ 'data/animations/Neb_stand_e_s.nif', 'Neb_stand_e_s' ],
'NebGuest': [ 'data/animations/Neb_stand_X_m.nif', 'Neb_stand_X_m' ],
'NebL1S': [ 'data/animations/Neb_L1toG3_S.nif', 'Neb_L1toG3_s', 'pCharacter.SetHidden(1)' ],
'NebL1M': [ 'data/animations/Neb_L1toG3_M.nif', 'Neb_L1toG3_M', 'pCharacter.SetHidden(1)' ],
'NebL1L': [ 'data/animations/Neb_L1toG3_L.nif', 'Neb_L1toG3_L', 'pCharacter.SetHidden(1)' ],
'NebL2M': [ 'data/animations/Neb_L2toG2_M.nif', 'Neb_L2toG2_M', 'pCharacter.SetHidden(1)' ],
'NebG1M': [ 'data/animations/Neb_G1toL2_M.nif', 'Neb_G1toL2_M' ],
'NebG2M': [ 'data/animations/Neb_G2toL2_M.nif', 'Neb_G2toL2_M' ],
'NebG3M': [ 'data/animations/Neb_G3toL1_M.nif', 'Neb_G3toL1_M' ],
},
'Maps':{
'CurrentMaps': {"Light": "Light"},
'GreenMaps':{'Light': 'data/Models/Sets/nebulabridgev3/High/Light.tga'},
'YellowMaps':{'Light': 'data/Models/Sets/nebulabridgev3/High/Light_yellow.tga'},
'RedMaps':{'Light': 'data/Models/Sets/nebulabridgev3/High/Light_red.tga'},
},
"bridgeSound": {"LiftDoor": {"volume": 1.0,"file": "sfx/Nebula/door.mp3", "group": "BridgeGeneric"},
"AmbBridge": {"volume": 0.1,"file": "sfx/Nebula/ambience.wav", "group": "BridgeGeneric"},
"RedAlertSound": {"volume": 1.0,"file": "sfx/Nebula/klaxton.wav", "group": "BridgeGeneric"},
"GreenAlertSound": {"volume": 1.0,"file": "sfx/Nebula/green.wav", "group": "BridgeGeneric"},
"ViewOn": {"volume": 1.0,"file": "sfx/Nebula/hail.wav", "group": "BridgeGeneric"},
"ViewOff": {"volume": 1.0,"file": "sfx/Nebula/hail.wav", "group": "BridgeGeneric"}
},
"LoadingScreen": "data/Icons/LoadingScreens/NebulaLoading.tga",
   "SubMenu": " Federation",
} )

Title: Bridge Submenu(MLeo's Submenu v5)
Post by: tijuanajr on June 20, 2018, 08:01:48 PM
thank you very so much
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: JimmyB76 on June 20, 2018, 08:04:54 PM
glad to help   :D

please always feel free to post here on the forums for any questions or help any time :)
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: tijuanajr on June 20, 2018, 08:11:29 PM
really really thank you i just got back to playing the game always loved it but the laptop i had it on died but i found a old backup i had with many mods and got back to it like i never lefted thank you love the site :Metal:
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: FekLeyr Targ on June 20, 2018, 08:25:24 PM
Also thanks from my end for the re-upload. :)

Perhabs it would be a good idea to upload it to BCC's download section and/or any other website if that's ok for MLeo. :)
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: JimmyB76 on June 21, 2018, 04:57:56 PM
i will upload it here, as well as at BCFiles  :)
Title: Bridge Submenu(MLeo's Submenu v5)
Post by: JimmyB76 on June 19, 2019, 03:13:57 PM
never did get around to uploading it here... lol
but for now, here it is...



edit - i just installed this and it caused issues - can anyone else try this out?
it always worked until i just tried it again just now...