Hello. I am confused with WHERE to put my work in 3DGS. Here is my current directory structure, program is in C:\Program Files\GStudio8. So, for a generic example, I made a folder called "shooter" in \work folder of game folder i.e.C:\Program Files\GStudio8\work\shooter.

This is the script:

#include <acknex.h>
#include <default.c>
#include "t_player.h" // player's movement / camera code
#include "t_weapons.h" // player's weapons: pistol, machine gun with autofire and sniper gun, ammo packs, health pack, armor pack
#include "t_enemies.h" // player's enemies
#include "t_elevators.h" // elevators and platforms
#include "t_doors.h" // doors and keys

#define PRAGMA_PATH "%EXE_DIR%\\templates\\code";
#define PRAGMA_PATH "%EXE_DIR%\\templates\\images";
#define PRAGMA_PATH "%EXE_DIR%\\templates\\levels";
#define PRAGMA_PATH "%EXE_DIR%\\templates\\models";
#define PRAGMA_PATH "%EXE_DIR%\\templates\\sounds";

Shouldn't I be able to access this stuff via this, or do I need to add other levels to my actual work directory?

? #2....how do I use pragma paths when my work in a sub directory of say C:\my documents\GSwork\filename? I can only load my projects if ALL scripts in same directory, while I have tried to make seperate folders for maps/sounds/models/scripts. I cant figure out how to write proper paths...ty in advance.