Jump to content

stanhope

Member
  • Content Count

    1194
  • Joined

  • Last visited

  • Medals

Everything posted by stanhope

  1. I don't know how it works in VBS but in arma you can right click on the gate and find the object in the config viewer, there you'll be able to find all the names of the animate-able parts of something. My guess is that the other gate is gonna be called gate_1_open or gate_open_1 or something along those lines.
  2. stanhope

    Some save game ideas...

    Combine https://community.bistudio.com/wiki/Arma_3:_Event_Handlers#Killed with a function that's something along the lines of: someFncName = { someGlobalVar = someGlobalVar + 1; if (someGlobalVar % 10 == 0) then { //save game }; };
  3. stanhope

    cba update issue

    What does the message say exactly?
  4. stanhope

    BSOD when Alt-Tabing out of EDEN editor

    So have you verified your game files and does the problem also occur when you're playing without mods?
  5. stanhope

    BSOD when Alt-Tabing out of EDEN editor

    Have you verified your game files? Are you playing modded? Did you scan for viruses?
  6. stanhope

    Cannot join any arma 3 server

    I suggest getting in touch with whoever hosts the server, they're probably in a better position to try to fix this issue.
  7. stanhope

    Cannot join any arma 3 server

    Can you join any other servers with the same modset?
  8. stanhope

    Cannot join any arma 3 server

    If you run arma without mods, can you join the official servers and select a role there?
  9. Easiest workaround I can think of is using setMarkerAlpha, you can get that marker using allMapMarkers, getMarkerPos and distance2D. Maybe a nearestMarker command also exist? Idk.
  10. stanhope

    Battleye Kick Help!

    Because your battleye filters are picking up something in that line. Go to the battleye folder of your server and look for a scripts.txt file, either the 8th or 9th line should contain something that's in that line.
  11. stanhope

    Completely new need help.

    The tutorials and campaign are a great way to get you familiarized with the controls, arma has a lot of those. After that, hop onto a coop server you can find in the server browser. And then pick a milsim unit and apply to become a member (there might be milsim units where you don't have to apply but they're few and far between).
  12. stanhope

    Arma3 crashes on launch

    For starters, that's the dedicated server you're trying to launch, you won't be able to play through that. So just launch it the normal way through steam. Also, verify the integrity of your game files (steam, right click on arma, properties (at the bottom), local files (3rd from the left), verify integrity of game files (2nd from the bottom)) then try again.
  13. Have you verified that the other positions are valid? The comment on the first line indicates that even though you defined them they'll be checked for validity anyway.
  14. stanhope

    crash to desktop issue

    Could you share which mod was causing the issue so other people also know this?
  15. stanhope

    How can I load a saved game.

    2 things to keep in mind here: This is not normal behaviour you're describing. I've never had it nor do I know anyone who's ever had it Arma 3 has way, way more to offer than just the campaign. The campaign is nice but the real hours are going to be spend in user created content in either single or multiplayer. That being said, I don't know what could be causing the issue you're describing. My suggestion is to make a manual saves as well so you can continue from those and maybe verify your gamefiles through steam.
  16. stanhope

    How can I load a saved game.

    What difficulty level are you playing at? Rookie, regular or veteran?
  17. stanhope

    How can I load a saved game.

    Did you click revert or replay the first time?
  18. stanhope

    How do you get the scroll menu?

    Scroll with the scroll wheel on your mouse.
  19. What kind of multiplayer are you looking to get into? Coop, PvP, survival, roleplay, king of the hill, capture the island, escape from the island, ...?
  20. stanhope

    crash to desktop issue

    Does the problem occur when you're playing without mods?
  21. stanhope

    crash to desktop issue

    You've got to make that link public if you want people to be able to view those logs. But as to the issue: have you verified your game files and are you running any mods?
  22. Have you verified the integrity of your game files through steam?
  23. Did you change anything about the UI size? I'm guessing that's the most likely culprit but also verify the integrity of your game files just to be sure.
  24. Create an addaction that sets a global variable on the player that wants to be teleported using setVariable (for example: player addAction ["Ready to TP", {player setVariable ["_readyToTp", true, true]}];) And have an action on you that teleports all players who have said variable (for example: player addAction ["TP all ready players", { {if (_x getVariable ["_readyToTp", false]) then {_x setPos (getPos player)};} forEach allPlayers;}];) (code is untested but you should get the idea). I'd add some conditions to it so the actions don't show up for players if they're already ready or if they're too far from base.
×