Author Topic: Shield Question  (Read 2477 times)

Offline Zeks

  • Posts: 1
  • Cookies: 0
Shield Question
« on: February 24, 2010, 07:23:39 PM »
Hi I'm relatively new to this whole modding thing so forgive me if this might sound stupid.

Is it possible to have a ship start out with 50% or so of its max shield value and never go over that 50% when it recharges them in the game. The reason I'm asking this is that i want to make the shields on a NX class ship weak so that the damage will leak through simulating the effects of a polarized hull.

Offline Morgan

  • Moderator
  • Posts: 1340
  • Cookies: 65535
Re: Shield Question
« Reply #1 on: February 24, 2010, 09:39:59 PM »
Welcome to the forums! To answer your question:

It is possible to have a ship start out damaged with it's shields drained in the way you described, but only for non-player controlled ships. You're best bet would be to set the value of the NX's shield to a low value, you'll achieve the effect you're looking for.

Offline vonfrank

  • Posts: 447
  • Cookies: 182
Re: Shield Question
« Reply #2 on: February 24, 2010, 10:10:19 PM »
Welcome to the forums! To answer your question:

It is possible to have a ship start out damaged with it's shields drained in the way you described, but only for non-player controlled ships. You're best bet would be to set the value of the NX's shield to a low value, you'll achieve the effect you're looking for.

the only problem with doing that is that the damage wouldn't bleed through the shields when they are at any value above 50%

Zeks and I are working on this Project together and we want something to reduce the damage but not completely cancel it out. Since BC's shields allow damage to bleed through when they are below 50%, the "Polarized Hull Effect" would be accurately simulated

Offline Morgan

  • Moderator
  • Posts: 1340
  • Cookies: 65535
Re: Shield Question
« Reply #3 on: February 24, 2010, 11:25:25 PM »
the only problem with doing that is that the damage wouldn't bleed through the shields when they are at any value above 50%

Zeks and I are working on this Project together and we want something to reduce the damage but not completely cancel it out. Since BC's shields allow damage to bleed through when they are below 50%, the "Polarized Hull Effect" would be accurately simulated
I see, sounds cool. I'd suggest asking about this at the BCS forums as well, you might get better insight there then you would here.

Offline teleguy

  • Posts: 363
  • Cookies: 53
Re: Shield Question
« Reply #4 on: February 25, 2010, 10:12:47 AM »
I made a script based on Mleos Multivectral Shields. Put it into the scripts\Custom\Techs folder.
Ftech has to be installed and active and the technology needs to be added to the ship plugin.

Example:
Code: [Select]
Foundation.ShipDef.NX01Enterprise = Foundation.FedShipDef(abbrev, species, { 'name': longName, 'iconName': iconName, 'shipFile': shipFile, "SubMenu": SubMenu })
Foundation.ShipDef.NX01Enterprise.dTechs = {
   "Weakshield": 50
}

Offline tiqhud

  • BCFiles File Poster
  • Posts: 1763
  • Cookies: 1067
  • San Francisco Shipyards (HPer) file manuiplater
Re: Shield Question
« Reply #5 on: February 25, 2010, 10:29:47 AM »
Interesting
TiqHud
you sir, are unable to strike, the port or starboard parts of hull , of a bovine storage facility.
Canon , what people argue exists, that doesn't really  exist.
It is all the little details, that cause headaches.
"Never judge wealth with Money"
'Intelligence has Nothing to do with Politics'
it is Late, Do you know where your Towel is?

Offline vonfrank

  • Posts: 447
  • Cookies: 182
Re: Shield Question
« Reply #6 on: February 25, 2010, 02:32:34 PM »
Alright! It works   :D

thanks alot! cookie for you  :)

Offline teleguy

  • Posts: 363
  • Cookies: 53
Re: Shield Question
« Reply #7 on: February 26, 2010, 08:42:14 AM »