Jump to content

asuseroako

Member
  • Content Count

    202
  • Joined

  • Last visited

  • Medals

Everything posted by asuseroako

  1. asuseroako

    Infected Script by Gulozwood

    I don't know if this code will serve the purpose, try experimenting with setObjectMaterial command and injury rvmats _me setObjectMaterial [0, "A3\Characters_F\Common\Data\basicbody_injury.rvmat"]; The effect is that the spawned infected would have a 'wounded' appearance particularly on their clothes with the units not actually injured. The video below shows what I mean. Note though that some clothes are not showing the 'injured' model despite using the same setObjectMaterial code earlier posted. Not sure if there is actually an 'injured skin' model we can play with. I hope that helps.
  2. asuseroako

    Zee Identity Pack

    That would be great! Something to look forward to. Thanks in advance. Infected textures plus blood-stained clothes would complement. Maybe its Quereshi causing the rig issue ? The most recent vid I made below utilizes this code for the faces... _faces = ["Cheung","Mason","Oakes","Smith"]; _face = _faces call BIS_fnc_selectRandom; ... and it seem to work well. :)
  3. asuseroako

    Zee Identity Pack

    Indulgence zeealex for using your units with gulozwood's script. The ladies still look beautiful despite being 'infected' :inlove:
  4. asuseroako

    Infected Script by Gulozwood

    Try below: 1) Enable FEMAL3 heads module by zeealex (add @FEMAL3 to your target line) 2) Look for the file fnc_stuff.sqf inside the sample mission folder provided by gulozwood then: a) After the line _randomHeavy=15; // 1/_randomHeavy chance de spawn un blindé , add the following _faces = ["Cheung","Mason","Oakes","Quereshi","Smith"]; _face = _faces call BIS_fnc_selectRandom; b) After the lines _me forceAddUniform _chosenmil; and _me forceAddUniform _chosencloth; , add _me setFace _face; 3) Open Arma 3, Go to Editor, useStratis map then load the sample mission (InfectedScript_ExempleMission). I hope that helps :)
  5. asuseroako

    Infected Script by Gulozwood

    Hi gulozwood, Thanks for sharing the script. I'm liking that the infecteds attack other Blufor units and vice versa plus of course the player. For a twist, I have them use female heads. It's not being lucky dude getting chased by women considering they are infected. :D
  6. asuseroako

    Arma3 Videos

    Trying out some advanced voice commands on the official ArmA 3 Showcase: Vehicles There are different approaches to accomplishing objectives. Mission starts around 4:50 AM. For purposes of being able to see the surroundings, I moved the time . I took down a civilian driving a pickup truck with the intention of so I can approach the rear end of the camp disguised as a civilian. Armed with a suppressed rifle, I then approached the 2 sentry guards and neutralized them. After which, I and grabbed some gear so I can penetrate the Camp Rogain disguised in friendly uniform. to the stolen rifle and took down every single enemy inside the camp then and some ammo before stealing the car (MRAP). Objective 1 complete.I then drove the to the second objective. En route, I encountered soldiers on roadside barricade but they are no match to the MRAPs main weapon. I then moved further to the next camp and wrecked several MRAPs to accomplish the second objective. Then I was given a side objective to sabotage the communications tower which I gladly complied. Finally, exfiltratation. I drove near the coastline to met an ally. It was foggy so I . A motor boat was available to take us out of the battlefield.You see, voice commands / voice control in Arma 3 is not limited to commanding AI troops or squad members. Its also about conveniently controlling the player character and the game itself. Thanks for reading and watching. :cool:
  7. asuseroako

    Arma3 Videos

    Steal enemy or friendly uniform in Arma 3 with help from GlovePIE voice commands (advanced script). Order player character in Arma 3 to steal uniform using your own voice. No inventory interaction, no function keys, no action/scroll menu interaction, no keybindings, no radio triggers. Easier this way! :cool:
  8. Bohemia Interactive bossman Marek Španěl. Awesome! :cool:
  9. asuseroako

    DWVAC issues

    Shift_E says to try it first with Notepad as active Window since VAC sends all keys to the active Window. Now trying it out myself using the 'ARMA3_INT' profile, voice recognition is toggle on/off using Left Alt+V key combination. If you would open up the VACBuilder under Profiles tab, you will notice that PTA and PTD (push to activate/ push to deactivate) are both set to NONE on that mentioned profile. Very important: see to it that your machine is able to hear you. You can check your mic settings via Start > Settings > Control Panel > Sound. Under Recording tab, click Microphone. The Microphone settings window opens up then under Levels tab, slide Microphone level to 70 and Microphone Boost to +20db then apply settings. Switch ON VAC first using Left Alt + V combination. You will notice a green O icon on the VAC notification icon. Now, with a blank Notepad currently being the active window, say some activation phrases like 'One'. It should open up Windows Help and Support since the profile is programmed to press F1 button. In Arma 3 game, it would not open up Windows Help and Support but instead, selects soldier one. Trying out the phrase 'Select Team Red', it should type on the Notepad window, <space>991 and 'Select Team Yellow', sends <space>994 Therefore, on ARMA3_INT profile, using the phrase 'Select Team Red' sends space 991. I do it differently on GlovePIE. Instead of space 991, I use: Left Shift + F1 for Team Red Left Shift + F2 for Team Green Left Shift + F3 for Team Blue Left Shift + F4 for Team Yellow Left Shift + F5 for Team White And the code below is the exact GlovePIE profile codes that I use for Team selection (referring to my A3 GlovePIE Basic.PIE file) //--Begin Calling your Teams commands if said("team red",6) then press(key.LeftShift) press(key.F1) wait 50 ms release(key.LeftShift) release(key.F1) end if if said("team green",6) then press(key.LeftShift) press(key.F2) wait 50 ms release(key.LeftShift) release(key.F2) end if if said("team blue",6) then press(key.LeftShift) press(key.F3) wait 50 ms release(key.LeftShift) release(key.F3) end if if said("team yellow",6) then press(key.LeftShift) press(key.F4) wait 50 ms release(key.LeftShift) release(key.F4) end if if said("team white",6) then press(key.LeftShift) press(key.F5) wait 50 ms release(key.LeftShift) release(key.F5) end if //-- End Calling your Teams commands My suggestion: Try above combinations for Team selection instead of space 991, 992, 993 etc. Just for info, code below is from ArmA3_INT.xml, taken from JoJoTheSlayer's profile (ArmA 3 VAC v308) <command name="Select Team Red" phrase="Select Team Red" category="Red Team"> <key extended="SPACE" extended2="NONE" pause="100" repeat="1" duration="20"/> <key value="9" extended="NONE" extended2="NONE" pause="100" repeat="1" duration="20"/> <key value="9" extended="NONE" extended2="NONE" pause="100" repeat="1" duration="20"/> <key value="1" extended="NONE" extended2="NONE" pause="100" repeat="1" duration="20"/> </command> Notice the SPACE 9 9 1 for 'Select Team Red' ? That's 4 keys pressed. Using Left Shift + F1 does the same in game. 2 keys only. Works with the latest ArmA 3 game version. :)
  10. asuseroako

    DWVAC issues

    Here is a similar thread about issue with VAC. Maybe you can try the suggestions I've posted there.
  11. Like this one? Guess who started that thread :)
  12. asuseroako

    DWVAC issues

    Run VACSystem.exe with administrator rights. Have you tried that? There is an instructional video which may be related to your problem.I didn't know that VAC now needs to change a few keybindings for it work with Arma 3 (referring to )
  13. asuseroako

    DWVAC issues

    If I remember correctly (was once a VAC user), VACBuilder got this 'Test Phrase' button where you can test if your activation phrases are recognized. Try playing with that feature first before testing the actual profile in-game. As a tip just in case you haven't done so yet: Train for accuracy. As with all other programs which use Windows speech files, to achieve more accurate speech recognition, you have to train your machine to better understand you. You can do so by going to Windows Control Panel > Speech Recognition Options then click the 'Train your computer to better understand you' link Check your microphone settings also. On my machine, I have to enable Microphone Boost to about +20db and use Mic level of 70 in order for a voice recognition program to better hear me. In-game, I have to adjust certain audio levels to a minimum so as not to interfere with voice recognition (ie Music, Effects, Radio). Try adjusting your settings and see if it would also help. Voice control in ArmA 3 be it with VAC, Articulate or GlovePIE have a lot of conveniences to offer. Have fun with it. :)
  14. Have you tried attaching an enemy car to the target unit then do a deleteCollection?
  15. asuseroako

    Zee Identity Pack

    Female combatants as reinforcements? Why not. Thanks again for sharing, zeealex! :)
  16. asuseroako

    FLAY Hang Glider Mod

    Rocket booster for FLAY HangGlider mod (by Sabre[Dust]) Easy lift this way :cool:
  17. Played with Arma 3's ParticleEffects and got this landing thrusters thingy working on the Wander Panzer. Thought it would match the parachutes of the epic armour drop script. Why scroll through an action menu when you could just say: Drop bipedal support! ... easier this way. :)
  18. asuseroako

    Arma3 Videos

    Wanzer zero six ... Why interact with the action menu when you can just say what you want. The convenience of voice commands! :cool: Played with ArmA 3 Particle Effects and Killzone_Kid's epic armour drop on Wander Panzers. Somehow got the particle effects working this time. Pleased with the result.
  19. asuseroako

    Zee Identity Pack

    Thanks for sharing! :)
  20. Thanks for the update, gmwo. Very destructive weapon. I think the beam rifle would benefit from a shortened reload time.
  21. asuseroako

    Arma3 Videos

    Order your squad member or AI troops to drop weapon or take weapon on ground using voice commands. One of the many conveniences voice control can do in game with help from GlovePIE script (advanced). Undeniably easier this way! :)
  22. @Chillroy Exactly. That's the code. Size 1 and size 2 dust respectively. And I thought you have a pbo extractor with you. :) -- On a similar topic about ParticleEffects, here is a demo of spawn clouds and death clouds. Arcadey? Will serve purpose in my project as some sort of visual indicator.
  23. Alright gents. Here's the download link to the sample mission. 5 targets, each with different size of dust cloud on death. I hope that helps. :)
  24. Thank you! I like these mini WAPs. Makes good companion in battlefield. :coop:
×