everytime i select an object and click entity it gives me the worldspawn entity and im trying to go into the volume entity. I select volume then click n and worldspawn comes up. How do i fix this?
Because it's not a volume, you just textured it with the volume texture. You need to select it and on the 2D view right click and select info - volume.
If you want scripts / features made for you, then contact me by PM or email / skype etc it will cost you tho so if you have no intention of reciprocating don't even waste my time
This is what my gsc looks like: (somewhere in here is my elevator stuff and higher jump stuff i still cant get working lol):
Code Snippet
Plaintext
//================================================================================================ // Script Placer Z // By JR-Imagine // Visit CoDScript for support: [url=http://codscript.net]http://codscript.net[/url] //================================================================================================
main() { level.DLC3 = spawnStruct(); // Leave This Line Or Else It Breaks Everything
// Must Change These To Your Maps level.DLC3.createArt = maps\createart\nazi_zombies_contagion_art::main; level.DLC3.createFX = maps\createfx\nazi_zombies_contagion_fx::main; // level.DLC3.myFX = ::preCacheMyFX;
/*-------------------- FX ----------------------*/ DLC3_FX();
/*-------------------- FUNCTION CALLS - POST _Load ----------------------*/ level.zone_manager_init_func = ::dlc3_zone_init; level thread DLC3_threadCalls2(); }
dlc3_zone_init() {
add_adjacent_zone( "start_zone", "zone1", "enter_zone1" ); add_adjacent_zone( "zone1", "zone2", "enter_zone2" ); /* ============= ///ScriptDocBegin "Name: add_adjacent_zone( <zone_1>, <zone_2>, <flag>, <one_way> )" "Summary: Sets up adjacent zones." "MandatoryArg: <zone_1>: Name of first Info_Volume" "MandatoryArg: <zone_2>: Name of second Info_Volume" "MandatoryArg: <flag>: Flag to be set to initiate zones" "OptionalArg: <one_way>: Make <zone_1> adjacent to <zone_2>. Defaults to false." "Example: add_adjacent_zone( "receiver_zone", "outside_east_zone", "enter_outside_east" );" ///ScriptDocEnd ============= */
// Outside East Door //add_adjacent_zone( "receiver_zone", "outside_east_zone", "enter_outside_east" ); }
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
MZslayer11's Contact & Social LinksMZslayer11Service_Code_30#2655
Please use code tags for that large section of script
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
MZslayer11's Contact & Social LinksMZslayer11Service_Code_30#2655