Wow, that is really strange. So your saying if you change all ae4_aw to ae4_aw2, then it will work? Your not getting any errors when you build mod? And you don't happen to have an ignore csv by chance do you? And you did compile your map with the right specific mod selected last time you compiled?
no errors, nothing of nothing, i have everything checked up, also ive noticed two things:
i cant get the raygun mk2 or the normal raygun while using the box for the "first time" if i try to pick it up the game refuses to give it to me.
IF the box gives me a teddy bear after re appearing in the same spot i will be able to ge tthe mk2 or the normal one, but if i want to change ill need to wait another teddy bear.
If i pick up the monkeys the game removes my frag grenades, ill need to wait until next round to get new ones.
Reinstalling harrys perk and deleting the mod in the local folder ive been able to NOT get stuck after trying to get the raygun mkw (or normal ) from the box the first time, this means i was able to switch between my two weapons.
Wow, well I am sorry, I can't seem to figure out what is going on. Hopefully someone else will understand better than I did, what is happening. Good luck.
i cant get the raygun mk2 or the normal raygun while using the box for the "first time" if i try to pick it up the game refuses to give it to me.
IF the box gives me a teddy bear after re appearing in the same spot i will be able to ge tthe mk2 or the normal one, but if i want to change ill need to wait another teddy bear.
Check the weighting_func for Ray Gun and Mk2. In the default one:
Code Snippet
Plaintext
default_ray_gun_weighting_func() { if( level.box_moved == true ) { num_to_add = 1; // increase the percentage of ray gun if( isDefined( level.pulls_since_last_ray_gun ) ) { // after 12 pulls the ray gun percentage increases to 15% if( level.pulls_since_last_ray_gun > 11 ) { num_to_add += int(level.zombie_include_weapons.size*0.15); } // after 8 pulls the Ray Gun percentage increases to 10% else if( level.pulls_since_last_ray_gun > 7 ) { num_to_add += int(.1 * level.zombie_include_weapons.size); } } return num_to_add; } else { return 0; } }
You won't get any Ray Gun before the box moves. And after getting one you'll need to wait for another move:
Have you tried copying the upgraded weapon file that works and renaming it something like ae4_aw_test, then adding another line in weapons gsc for that new gun file, adding to csv, checking it and building mod? If that works, replacing the one that is not upgraded and see if that works? Have you tried to give weaponname, not just give all?
Have you tried copying the upgraded weapon file that works and renaming it something like ae4_aw_test, then adding another line in weapons gsc for that new gun file, adding to csv, checking it and building mod? If that works, replacing the one that is not upgraded and see if that works? Have you tried to give weaponname, not just give all?
ive tried give weapon name, it doesnt work ill try creating a third weapon files since copying the upgraded one doesnt work
nope, but as i said it doesnt get loaded since "give all" doesnt give it to me, it strange vie tryed and re-tryed nothing seems to work
changed weapon file ? Put the xmodelname in mod.csv ? Checked if you were calling it in mod.csv? Called in zombiemode_weapons ? If this all don't work try adding it in a ugx Sp stock map.