Jump to content

Search the Community

Showing results for tags 'test'.



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 7 results

  1. was trying to test how a vehicle would drive on the roads of my map but when I place a vehicle then switch to game mode the vehicle won't move, it just sits there spinning the tires. I am very new to this all the help is very appreciated.
  2. If any developers are reading this, official conflict is an amazing mode to play. At the beginning of every game, the performance is 10x better than modded community servers. The issue arises when AI won't de-spawn and over time it causes huge performance issues. This seems like an easy fix with a de-spawn timer on dropped items. I think we would see a big leap in performance on official servers. Best Regards, KLG Footage Of AI Bug
  3. Hi, I just want to open this post for people who want to test with the New Rewrite of ACE Medical. It is a very simple script that can help you understand the states in which the new medical system alternates. I hope you find it useful. init.sqf addMissionEventHandler ["Draw3D", { { _unit = _x; if (!(isNil "_unit") AND ((side _unit) == west OR (side _unit) == civilian))then{ _pos = ASLToAGL getPosASL _unit; _headPos = [_pos select 0, _pos select 1, (_pos select 2) + 1.2]; _heartRate = _unit getVariable ["ace_medical_heartrate", 00]; _bloodPressure = _unit getVariable ["ace_medical_bloodpressure", [00,00]]; _bloodVolume = _unit getVariable ["ace_medical_bloodvolume", 00]; _Text = format ["HR: %1 | BP: %2 | BV: %3",_heartRate toFixed 1,_bloodPressure,_bloodVolume toFixed 1]; drawIcon3D ["", [1, 1, 1,1], _headPos, 0, 0, 0, _Text, 2, 0.03, "PuristaBold"]; _headPos = [_pos select 0, _pos select 1, (_pos select 2) + 0.5]; _state = _unit getVariable ["cba_statemachine_state0",""]; _text = ""; if(_state == "cardiacarrest")then{ _text = format["cardiacarrest (%1 s)", (_unit getVariable ["ace_medical_statemachine_cardiacarresttimeleft",0]) toFixed 1]; }else{ _text = _state; }; drawIcon3D ["", [0.1, 0.45, 1,1], _headPos, 0, 0, 0, _text , 2, 0.03, "PuristaBold"]; }; } forEach allUnits; }]; Spyke
  4. Test Lab Workshop for ARMA III, ver. BETA 0001 (2019) This download is compatible with APEX game version 1.7 and higher Drive Link Download: Test Lab New Live readMe file This download includes mission editor files. When my mission folder began to overflow with script test scenarios and VR compositions, I decided to create a master workshop file to use in the future. I considered what features should be built in. Hopefully this tool will be helpful for you, too. INSTALLATION Install the folder 0_testLAB.VR to your ArmA 3 mission folder (usually in Documents). Examples included: Images: Video: THANKS to everybody at: Bohemia Forums Check out our Patreon page Ascina Illustration & Design Arma Public License No Derivatives (APL-ND)
  5. FallujahMedic -FM-

    Exploding Cow or Rabbit

    Years ago I played a mission where cows or rabbits (cant remember which) would attack the players. The players had to kill the animals before they got within a certain distance of the player or a satchel would detonate (that was attached to the animal). Does anyone else remember this mission or who made it?
  6. STABLE build : 1.48.131785+ branch: STABLE (note: PROFILING/PERFORMANCE/RC is compatible with STABLE) password: -not needed- ^ this password unlocks specific (branch) on steam *noteworthy: memory crashes fixed, allocation crashes fixed, (crashes from KOTH, BreakingPoint, Wasteland, Epoch etc.) and many generic crashes, tweaks for better performance etc. play IT, break IT, report IT http://feedback.arma3.com/ atm. tracking serious crash bug ! Purpose of this testing is stress test the servers to extreme if there is lag/desync or other issue then we can capture it to try fix it ;) note: make sure you don't select DEV branch (1GB+ from stable to DEV (same apply from DEV to RC)) note: if you get kicked for some BattlEye script restriction (e.g. #22) goto Editor, load Altis, exit editor, try-rejoin the server note: KOTH mission restarts when team reach 100 tickets on capture, next session auto-start soon after note: server might be restarted if needed, I will announce it in global chat ahead note: VON lag/stutter still unsolved for global/side channels (really problematic bug) note: guide how change branches : http://forums.bistudio.com/showthread.php?149411-How-to-change-Arma-3-branches-between-STABLE-amp-DEVELOPMENT-versions-STEAM-client Reddit post http://www.reddit.com/r/arma/ STEAM discussion post http://steamcommunity.com/app/107410/discussions/0/ BIForum post http://forums.bistudio.com/showthread.php?187697
  7. there is new server PROFILING build : 1.36.128482+ branch: RC (not compatible with STABLE, yet much better !) password: Arma3Update136RC ^ this password unlocks the beta(branch) on steam play IT, break IT, report IT http://feedback.arma3.com/ 2 servers up (up to 102 players each) - EUROPE KOTH (x2 XP) 3rd person 94.23.112.9:2102 1 servers up (up to 120 players each) - NORTH AMERICA KOTH (x2 XP) 3rd person 192.99.47.216:2102 Purpose of this testing is stress test the servers to extreme if there is lag/desync or other issue then we can capture it to try fix it ;) note: make sure you don't select DEV branch (1GB+ from stable to DEV (same apply from DEV to RC)) note: if you get kicked for some BattlEye script restriction (e.g. #22) goto Editor, load Altis, exit editor, try-rejoin the server note: KOTH mission restarts when team reach 100 tickets on capture, next session auto-start soon after note: server might be restarted if needed, I will announce it in global chat ahead note: VON lag/stutter still unsolved (really problematic bug) http://forums.bistudio.com/showthread.php?149411-How-to-change-Arma-3-branches-between-STABLE-amp-DEVELOPMENT-versions-STEAM-client Reddit post http://www.reddit.com/r/arma/comments/2nm86t/arma_3_update_136_rc_release_candidate/ STEAM discussion post http://steamcommunity.com/app/107410/discussions/0/616188677801958552/ BIForum post http://forums.bistudio.com/showthread.php?183653
×