ID:179216
 
This is the error

AshesThroughAshes.dm:745:error::expected a constant expression


And this is the code

world
status = "[Status] :: Server Name is [Server] :: Server OP is [OP]"

Part in bold is the error part. I need help because i have no clue what i did wrong.

Thanks

~~dbz73~~
Not a dbz game maker
You're trying to set world.status to vars that don't exsist until after the world is created, you'll need to set the status within New() for it to work:

world
New()
status = "blah blah [var] blah blah"