Bridge Commander Central
BC Forums => BC Scripting => Topic started by: Mandalore on April 26, 2009, 07:44:11 AM
-
I am currently reorganizing my Fed ships and while I can put the stock ships in submenues, I'd also like to rename them (As example "Nebula" to "USS Nebula"). Is there a way similar to the one used for submenues to do this?
I have allready tried this and it doesn't work:
import Foundation
Foundation.ShipDef.Nebula.longName = 'USS Nebula'
Foundation.ShipDef.Nebula.SubMenu = "Nebula Class"
Foundation.ShipDef.Nebula.SubSubMenu = "Standard"
-
Add:
Foundation.ShipDef.Nebula.hasTGLName = 0
Also, I'm sure Jimmy can help you here.
-
i think using BCUT you'd be able to change stock ship names (i havent yet tried doing it tho)...
otherwise, try adding in
Foundation.ShipDef.Nebula.name = "USS Nebula"
under
import App
import Foundation
-
That worked. Thanks Jimmy