Author Topic: never fire a shot...  (Read 1469 times)

0 Members and 1 Guest are viewing this topic.

Offline Topgun

  • 210
never fire a shot...
Hi, is it possible to make a beam that only warms up then warms down without ever shooting?

 

Offline Mobius

  • Back where he started
  • 213
  • Porto l'azzurro Dolce Stil Novo nella fantascienza
    • Skype
    • Twitter
    • The Lightblue Ribbon | Cultural Project
Re: never fire a shot...
Well, if you set the endurance of the beam to 0 or a very low value(1 ms), yeah.
The Lightblue Ribbon

Inferno: Nostos - Alliance
Series Resurrecta: {{FS Wiki Portal}} -  Gehenna's Gate - The Spirit of Ptah - Serendipity (WIP) - <REDACTED> (WIP)
FreeSpace Campaign Restoration Project
A tribute to FreeSpace in my book: Riflessioni dall'Infinito

 

Offline Wanderer

  • Wiki Warrior
  • 211
  • Mostly harmless
Re: never fire a shot...
Well... I think it has to shoot but you make it shoot beam which has effective length of almost zero.  And then set it to shoot at targets beyond its reach. Would that work?
Do not meddle in the affairs of coders for they are soggy and hard to light

 

Offline jr2

  • The Mail Man
  • 212
  • It's prounounced jayartoo 0x6A7232
    • Steam
Re: never fire a shot...
Yeah, when it warms up, shoot it with double Stiletto IIs.  :drevil:  I've seen beams become disabled just as they were warming up; they go immediately to warm down.

 

Offline redsniper

  • 211
  • Aim for the Top!
Re: never fire a shot...
That's usually when the beam's target moves out of range while the beam is warming up.
"Think about nice things not unhappy things.
The future makes happy, if you make it yourself.
No war; think about happy things."   -WouterSmitssm

Hard Light Productions:
"...this conversation is pointlessly confrontational."

 

Offline takashi

  • Better than TrashMan
  • 29
Re: never fire a shot...
i can make that.

 

Offline Snail

  • SC 5
  • 214
  • Posts: ☂
Re: never fire a shot...
Really.

  

Offline takashi

  • Better than TrashMan
  • 29
Re: never fire a shot...
Code: [Select]
#Primary weapons

;---------------------------------------------------------------
; NOTE : most of the fields here are irrelevant and are only included so as not to break the parser
;        beam weapons are a very special case weapon
$Name:                                  @Zodiac
+Title:                                 XSTR("GTBW Zodiac", -1)
+Description:
XSTR(
"fighter mounted beam
Level X Hull Damage
Level X Shield Damage", -1)
$end_multi_text
$Model File:                    none ; laser1-1.pof
@Laser Bitmap:                  laserglow01
@Laser Color: 000, 230, 255
@Laser Length: 0.0
@Laser Head Radius: 0.60
@Laser Tail Radius: 0.60
$Mass:                           31.0
$Velocity:                      1000.0          ;; speed of the weapon (initially) -- may or may not change
$Fire Wait:                     3.0             ;; in seconds
$Damage:                        19
$Armor Factor:                  2.0
$Shield Factor:                 1.0
$Subsystem Factor:              1.0
$Lifetime:                      50.0            ;; How long this thing lives
$Energy Consumed:               5.30            ;; Energy used when fired
$Cargo Size:                    0.0             ;; Amount of space taken up in weapon cargo
$Homing:                        NO
$LaunchSnd:                     124          ;; The sound it makes when fired
$ImpactSnd:                     88        ;; The sound it makes when it hits something
+Weapon Range: 11500 ;; Limit to range at which weapon will actively target object
$Flags:                         ( "player allowed" "beam" )
$Icon:                          iconNewton
$Anim:                          Newton
$Impact Explosion:              Kayser_Impact
$Impact Explosion Radius:       5.50
$BeamInfo:
+Type: 3 ;; 0 - 4 are valid #'s
+Life: 0.0001 ;; how long it lasts once the beam is actually firing
+Warmup: 200 ;; warmup time in ms
+Warmdown: 200 ;; warmdown time in ms
+Radius: 1.0 ;; muzzle glow radius in meters
+PCount: 12 ;; particles spewed every interval
+PRadius: 1.2 ;; particle radius
+PAngle: 65.0 ;; angle of the random "cone" where the particles are generated
+PAni: particleexp01 ;; particle ani
;; +Miss Factor: 2.4 2.0 1.5 1.25 1.0 ;; magic # - higher == miss more (only really applicable to type 0 and type 3 beams)
+Miss Factor: 6.0 5.0 4.0 3.0 1.5 ;; magic # - higher == miss more (only really applicable to type 0 and type 3 beams)
+BeamSound: 179 ;; the looping beam-firing sound
+WarmupSound: 182 ;; associated warmup sound
+WarmdownSound: 189 ;; associated warmdown sound
+Muzzleglow: thrusterglow1 ;; muzzle glow bitmap
+Shots: 3 ;; only used for TYPE 3 beams
+ShrinkFactor: 0.0 ;; what
+ShrinkPct: 0.0 ;; what percentage of max width we subtract per second
$Section: ;; one section of the beam
+Width: 0.5 ;; width of the section
+Texture: beam-dblue ;; texture for this section
+RGBA Inner: 160 160 0 255 ;; rgba values (only for non-textured beam compiles)
+RGBA Outer: 60 60 0 10 ;; rgba values (only for non-textured beam compiles)
+Flicker: 0.1 ;; how much it flickers (0.0 to 1.0)
+Zadd: 1.0 ;; hehe
$Section: ;; one section of the beam
+Width: 1.0 ;; width of the section
+Texture: beam-white ;; texture for this section
+RGBA Inner: 255 0 0 255 ;; rgba values (only for non-textured beam compiles)
+RGBA Outer: 60 0 0 10 ;; rgba values (only for non-textured beam compiles)
+Flicker: 0.1 ;; how much it flickers (0.0 to 1.0)
+Zadd: 0.0 ;; hehe

#End