Author Topic: No Problems  (Read 675 times)

« Last Edit: January 12, 2009, 04:14:28 PM by KoopaScooper »

Do you have the semicolon at the end? Like };?

Code: [Select]
datablock ParticleData(MyParticle)
{
stuff;
};

It's trying to skip the first letter.

Notice in the log:
Code: [Select]
/NewLove.csRather than:
Code: [Select]
//NewLove.cs
To fix this, just add a blank line at the top or something.

It's trying to skip the first letter.

Notice in the log:
Code: [Select]
/NewLove.csRather than:
Code: [Select]
//NewLove.cs
To fix this, just add a blank line at the top or something.
I think that's just the error log. When one of my scripts had an error it skipped the first letter, only in the log. (It was fine once I'd fixed that)

I think that's just the error log.
Yes, It is.
Well, I'm gonna try Chrono's fixing. If it doesn't work, I'm gonna try again.
« Last Edit: January 12, 2009, 01:19:00 PM by KoopaScooper »

Post the entire script file's contents so I can check it.

I think that's just the error log. When one of my scripts had an error it skipped the first letter, only in the log. (It was fine once I'd fixed that)
I've had this happen before.
The start of my script was datablock, and the error log was saying atablock. It was considering "atablock" as the error, and not anything else.

I figured it out. I had spaces in the Datablock name. Locking.