
Posts
282
Respect
51Add +1
Forum Rank
Mr. Elemental
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!Did you use his 400fx fix?
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
If you use give all and are not getting all the weapons I would assume you didn't add those other weapons somewhere, or there is a problem with them such as wrong veiwmodel or knifemodel in the weapon file, or something to do with the models. I forget which place would cause this but verify you have it included in the _zombiemode_weapons.gsc that you are using for that mod, and in csv that you included the weapon file and models. dlc3_code also needs it in there if you didn't substitute the include method.
As far as the teddy, if it is Harry's stuff, I would ask him, but if it is stock then maybe you didn't enable random box locations in script?
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
the box is stock, also ive copied the weapon file and renamed it to "weaponame_upgraded" the upgraded one works in game, dunno why the normal one (that is the same just with a different name) doesnt work.
Also how do i check for random box locations?
I thought you said when you give all it doesn't give you those? Unless you mean you have done that since. I would check for typos then I guess if the only difference is the name...?
I assume you have installed sniperbolts stuff right? Did you adjust in your mapname.gsc the boxArray?
http://wiki.zombiemodding.com/index.php?title=Zombie_1.4_DR_Moving_Pandora_Boxes
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
what i mean is that the weapon that is suppsoed to be the upgraded one is in the map (i can see it via give all) but the normal one doesnt get loaded, (cant get it via give all nor box)
Also when i get a weapon out of the box only the monkeys and the wundervaffe work, if i take the raygun or raygun mk2 (harrys one) i get stuck with only one gun until i pick up the scavenger from the box (the scavenger is currently my starting gun for testing purposes.
I'll admit, I'm a little confused. First step I think is to verify everything is correct and take one weapon at a time. Please paste in the code you are using for a weapon and its upgrade:
add_weapon....
add_weapon_upgraded....
include_weapon....
add_weapon_upgraded....
And what you have in csv.... weapon,sp\thisgun....xmodel,andsoon...
If you have different models for the weapon and its upgrade then we can look at that as well. Does giving each weapon by itself give you the weapon? i.e. give weaponthatisn'tworking
DLC3_CODE.GSC
include_weapons()
{
include_weapon( "scavenger" );
include_weapon( "scavenger_upgraded", false );
include_weapon( "ae4_aw" );
include_weapon( "ae4_aw_upgraded", false );
include_weapon( "ray_gun2", true, ::factory_ray_gun_weighting_func );
include_weapon( "ray_gun2_upgraded", false );
include_weapon( "ray_gun", true, ::factory_ray_gun_weighting_func );
include_weapon( "ray_gun_upgraded", false );
include_weapon( "tesla_gun", true );
include_weapon( "tesla_gun_upgraded", false );
include_weapon( "zombie_cymbal_monkey", true, ::factory_cymbal_monkey_weighting_func );
}
_zombiemode_weapons.gsc
init_weapons()
{
add_zombie_weapon( "scavenger", &"ZOMBIE_WEAPON_COLT_50", 50, "", 8 );
add_zombie_weapon( "scavenger_upgraded", &"ZOMBIE_WEAPON_COLT_50", 50, "", 8 );
add_zombie_weapon( "ae4_aw", &"ZOMBIE_WEAPON_COLT_50", 50, "", 8 );
add_zombie_weapon( "ae4_aw_upgraded", &"ZOMBIE_WEAPON_COLT_50", 50, "", 8 );
add_zombie_weapon( "fraggrenade", &"ZOMBIE_WEAPON_FRAGGRENADE_250", 250, "" , 0 );
add_zombie_weapon( "zombie_cymbal_monkey", &"ZOMBIE_WEAPON_SATCHEL_2000", 2000, "vox_monkey", 3 );
add_zombie_weapon( "ray_gun", &"ZOMBIE_WEAPON_RAYGUN_10000", 10000, "vox_raygun", 6 );
add_zombie_weapon( "ray_gun_upgraded", &"ZOMBIE_WEAPON_RAYGUN_10000", 10000, "vox_raygun", 6 );
add_zombie_weapon( "ray_gun2", &"ZOMBIE_WEAPON_RAYGUN_10000", 10000, "vox_raygun", 6 );
add_zombie_weapon( "ray_gun2_upgraded", &"ZOMBIE_WEAPON_RAYGUN_10000", 10000, "vox_raygun", 6 );
add_zombie_weapon( "tesla_gun", &"ZOMBIE_BUY_TESLA", 10, "vox_tesla", 5 );
add_zombie_weapon( "tesla_gun_upgraded", &"ZOMBIE_BUY_TESLA", 10, "vox_tesla", 5 );
// Zombie Mode Stuff
include,zombiemode
include,zombiemode_dogs
// Zombie Mode Strings
localize,zombie
// Mod Strings
localize,mod
stringtable,maps/mapsTable.csv
// Edited Loadout For Zombie Heroes
rawfile,maps\_loadout.gsc
// Edited LastStand For Deep Water Like Sumpf
rawfile,maps\_laststand.gsc
// Edited For Developer_Script
rawfile,maps\_debug.gsc
// Scavenger
weapon,sp/scavenger
sound,scavenger,,all_sp
weapon,sp/scavenger_upgraded
fx,scvgr/fx_scavenger_explode
fx,scvgr/fx_scavenger_up_explode
//sound,level_start_quotes,,all_sp
//ae4
weapon,sp/ae4_aw
weapon,sp/ae4_aw_upgraded
sound,ndu_ae4,,all_sp
//ae4
// RAYGUN MKII (BO2)============================
xmodel,bo2_t6_wpn_zmb_raygun2_upg_view
xmodel,bo2_t6_wpn_zmb_raygun2_upg_world
xmodel,bo2_t6_wpn_zmb_raygun2_view
xmodel,bo2_t6_wpn_zmb_raygun2_world
xanim,viewmodel_raygun_mk2_ads_down
xanim,viewmodel_raygun_mk2_ads_fire
xanim,viewmodel_raygun_mk2_ads_up
xanim,viewmodel_raygun_mk2_fire
xanim,viewmodel_raygun_mk2_first_raise
xanim,viewmodel_raygun_mk2_idle
xanim,viewmodel_raygun_mk2_pullout
xanim,viewmodel_raygun_mk2_pullout_quick
xanim,viewmodel_raygun_mk2_putaway
xanim,viewmodel_raygun_mk2_reload_empty
xanim,viewmodel_raygun_mk2_sprint_in
xanim,viewmodel_raygun_mk2_sprint_loop
xanim,viewmodel_raygun_mk2_sprint_out
weapon,sp/ray_gun2
weapon,sp/ray_gun2_upgraded
fx,harrys/fx_mk2_upg_bullet
fx,harrys/fx_mk2_bullet
sound,ray_gun2,,,
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
That is strange. I don't even see where you added the xmodels for the ae4 for either one to work unless you have it, the one that is working, in the map somewhere on the ground?
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
inluding the weapon file as weapon,sp/weaponame doesnt make all the models,sounds etc... laoded?
I don't think so. I guess I could always be wrong, but anytime I add a gun I have to either have it in the map already, or add the xmodels to csv, view and world, like you see in the raygun part.
It's why I do things differently, such as I include,ae4_aw and make a csv with all that weapons stuff in it so my mod.csv doesn't' get poluted.
Edit: I don't think the xanims are needed though.
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
ill try for the weapon models, but still i need to fix the box.
I assume you have installed sniperbolts stuff right? Did you adjust in your mapname.gsc the boxArray?
http://wiki.zombiemodding.com/index.php?title=Zombie_1.4_DR_Moving_Pandora_Boxes
Well, one thing at a time I guess, but did you do this already?
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
yes, also ive tried including models and anims still nothing :C