Map error
Posted: January 1st, 2012, 10:17 pm
Im getting this map error please tell me what this can be 



Actually its from a friend ill ask his script tomoz becuz hes offline nowNekoneko wrote:Is this your own custom map?
If so, please post the scripts for it and try running it with "/develpoer 1"
Then write the error message
-KS faster o:
Code: Select all
main()
{
maps\mp\_load::main();
game["allies"] = "marines";
game["axis"] = "opfor";
game["attackers"] = "axis";
game["defenders"] = "allies";
game["allies_soldiertype"] = "desert";
game["axis_soldiertype"] = "desert";
setdvar( "r_specularcolorscale", "1" );
setdvar( "compassmaxrange","2000" );
thread platform1();
}
platform1()
{
platform = getent ("platform1","targetname");
while(1)
{
platform movex (600,2,0.5,0.5);
platform waittill ("movedone");
wait(1);
platform movex (-600,2,0.5,0.5);
platform waittill ("movedone");
}
}