Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • 0
Sir Hattington

Decorate error problem

Question

I have a problem, while working on my Doom mod: Gates, I was making a rocket launcher like projectile that is like a wall. but when I try to run the WAD in GZDoom g3.7.2 legacy it gives me the error: "Script error, "GatEs.wad:DECORATE" line 757: '@property@actor' is an unknown actor property" I have tried many things but I don't know why it gives me this error. Here is the Decorate part that is causing problems:

 

Actor RedBrickWall
{
  Radius 31
  Height 56
  Speed 20
  Damage 20
  Projectile
  +DEHEXPLOSION
  DeathSound "weapons/rocklx"
  States
  {
  Spawn:
    WA11 A 1
    Loop
  Death:
    MISL B 8 Bright A_Explode
    MISL C 6 Bright
    MISL D 4 Bright
    Stop
  }
}

 

If you need me to lend over more information I will be happy to.

Share this post


Link to post

2 answers to this question

Recommended Posts

  • 1

looks like you might have forgoten to write the last "}" at the end of the previous actor, it thinks that the line Actor RedBrickWall is describing a property for the actor you've written above it.

Share this post


Link to post
  • 0
5 hours ago, ([zen3001]) said:

looks like you might have forgoten to write the last "}" at the end of the previous actor, it thinks that the line Actor RedBrickWall is describing a property for the actor you've written above it.

It worked. Thanks :)

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×