Jump to content

Cyborg11

Member
  • Content Count

    310
  • Joined

  • Last visited

  • Medals

Everything posted by Cyborg11

  1. Cyborg11

    Faulty AV-8B controls

    You can't take off vertically with an AV-8B but you can land vertically :)
  2. Cyborg11

    Airport Template

    Nice template :) One suggestion: Could you please change the music of the video? Can't watch it because it's blocked in Germany :(
  3. Cyborg11

    A fix for Full Axis throttle mapping

    Tried it again and the WIP script looks like: var.deltaX = Joystick.X - var.lastX var.lastX = Joystick.x var.deltaY = Joystick.Y - var.lastY var.lastY = Joystick.y var.keyTrim = Keyboard.b if (var.keyTrim) PPJoy1.y = 0 PPJoy1.x = 0 else if (var.deltaX == 0) PPJoy1.x = Joystick.x endif if (var.deltaY == 0) PPJoy1.y = 0 endif if (var.deltaY > 0) if (Joystick.y > 0) PPjoy1.y = Joystick.y * 100 endif if (Joystick.y < 0) PPJoy1.y = -Joystick.y * 100 endif endif if (var.deltaY < 0) if (Joystick.y > 0) PPjoy1.y = -Joystick.y * 100 endif if (Joystick.y < 0) PPJoy1.y = Joystick.y * 100 endif endif endif debug = "KeyTrim: " + var.keyTrim + " JoystickX: " + Joystick.X + " lastX: " + var.lastX + " PPJoyX: " + PPJoy1.X + " DeltaX: " + var.deltaX + " JoystickY: " + Joystick.Y + " lastY: " + var.lastY + " PPJoyY: " + PPJoy1.y + " DeltaY: " + var.deltaY Works better than the last script. Maybe i can finish it.
  4. Cyborg11

    A fix for Full Axis throttle mapping

    Maybe you try it again with Driver Signature Enforcement Overrider to enable the testmode. Hope that works :) I tried the script again. The helicopter doesn't go back in neutralposition if your joystick is in neutral position. So you have to trim the PPJoy axis all the time to get the neutral position. Harvester, do you know which values the mouse sends to ArmA 2? Is there a scriptcommand to find that out? var.deltaX = Joystick.x - var.lastX var.lastX = Joystick.x var.deltaY = Joystick.y - var.lastY var.lastY = Joystick.y PPjoy1.x = var.deltaX * 200.0 // the multiplier is your sensitivity adjustment PPjoy1.y = var.deltaY * 150.0 // the multiplier is your sensitivity adjustment //PPjoy1.x = Joystick.x //PPjoy1.y = Joystick.y debug = Joystick.X + " DeltaX: " + var.deltaX + " PPJoyX: " + PPJoy1.X + " " + Joystick.Y + " DeltaY: " + var.deltaY + " PPJoyY: " + PPJoy1.y
  5. Steam sells the DLCs but you need the Steam version of ArmA 2 / OA to play them ;)
  6. Cyborg11

    A fix for Full Axis throttle mapping

    Which sensitivity value are you using, BlackLord? 10 doesn't work for me :(
  7. Nice :) But unfortunately it's useless for MP :( Because I don't think you are allowed to release the modified vegetation and objects so we won't have a signed key for it :( But I will try it and see how much FPS I can get with this :)
  8. They aren't released yet ;)
  9. You can use my script to get the classnames ;)
  10. The campaign is completly included in the lite version. Just checked the .pbo content.
  11. Awesome. FMP is a great anime.
  12. Oh damn you are right :D Next time I will read the post two times before I post an answer. ;)
  13. You know that we get the engine improvements for free? You'll get them with 1.56 ;)
  14. player (findDisplay 46) displayAddEventHandler ["KeyDown", "if (_this select 1 in actionKeys 'Chat') then { true } else { false };"] is false. The right code line is this which Worldeater posted already: (findDisplay 46) displayAddEventHandler ["KeyDown", "if (_this select 1 in actionKeys 'Chat') then { true } else { false };"]
  15. Maybe you can do it with setHit ;)
  16. Today I wrote a GlovePIE script to zoom with the mouse wheel. I hate it to zoom with FreeTrack so I decided to write a script to change that :) Requirements: PPJoy 0.8.4.6 - Mirror (Click on STÃHNOUT SOUBOR) GlovePIE 0.43 Virtual Joystick created by PPJoy Tutorial to install PPJoy on Windows Vista / 7 64 Bit: ScuYfagMixU You have to activate the test mode to install the unsigned driver from PPJoy. Easiest way to do that is to use the Driver Signatur Enforcement Overrider. I included the line to fix the Throttle axis. If you don't want to use it, you don't have to. :D For more information see this thread by TheHarvesteR. // Script by Cyborg11 // @ 05.11.2010 // v1.1 // Joystick Fix (Full Throttle) by TheHarvesteR (First line) // http://forums.bistudio.com/showthread.php?t=108410 // Description: // With this script you can zoom with your mouse wheel // - Press Ctrl + Alt + Space to change the toggle mode // - Toggle mode means that you have to press the activate (default: Shift + B) // only once to zoom everytime with your mousewheel. // - Non-Toggle mode means that you have to hold the activate key to zoom // - Shift + B + Spacebar is the Reset button // In the block below you can change the keys, the default toggle value // (default: false -> Non-Toggle mode) and the sensitive of the zoom levels // 120 means 2 zoom levels (2x zoom in / 2x zoom out) // 240 means 4 zoom levels (4x zoom in / 4x zoom out) // 360 means 6 zoom levels (6x zoom in / 6x zoom out) // 480 means 8 zoom levels (8x zoom in / 8x zoom out) // Changelog // v1.1 // - Fixed: Toggle Zoom // - Added: Zooming is disabled when chatting (because Backspace is running every // 10ms to prevent the menu from showing every time you zoom) // - Added: Now you can aim while holding the right mouse button. // That means that you have to hold the right mousebutton to look through // the ironsight/scope. To use it you have to remove the 'Right Mousebutton' // from the optics in the controls and set the // variable 'var.aimwhileholding' to true. Uses the 0 button on the numpad // for the optics (default for optics in arma). // (Requested by: ])rStrangelove => http://forums.bistudio.com/showpost.php?p=1780768&postcount=5) // v1.0 // - Release Download: http://cyborg11.cy.funpic.de/ArmA2/Downloads/ArmA2.PIE Usage: Open the script ArmA2.pie with GlovePIE, change the keys and click on the Run button Start ArmA 2 and go to your Controls Scroll down to the entries "Zoom in (continuous)" and "Zoom out (continuous)" "Zoom in (continuous)" should be "PPJoy Virtual Stick X- Rotate" (mousewheel up - scroll fast so ArmA 2 can recognize the axis) "Zoom out (continuous)" should be "PPJoy Virtual Stick X+ Rotate" (mousewheel down - scroll fast so ArmA 2 can recognize the axis) Stop the script Set the variable 'var.firstSetup' to false Restart the script and have fun If you can't set the axis ingame don't worry. Open your YourName.ArmA2OAProfile file in your Documents \ ArmA 2 folder, scroll down to "keyZoomContIn" and change it to this: keyZoomContIn[]={524299,198147}; keyZoomContOut[]={524293,198155};
  17. How should it work? Should the script presses the optics button after a certain time? :D In my opinion it's useless. But maybe I missunderstood you :)
  18. Yes GlovePIE is awesome. @DaveP: It should be possible too to control the lean with the mouse x axis :) But first I have to find a way to disable the aiming when you press the Toggle button.
  19. Cyborg11

    HMS Queen Elizabeth

    Another bug: Vehicles can't use the elevator :( So the internal hangar bay is useless atm. :eek:
  20. Cyborg11

    HMS Queen Elizabeth

    Some errors in the .rpt if you start a mission with the ship:
  21. Cyborg11

    A fix for Full Axis throttle mapping

    Thanks for that fix :) Did the same with the slider (on my X52) for the brake. PPJoy1.analog2 = (MapRange(-Joystick.Z, -1, 1, 0, 1)) PPJoy1.analog4 = (MapRange(Joystick.slider, -1, 1, 0, 1)) I wonder if it's possible with GlovePIE and PPJoy to use the mouse wheel to zoom in/out instead of using the FreeTrack/TrackIR Z axis :o
  22. This is a useful script for mission maker :) Features: Example: http://cyborg11.cy.funpic.de/ArmA2/Bilder/showclass1.4_vehicle.JPG http://cyborg11.cy.funpic.de/ArmA2/Bilder/Showclass1.4_Man+ACE.JPG http://cyborg11.cy.funpic.de/ArmA2/Bilder/ShowClass_Object.JPG arma2.rpt example for soldiers (+ ACE): Download: http://cyborg11.cy.funpic.de/ArmA2/Downloads/ShowClassname1-4.utes.7z Changelog:
×