Jump to content

Spatsiba

Member
  • Content Count

    219
  • Joined

  • Last visited

  • Medals

Everything posted by Spatsiba

  1. Spatsiba

    looking for free to use models

    BI released old content from previous arma games here: https://www.bohemia.net/community/licenses/licensed-data-packages
  2. Spatsiba

    [MP] =BTC= Hearts and Minds

    Is there any reason the mission uses homemade init_player.sqf (run on client from init.sqf) instead of initPlayerLocal.sqf, and all the functions are compiled using script instead of description.ext etc?
  3. Spatsiba

    Role Whitelisting

    I don't think there's a way to do that. Which is why stuff like this exists. https://forums.bohemia.net/forums/topic/208629-restrict-class-to-certain-users/
  4. Considering simplicity I think you could just: Create a file called "initPlayerLocal.sqf" in your root mission folder, next to "mission.sqm" etc. Create a folder called "scripts" in your root mission folder. Create another file called "getInVehicleHint.sqf" inside the "scripts" folder. //Copy paste this into "initPlayerLocal.sqf". execVM "scripts\getInVehicleHint.sqf"; //copy paste this inside getInVehicleHint.sqf //Loops. while (true) do { sleep 0.1; hintSilent "Goto vehicle"; if ((player distance veh1) < 2) then {hintSilent "Get in vehicle"}; //2 metres is quite close. I'd recommend 4 or so. //exits the loop. if (vehicle player == veh1) exitWith {}; }; Keep in mind this is a somewhat dirty way to do it and I'll probably get someone shout at me for teaching bad practice BUUUUT it is the simplest way and therefore probably the easiest to understand and begin learning from.
  5. Spatsiba

    We need Arma 3 on consoles

    This is pure speculation but wouldn't the PC version have more funding if work on consoles never started? You also have yet to explain how all these keybindings would work on console without ruining the game. I have nothing against them making a console version in itself. I just don't think that it's a good move considering variables such as money, time, manpower etc. It's my analysis that if ArmA4 was worked on for consoles that's valuable time, money, effort, compromises that could've been put into developing the game on PC. For what I want they shouldn't waste their time on console ports. It's also worth noting that I find consoles pointless since it's just a limited PC. Why not just get one without child lock features?
  6. Spatsiba

    We need Arma 3 on consoles

    Render, controls, gameplay limitations. As well as the PC feeling like a console port now are some ways the console version "ruined" DayZ imo. Of course console will help fund all versions but the majority of sales were made for PC. BI did have money problems which lead to arma 3 being what it is afaik but your argument that consoles fund the whole pc version makes it seem like you think console gave all the profit. ArmA 4 simply can not work on a console the way I would like the successor of ArmA 2 to be.
  7. Spatsiba

    Arma3 Ragdolls...your thoughts?

    I think everything physics related in arma needs to be much heavier. Cars go flying, tanks go flying, crashed planes bounce up and once again go flying, ragdolling people go flying. A prone enemy shot in the head go flying, a csat insect shot in the chest where he has no plates simply just flinch into the sky then proceed to fire back until I shoot him 10 more times and he does a backflip then land with his legs over his head, sometimes just to bounce up again and go flying. I'm not using any mods but there needs to be more weight and stiffer joints to pretty much everything.
  8. Spatsiba

    We need Arma 3 on consoles

    They ruined dayz to accomodate consoles. I do realise BI is a business here to make money but please for the love of god you've strayed too far away from your roots already don't ruin ArmA as well!
  9. does this include the "zeus eagle" swooping down and eating the nano "Bug" uav?
  10. My top things in terrains are micro terrain. Ditches, uneven ground, sewers next to roads, small bridges etc. Things to keep you from driving off road and mountains etc placed in such a way that it rewards you for walking around and not play mountain goat simulator. In arma there's usually no reason to not drive straight to where you're going or run through the forest. This is the complete opposite to real life where you simply can't walk any faster than you can crawl through a lot of forest and your vehicle would get stuck/break down off road.
  11. Spatsiba

    Dedicated Server Questions (general)

    Correct.
  12. { vehicle _x allowDamage false; } count units group player; try that? Haven't touched arma in a while so could be wrong.
  13. Spatsiba

    Dedicated Server Questions (general)

    You can host GM missions with the standard dedicated server package from steam Subscribe to mission on workshop > search up "where to find arma 3 missions from workshop" > move that into the mpmissionsfolder of your ds
  14. Could you name the provider? This sounds like terrible customer service if you've asked them to setup a server for you. That's their job.. It's different if you want them to develop gamemodes and certain mods etc but simply a vanilla server with a working config and default mission file should be included.
  15. Contact the host provider. They should be able to set the server up for you. You're paying them after all. As for missions you just need to find the ones you like and run them. Again, the provider *should* help you with this.
  16. Spatsiba

    Javelin Rockets non-existent

    ArmA2 ace javelin needs a binocular slot item. I think it's the targeting system but I can't remember. Haven't played since 2011 ish.
  17. Hey! Sorry if this is hijacking the thread too much but I thought it was relevant. I wrote an FSM for day/night for my server and thought I'd share it as an alternative option to the while true loop. If anyone has info about which one would be most performance friendly or ways of improving it I'd love to hear (and it's the main reason I'm posting in this already "solved" topic). "time.fsm": As I'm not the most experienced I'm not entirely sure what the smartest way to show an FSM would be but I tried to make it readable.
  18. Keep in mind !mineActive will return true if the mine is blown up, too. There is no way to detect if a mine was disarmed only referencing the mine AFAIK.
  19. NOTE: This might be somewhat faulty. I wrote it in the forums code thingie so might have some spelling misstakes or such. Basically, it's a modified version of the script I use for repairing vehicle on military servers that's been adapted to racing. Recommend making several "Pits" for the different "teams/karts". INSTRUCTIONS: Create a trigger on player present. In condition field put: !isEngineOn (thislist select 0); On activation put: null = (thislist select 0) execVM "repair.sqf"; Repair.sqf
  20. Spatsiba

    Knock Down Script HELP

    I think variables need to be local. Try: [_pla, true/false] remoteExec ["setUnconscious", _pla];
  21. Something like private _units = [Class1, class2, class3]; if (isClass(configfile >> "CfgPatches" >> "cool_infantry")) then { //Find this one in the config for the mod you're using _units = [cool_class1, cool_class2, cool_class3]; };
  22. Spatsiba

    Best doll ?

    I don't play with this mod anymore so it might be incompatible with current game version but it "fixed" the broken ragdoll in vanilla imo.
  23. That's fine though. It's only in arma 3 that THE ENTIRE MAP IS EMPTY! It's nice to see what arma 3 was somewhat meant to look like 🙂
×