Jump to content

Search the Community

Showing results for tags 'ai-firing'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 1 result

  1. Have you ever felt like AI is too accurate? With this script, you can confirm your feelings. This script was developed to test if suppression was working on AI. This script uses ACE3 to display some status messages and copy it to the clipboard. You can remove the status messages and use the Arma 3 copyToClipboard function to achieve a vanilla variant. In the following configuration rhs units are used. This can be changed to vanilla units. The first 6 lines defines some settings you can change. distances: distances are all distances that should be tested suppressions: suppression are all suppression levels that should be checked shooterclass,targetclass: The classes used as shooter and target magazine: magazines are refilled to keep AI shooting at full speed shotsuntil: shoots for each round. The result are copied in an Excel format into you clipboard. (Testet with Google Sheets) This should be used in a VR-Map. The units are spawned near 0,0. distances = [50]; suppressions = [0]; shooterclass = "rhs_msv_emr_rifleman"; targetclass = "B_Survivor_F"; magazine = "rhs_30Rnd_545x39_7N10_AK"; shotsuntil = 300; fnc_startRound = { params["_distance"]; shot = 0; hit = 0; _grp = createGroup east; shooter = _grp createUnit [shooterclass, [0,0,0], [], 0, "FORM"]; _grp = createGroup west; target = _grp createUnit [targetclass, [_distance,0,0], [], 0, "FORM"]; shooter addEventHandler ["Fired", { params ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_gunner"]; shot = shot + 1; }]; target removeAllEventHandlers "HandleDamage"; target addEventHandler ["HandleDamage", { params ["_unit", "_selection", "_damage", "_source", "_projectile", "_hitIndex", "_instigator", "_hitPoint"]; 0; }]; shooter removeAllEventHandlers "HandleDamage"; shooter addEventHandler ["HandleDamage", { params ["_unit", "_selection", "_damage", "_source", "_projectile", "_hitIndex", "_instigator", "_hitPoint"]; 0; }]; target addEventHandler ["Hit", { params ["_unit", "_source", "_damage", "_instigator"]; hit = hit +1; }]; shooter disableAI "PATH"; target disableAI "PATH"; shooter reveal target; target reveal shooter; }; fnc_saveToClipboard = { "ace_clipboard" callExtension _this; "ace_clipboard" callExtension "--COMPLETE--"; }; fnc_saveResults = { tab = toString [9]; output = ""; { { output = [output, (_x # 0) , tab , (_x # 1) , tab , (_x # 2) , tab , (_x # 3) , endl] joinString ""; } forEach _x; } forEach results; output call fnc_saveToClipboard; }; fnc_init = { call fnc_reset; ["Accuracy", {if (shot==0) exitwith{0}; (hit/shot);}, [false]] call ace_common_fnc_watchVariable; ["Suppression auf shooter", {getSuppression shooter}, [false]] call ace_common_fnc_watchVariable; ["shot", {}, [false]] call ace_common_fnc_watchVariable; ["hit", {}, [false]] call ace_common_fnc_watchVariable; ["distancebetween", {}, [false]] call ace_common_fnc_watchVariable; ["suppression", {}, [false]] call ace_common_fnc_watchVariable; }; fnc_reset = { shot = 0; hit = 0; results=[]; }; fnc_start = { { distancebetween = _x; resultForDistance = []; { suppression = _x; [distancebetween] call fnc_startRound; waitUntil {shooter setSuppression suppression; shooter addMagazine magazine; uiSleep 0.3; (shot>=shotsuntil);}; resultForDistance pushBack [distancebetween, suppression, hit, shot]; deleteVehicle target; deleteVehicle shooter; uiSleep 1; } forEach suppressions; results pushBack resultForDistance; } forEach distances; call fnc_saveResults; systemChat "Finished"; }; call fnc_init; run = [] spawn fnc_start;
×