Author Topic: Senseless Syntax Error.... HELP!  (Read 478 times)

Um, ok, can someone please tell me why this is a syntax error???

Code: [Select]
Add-Ons/Weapon_TransBlast/Weapon_TransBlast.cs Line: 297 - Syntax error.
>>> Some error context, with ## on sides of error halt:
  ejectionVelocity = 0.5;

  velocityVariance = 0.7;

  ejectionOffset   = 0;

  thetaMin         = 89;

  thetaMax         = 96;

  phiReferenceVel  = 0;

  phiVariance      = 360;

  overrideAdvance = false;

  particles = "TransBlastSTDFlashParticle"



  uiName ##=## "Trans-Blast Pistol Flash";

};



datablock ParticleEmitterData(TransBlastSNPFlashEmitter)

{

  ejectionPeriodMS = 1;

  periodVarianceMS = 0;

  ejectionVelocity = 1.0;

  velocityVariance = 6.0;

  ejectionOffset   = 0;

  thetaMin         = 96;

  thetaMax         = 134;
>>> Error report complete.

  particles = "TransBlastSTDFlashParticle"

No semi-colon

  particles = "TransBlastSTDFlashParticle"

No semi-colon
Oh, jeez..... xD I knew it'd be something stupid on my account. Thanks man.