Page 1 of 1

Map error

Posted: January 4th, 2006, 8:04 pm
by Pedsdude
Image

I'm working on a map... I have 10 elevators all identical, but in different positions.

I have my seperate .gsc files for each elevator in a seperate folder called "first-eles":
Image

Any ideas how to fix the error and what the problem actually is?

Posted: January 4th, 2006, 8:10 pm
by Luke
Try turning pure off on the server first, that usually fixes it...as for the gsc files, shouldn't they all be in maps/mp folder?

Posted: January 4th, 2006, 8:15 pm
by Pedsdude
I thought it would be neater and easier for me if i ordered them into folders.

In my main .gsc file I have this:

Code: Select all

main()
{
 maps\mp\_load::main();
 maps\mp\first-eles\ele1::main();
 maps\mp\first-eles\ele2::main();
 maps\mp\first-eles\ele3::main();
 maps\mp\first-eles\ele4::main();
 maps\mp\first-eles\ele5::main();
 maps\mp\first-eles\ele6::main();
 maps\mp\first-eles\ele7::main();
 maps\mp\first-eles\ele8::main();
 maps\mp\first-eles\ele9::main();
 maps\mp\first-eles\ele10::main();
}

Posted: January 4th, 2006, 8:20 pm
by Luke
Oh, that should be fine, but i dont see how its easier :P

Posted: January 4th, 2006, 9:18 pm
by Pedsdude
It's not fine though :cry:

Posted: January 4th, 2006, 11:05 pm
by Drofder2004
Pedsdude wrote:It's not fine though :cry:
then dont put them in folders. I'm not sure, but a guess is they cannot be put in folders :P

Why not just put them all in 1 gsc file?

Posted: January 5th, 2006, 5:09 pm
by Marshall
or just make 10 gsc's and link them with:

main()
{
maps\mp\_load::main();
maps\mp\ele1::main();
maps\mp\ele2::main();
maps\mp\ele3::main();
maps\mp\ele4::main();
maps\mp\ele5::main();
maps\mp\ele6::main();
maps\mp\ele7::main();
maps\mp\ele8::main();
maps\mp\ele9::main();
maps\mp\ele10::main();
}

Marshall

Posted: January 5th, 2006, 7:05 pm
by Pedsdude
They are 10 gsc's, just in a different directory.. I would have thought you could put:

maps\mp\first-eles\ele1::main(); instead of maps\mp\ele1::main();

It works fine when they are all in the same directory.

Re: Map error

Posted: January 6th, 2006, 4:06 pm
by Guest
Pedsdude wrote:Image

I'm working on a map... I have 10 elevators all identical, but in different positions.

I have my seperate .gsc files for each elevator in a seperate folder called "first-eles":
Image

Any ideas how to fix the error and what the problem actually is?
make sure you dont have a orig texture in it with no function :wink: :lol:

Posted: January 6th, 2006, 11:50 pm
by Pedsdude
The problem has been fixed m8 ;) Turns out you can't put them in seperate folders, which is a shame.

Posted: January 7th, 2006, 11:21 am
by Pwn-Rikku
i would of posted exactly what luke said, pure and folders, to late .. again.

Posted: January 7th, 2006, 9:16 pm
by Pedsdude
That's life :P