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 - maddog6767

are you using ugx mod?   if so then watch this guys vid   they might help you.
 
https://www.youtube.com/watch?v=Ep7FRahubBo&list=PLwlA8xZdjWAg0o9EGpticKPRm8LYZ6yk2
1 year ago
how many zombie spawners do have  place in zone1   to many some times will make the game  freeze up.
1 year ago
I was just wondering if there was a tut that shows how to add bo 1 perks and  to waw   when useing ugx_mod standalone_v1.0.4.
 
i really like know how add bo perks. like  Deadshot,Electric_cherry,Mulekick,Whos_who_point,Widows,tomstone.
1 year ago
it is working with setup map you made every thing is work but when i try to replace your map to map i made  and still name it maddog i spawn with no gun now .  any ideas why ?
1 year ago
i thought that might have something to do with it so i took the map setup you sent me and put in my root/mod and my appdata/local/myname/ actvison/call of duty/mods
 
then a lauch the game and then i get a 400 fx error. so i am think if use t4 would that work
 
 
1 year ago
thanks for help and the setup map. but i must be doing something wrong i  do not know what it could  be .
 
here is my step makeing a map
 I  use ugx_mod standalone_v1.0.4   i do ever step in this video tells me to do  https://youtu.be/jaFFtOzukSU
 
before i build iwd in laucher i put the files you sent me  in my mod folder then i build the iwd  but  i am still get same  problem.
 
   i  use UGX Script Placer 2.0.1
 
 then recomple my map patch  the recomple my map  
 
 the i use CoD Project Mover as the video tells me above.
1 year ago
when you ask if it in my maps\_zombiemode_perks.gsc
 
or you ask if  it in my mod\mymapname\maps or call of duty root raw\maps
 
it in my mod\maps\_zombiemode_perks.gsc
1 year ago
help  any idea why ?
1 year ago
Does any one know what this error is    .(Exceeded limit of 1 'game_map_mp' assets)
3 years ago
I was just wondering? Can a person use the ugx scipt placer to help makeing  call duty waw maps  use for muliplayer dm,td,ctf,sd,dom or is only good for makeing zombie maps.
3 years ago
how are you trying to start the game?
7 years ago
i compile my map every time i change something on my map and i compile my mod every time  i change something in my myname.gsc file .
7 years ago
i gave my door triggers the kvp  script flag  enter_zone1  enter_zone2 etc
7 years ago
zombies will spawn in the start zone but they will not spawn in any other zone i did want tut  told me to and the video about zoning  here my myname.gsc
Code Snippet
Plaintext
#include common_scripts\utility; 
#include maps\_utility;
#include maps\_zombiemode_utility;
#include maps\_zombiemode_zone_manager;
#include maps\_music;
#include maps\dlc3_code;
#include maps\dlc3_teleporter;

main()
{

level.DLC3 = spawnStruct(); // Leave This Line Or Else It Breaks Everything

// Must Change These To Your Maps
level.DLC3.createArt = maps\createart\zombieland_art::main;
level.DLC3.createFX = maps\createfx\zombieland_fx::main;
level.DLC3.myFX = ::preCacheMyFX;

/*--------------------
FX
----------------------*/
DLC3_FX();

/*--------------------
LEVEL VARIABLES
----------------------*/

// Variable Containing Helpful Text For Modders -- Don't Remove
level.modderHelpText = [];

//
// Change Or Tweak All Of These LEVEL.DLC3 Variables Below For Your Level If You Wish
//

// Edit The Value In Mod.STR For Your Level Introscreen Place
level.DLC3.introString = "zombieland";

// Weapons. Pointer function automatically loads weapons used in Der Riese.
level.DLC3.weapons = maps\dlc3_code::include_weapons;

// Power Ups. Pointer function automatically loads power ups used in Der Riese.
level.DLC3.powerUps =  maps\dlc3_code::include_powerups;

// Adjusts how much melee damage a player with the perk will do, needs only be set once. Stock is 1000.
level.DLC3.perk_altMeleeDamage = 1000;

// Adjusts barrier search override. Stock is 400.
level.DLC3.barrierSearchOverride = 400;

// Adjusts power up drop max per round. Stock is 3.
level.DLC3.powerUpDropMax = 3;

// _loadout Variables
level.DLC3.useCoopHeroes = true;

// Bridge Feature
level.DLC3.useBridge = false;

// Hell Hounds
level.DLC3.useHellHounds = true;

// Mixed Rounds
level.DLC3.useMixedRounds = true;

// Magic Boxes -- The Script_Noteworthy Value Names On Purchase Trigger In Radiant
boxArray = [];
boxArray[ boxArray.size ] = "start_chest";
boxArray[ boxArray.size ] = "chest1";
boxArray[ boxArray.size ] = "chest2";
boxArray[ boxArray.size ] = "chest3";
boxArray[ boxArray.size ] = "chest4";
boxArray[ boxArray.size ] = "chest5";
level.DLC3.PandoraBoxes = boxArray;

// Initial Zone(s) -- Zone(s) You Want Activated At Map Start
zones = [];
zones[ zones.size ] = "start_zone";
level.DLC3.initialZones = zones;

// Electricity Switch -- If False Map Will Start With Power On
level.DLC3.useElectricSwitch = true;

// Electric Traps
level.DLC3.useElectricTraps = false;

// _zombiemode_weapons Variables
level.DLC3.usePandoraBoxLight = true;
level.DLC3.useChestPulls = true;
level.DLC3.useChestMoves = true;
level.DLC3.useWeaponSpawn = true;
level.DLC3.useGiveWeapon = true;

// _zombiemode_spawner Varibles
level.DLC3.riserZombiesGoToDoorsFirst = true;
level.DLC3.riserZombiesInActiveZonesOnly = true;
level.DLC3.assureNodes = true;

// _zombiemode_perks Variables
level.DLC3.perksNeedPowerOn = true;

// _zombiemode_devgui Variables
level.DLC3.powerSwitch = true;

// Snow Feature
level.DLC3.useSnow = false;

/*--------------------
FUNCTION CALLS - PRE _Load
----------------------*/
level thread DLC3_threadCalls();

/*--------------------
ZOMBIE MODE
----------------------*/
[[level.DLC3.weapons]]();
[[level.DLC3.powerUps]]();


maps\_zombiemode::main();



/*--------------------
FUNCTION CALLS - POST _Load
----------------------*/
level.zone_manager_init_func = ::dlc3_zone_init;
level thread DLC3_threadCalls2();
}

dlc3_zone_init()
{
/*
=============
///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" );


          add_adjacent_zone( "start_zone", "zone1", "enter_zone1" );
          add_adjacent_zone( "zone1",     "zone2", "enter_zone2" );
          add_adjacent_zone( "zone2",     "zone3", "enter_zone3" );
          add_adjacent_zone( "zone3",     "zone4", "enter_zone4" );
          add_adjacent_zone( "zone4",     "zone5", "enter_zone5" );
          add_adjacent_zone( "zone5",     "zone6", "enter_zone6" );
          add_adjacent_zone( "zone6",     "zone7", "enter_zone7" );
          add_adjacent_zone( "zone7",     "start_zone", "enter_start_zone" );


}

preCacheMyFX()
{
// LEVEL SPECIFIC - FEEL FREE TO REMOVE/EDIT

// level._effect["snow_thick"] = LoadFx ( "env/weather/fx_snow_blizzard_intense"




i gave  my door trigger with kvp of the zone i was entering 

all so i am not get the power ups at all in my map and i have a trigger  with right kvp as well

 can  any one help?

7 years ago
Loading ...