Jump to content

DaveTheGreat

Member
  • Content Count

    5
  • Joined

  • Last visited

  • Medals

Community Reputation

1 Neutral

About DaveTheGreat

  • Rank
    Rookie
  1. Hey guys, I was wondering if anyone could help me fix my earplug script im working on. Pretty much trying to override the F1 key here but its overriding every other key as well. Any help would be greatly appreciated. [] spawn { waitUntil {!isNull(findDisplay 46)}; (findDisplay 46) displaySetEventHandler ["KeyDown", "_this call keyspressed; true"]; }; keyspressed = { _keyDik = _this select 1; _shift =_this select 2; _ctrl = _this select 3; _alt = _this select 4; _handled = false; switch (_this select 1) do { case 59: { if (_ctrl) then { 1 fadeSound 0.2; hint "Earplugs in!"; } else { 1 fadeSound 1; hint "Earplugs removed!"; }; }; }; _handled; };
  2. Are there any functions to draw custom text on any random point of the x and y axis?
  3. DaveTheGreat

    Unplayable multiplayer on decent/high end rig

    i5 6600k (Overclocked to 4.6 GHz) 16 GB Memory (Corsair Vengeance LPX - 3200mhz: I run around 2800mhz I think) GTX 970 (EVGA SSC) I generally get 50-70 FPS on a high population KOTH match. Weird you're getting such low frames, even on base settings I was getting around 40-60 FPS. Maybe try overclocking your pc and trying this: -high -nosplash -world=empty -skipIntro -cpuCount=4 -exThreads=7 -malloc=default -noLogs -noPause -maxMem=2000 Inside the ARMA 3 Launcher: 1.) Go to the PARAMETERS Tab 2.) Click All Parameters ----------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- UNDER THE BASIC TAB ----------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- 3.) Click "Show static Background in menu" 4.) Click "Skip logos at startup" ----------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- UNDER THE ADVANCED TAB ----------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- 5.) Check "CPU count" and set it to the number of CPU cores you have 6.) Click "Extra threads" and select all 3 options 7.) Click "Memory allocator" and type "tbbmalloc" 8.) Click "No Logs" 9.) Click "World" and set it to "empty" ----------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- UNDER THE Author TAB ----------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- 10.) Click "No Pause" ----------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- Go to your Documents folder, then go to your ARMA 3 folder. Inside there you should fine a file called ARMA3.cfg; open it with notepad. Look for the settings: GPU_MaxFramesAhead=3; GPU_DetectedFramesAhead=100; Change them to: GPU_MaxFramesAhead=1; GPU_DetectedFramesAhead=1; Make sure vsync=0; and make sure refresh=144;
  4. Looks great! Keep up the good work!
  5. DaveTheGreat

    [SOLVED] addMissionEventHandler

    What exactly are you trying to achieve with this script?
×