Originally Posted By: Blink
ok, i kinda understand. the main levels should have "all" of the includes, and the levels I change to should not? then other levels should have the same codes? then how do I introduce new abilities? i looked at what you coded above, but i am not sure where to insert that.


Yes Only The Main level..
No other levels even need includes.

However If You Have for example 50 levels you might not
want to go to all the way through the levels
to see if level 50 code works.

If You want to start level 50 from Wed level 50

scripts should look like this:


include <Mainscript.wdl>;


Thats all thats needed!

You Main script should have all the includes
necessary and actions associated with it.
Doing it any other way could give you Double
Action problems.

For New stuff you would simple Add your new
include to Mainscript.wdl

include <Newcode.wdl>;


I'm working with multiple levels myself and
setting it up this way has really saved me. laugh