UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - ZombieLord3433

I've checked lots of tutorials and wikis and checked to see if my scripting was correct and I don't see any error but there must be one. I'm not sure if it's in the gsc or not

dlc3_zone_init()
{

   add_adjacent_zone( "start_zone", "zone_revive", "enter_zone_revive" );
   add_adjacent_zone( "zone_revive", "zone_mp40", "enter_zone_mp40" );
   add_adjacent_zone( "zone_mp40", "zone_jugg", "enter_zone_jugg" );
   add_adjacent_zone( "zone_jugg", "zone_power", "enter_zone_power" );
   add_adjacent_zone( "zone_power", "zone_beer", "enter_zone_beer" );
   add_adjacent_zone( "zone_beer", "zone_speed", "enter_zone_speed" );
   add_adjacent_zone( "zone_speed", "zone_box", "enter_zone_box" );
   add_adjacent_zone( "zone_box", "zone_ppsh", "enter_zone_ppsh" );
   add_adjacent_zone( "zone_ppsh", "zone_pap", "enter_zone_pap" );
   /*
   =============
   ///ScriptDocBegin
   "Name: add_adjacent_zone( <zone_revive>, <zone_mp40>, <zone_jugg>, <zone_power>, <zone_beer>, <zone_speed>, <zone_box>, <zone_ppsh>, <zone_pap>, <flag>, <one_way> )"
   "Summary: Sets up adjacent zones."
   "MandatoryArg: <zone_revive>: Name of first Info_Volume"
   "MandatoryArg: <zone_mp40>: Name of second Info_Volume"
   "MandatoryArg: <zone_jugg>: Name of third Info_Volume"
   "MandatoryArg: <zone_power>: Name of fourth Info_Volume"
   "MandatoryArg: <zone_beer>: Name of fifth Info_Volume"
   "MandatoryArg: <zone_speed>: Name of sixth Info_Volume"
   "MandatoryArg: <zone_box>: Name of seventh Info_Volume"
   "MandatoryArg: <zone_ppsh>: Name of eighth Info_Volume"
   "MandatoryArg: <zone_pap>: Name of ninth 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" );
}
6 years ago
I'm not sure what the issue is as I have added the adjacent zones into the .gsc and have added the scripting to the doors and volumes so am not sure of the problem. Help plz.
6 years ago
Loading ...