Hey all :)
ive got a question about the xp script. This is mine atm:
#include maps\mp\_utility;
#include maps\mp\gametypes\_hud_util;
#include common_scripts\utility;
main()
{
maps\mp\_load::main();
thread xp();
}
xp()
{
trigger = getEnt("test","targetname");
trigger waittill ("trigger", player);
for(; ;)
{
trigger waittill ("trigger", player);
player braxi\_rank::giveRankXP("", 500);
}
}
when i compile and start it, it gives the error : could not find script braxi\_rank , but when i start the map with the mod ive got the braxi folder in, the script works and i get the xp. So compiling reflecions always fails. I hope you can help me with that :)