
Originally Posted by
aIWInception
Hi Guys, this is my first post here.
How do I structure my _rank.gsc and other files within the mod folder.
Bascially does anyone have an outline of the folders in which each file must go and the manditory files needed for a mod.
Thanks,
Inception
sorry guys, wrong section.

i dont know if you mean that but for example :
copy your code and add it here :
Code:
#include common_scripts\utility;
#include maps\mp\_utility;
#include maps\mp\gametypes\_hud_util;
doSomething()
{
CODE HERE....
}
and save it as _something.gsc
then delete it from your _rank.gsc file and put the path (where the _something.gsc is ) in here
for example :
Code:
thread maps\mp\gametypes\_something::doSomething();
or just add this in top of your _rank.gsc file
Code:
#include maps\mp\gametypes\_something
i hope this helps you