Blockland Forums > Modification Help
Why does this error keep on coming up?
Chrono:
datablock ProjectileData(mp7Projectile)
That is the problem.
The datablock doesn't even have any contents.
It's at the top so it's not cut off.
takato14:
Chrono is right. However, the part that's actually causing the error is that you're missing a semi-colon. What you should do (other than removing the empty datablock):
--- Code: ---datablock ProjectileData(mp7Projectile)
{
//whatever
};
--- End code ---