Search the Community
Showing results for tags 'firing range'.
Found 5 results
-
I would say that this is a pretty serious bug, considering the fact that after I do challenges sometimes, I lose my gun and ammo I had equipped before it and the weapon I was using in the firing range replaces the gun I had, so it can be used a duplication process also. Then after all that I can’t equip ammo anymore until I restart my game. But im more upset just about losing all this ammo.
-
Bugs I experienced during the free to play weekend
emory largent posted a topic in Xbox Technical Issues
The bugs I’ve noticed when playing Vigor during the free to play weekend. - I noticed in the firing range when using the silver pigeon, the weapons animation is both bugged visually and the fact that the gun would show you reloading during the countdown and then you wouldn’t have any ammo in your weapon by the time it’s needed so you have to reload immediately when you start any of the challenges, also I’m not sure if it was intentional to make the scarecrows so far away in the challenge or I’m just not using the pigeon correctly. - Sometimes plates or bottles would be missing from a challenge and I’d have to restart my game to fix it. - While in a game was a generally smooth experience for what time I was given, I would say that the audio is a bit weird for sounds such as footsteps. When in a duo with my friend I can’t tell wether or not my friend and me are the ones I’m hearing or enemies because the footsteps would be delayed for about a second after we would stop moving. - Gunplay is ok, I didn’t necessarily have problems during my time in game but instead with the firing range mostly. - The shelter menu sometimes would bug to whenever I was in my equip menu, I would try to bring over one piece of ammo and I can’t see the ammo count unless I turned tabs and went back, having to go back and forth from tabs after every couple of taps. Also it sometimes sent the whole pile of ammo to my inventory and back when I had it on the 1x option. This is was my general experience of about 5 hours of gameplay during the weekend and this is also my first time posting something on a forum and I’m not very good at expressing myself.- 3 replies
-
- 1
-
- firing range
- shelter
-
(and 3 more)
Tagged with:
-
Hello, I've been messing around with trying to make a simple firing range script that when activated puts the popup targets in down position. Then every let's say two seconds pops up a target, if not hit pop down and randomly select another target and repeat. If a target is hit have a counter count how many targets the player has hit then display at the end. This seems pretty straight forward but as I am new I am unable to successfully do this by myself. If anyone could help me make this I would be very appreciateive, thank you. I know there are a few other firing range scripts out there, I have tried a few such as moss targets and it is really nice, I am just looking to make my own simple one. score start at 0 count how many hits tgt1, tgt2 for knowing which targets to connect to.
-
Hello i am current building a firing range for a unit, there are 12 individual shooting positions i.e 10 lanes. I have 5 popup targets per 100 meters with the popup targets start at 300 meters out and continue to 700 meters so all together 25 popup targets per 1 lane, with all 12 lanes i have 300 popup targets in total. I am looking for a script or some way to have the popup targets stay down at the start then when a certain range is chosen on a laptop i.e " i choose 300 meters all the popup targets for 300 meters popup and the ppl will be able to shoot them, they will fall, and go back up again. Untill i choose an option to make them go back down again" After this i would like to choose a second range i.e 400 Meters and do the same thing. Can anyone help ive been trying to get this to work for a long time, Thanks
- 3 replies
-
- popup target
- script
-
(and 1 more)
Tagged with:
-
Pop-up Target script Error "Invalid number in expression"
j_murphy posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi, I am making a rifle range script for arma 3 and I am getting 2 problems: 1) When I run this the debugger returns ""Invalid number in expression on line 13", here is the function. targetPool = [tar1,tar2]; _numTargets = count targetPool; monitorTargets = false; hitNumber = 0; if (_numTargets > 0) then { monitorTargets = true; }; //Loop while we are being asked to while {monitorTargets} do { { if (animationState == "terc" && animationPhase == 1) { hitNumber = hitNumber + 1; hintSilent format["Hit number: %1", hitNumber]; } else if (animationState = "terc" && animationPhase == 0) { _this animate["terc",1]; } else { hintSilent "Miss!"; }; }forEach targetPool; }; 2) This not a fatal issue but it's not ideal. I can't call the function even though I have defined the class in a c++ header file. my description.ext: #include "Functions.h" and my Functions.h: class CfgFunctions { class crane { file = "functions\"; tags = "crane"; class PreTasks { //For funtions to be initialised before init obj's preInit = 1; class setWarInventory{}; class setRidgebackInventory{}; class startRange{}; }; class PostTasks { //for functions to be initialised after init obj's postInit = 1; class stopRange{}; }; }; }; //I forgot to end the CfgFunctions class with }; Thank you for any help.