But anyway, I'm sure this is going to cause me to be upset with myself for not realizing the problem, but I'm stumped. I'm going to use the excuse of having just woken (is that really a word?) up and not quite awake... Probabally not the best time to mess with ESL for the first time, but eh, I figure it will end up being the best thing to do for this project.
In any case, here's what I did:
CODE
#include "debug.esl"
I hit compile and SciTE-ez gives me the following error:
CODE
fatal error C1034: debug.esl: no include path set
debug.esl is in the same directory as the script that's calling it so I'm drawing a blank. Only thing I can think of is that the compiler is looking in it's own directory? In any case, where do I set the include path? Or would it just be easier to do this:
CODE
#include "L:\Docs\My Stuff\LSL\debug.esl"
I'm going to go try that for now, but I'd like an option for the long run. Even better, have the include path set to a specific "ESL Includes" folder where I could just drop all my little debug/global functions into.
Thanks for all your help.
EDIT: Nope, actually apparently that fix doesn't work either.
CODE
fatal error C1083: Cannot open include file: 'L:\Docs\My Stuff\LSL\debug.esl' : No such file or directory
So I'm in limbo until I can figure out where to set the include path I guess. Time to do some more poking around while waiting.