Author Topic: Anoying Error  (Read 328 times)

I get this error for a playertype I have. I honestly don't see anything wrong with it.
Quote
datablock PlayerData(PlayerSpeedCola : PlayerStandardArmor)
{

      runforce = 100 * 94;
   runEnergyDrain = 0
   maxForwardSpeed ##=## 10;
   maxBackwardSpeed = 5;
   maxSideSpeed = 4;
   canJet = 0;
   maxDamage = 50;

   maxForwardCrouchSpeed = 5;
   maxBackwardCrouchSpeed = 5;
   maxSideCrouchSpeed = 3;

   uiName = "Speed Cola";
   showEnergyBar = false;

   runSurfaceAngle  = 55;
   jumpSurfaceAngle = 55;
   maxDamage = 100;
};

You forgot to end the previous line with a semicolon (;).

You forgot to end the previous line with a semicolon (;).
Oh wow I feel stupid. Locking topic.