Page 1 of 1

Where do my codes go?

Posted: Thu May 16, 2013 9:45 pm
by mofu23
I have recently made a chasecam for kurok a few days ago.(correctly, i hope). But i have no idea where to place any of the c files. Please help.
-Omar

Re: Where do my codes go?

Posted: Thu May 16, 2013 10:08 pm
by Baker
mofu23 wrote:I have recently made a chasecam for kurok a few days ago.(correctly, i hope). But i have no idea where to place any of the c files. Please help.
-Omar
progs.src is the file that lists the source files. Kurok's "C" files are actually .qc files he renamed to C so he could use them with Visual Studio or Dev C++ or something. They are really .qc files ... i.e. QuakeC files.

Re: Where do my codes go?

Posted: Mon May 20, 2013 10:26 pm
by mofu23
Baker wrote:progs.src is the file that lists the source files. Kurok's "C" files are actually .qc files he renamed to C so he could use them with Visual Studio or Dev C++ or something. They are really .qc files ... i.e. QuakeC files.
So i place i here or make a new one?

Re: Where do my codes go?

Posted: Mon May 20, 2013 10:58 pm
by r00k
you place the ACTUAL mynewfile.qc into the same folder with all your other quakeC files. i find it kinda funky when i see projects with all theses silly subfolders with just 1 file in them as if anyone else is gonna care about the clarity.

if your new chasecam code references any existing functions in other files, its best to place the chasecam.c reference UNDER those files, in progs.src
or else you are gonna have alot of prototypes, (defines for external functions).