-
Content Count
219 -
Joined
-
Last visited
-
Medals
Everything posted by Spatsiba
-
looking for free to use models
Spatsiba replied to TheRoostergod's topic in ARMA 3 - FIND OR OFFER EDITING
BI released old content from previous arma games here: https://www.bohemia.net/community/licenses/licensed-data-packages- 1 reply
-
- 1
-
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?
-
Action on doubleClick for custom inventory item
Spatsiba replied to Tova's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yes. -
Anyway to make AI prioritize “Frontline” spawn points?
Spatsiba replied to Blitzen88's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yes. What's a "spawn point"? -
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/
-
if...then...else trobuleshooting
Spatsiba replied to obrien979's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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. -
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?
-
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.
-
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.
-
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!
-
[WIP] Jedburgh Outfitters... formerly known as Black Hornet PRS
Spatsiba replied to Nichols's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
does this include the "zeus eagle" swooping down and eating the nano "Bug" uav? -
What are things you'd like to see in a Terrain?
Spatsiba replied to Vectif's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
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. -
Correct.
-
Making squad vehicles indestructible via debug
Spatsiba replied to predoc's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
{ vehicle _x allowDamage false; } count units group player; try that? Haven't touched arma in a while so could be wrong. -
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
-
help setting up a dedicated server.cfg
Spatsiba replied to Spoony (DayZ)'s topic in ARMA 3 - SERVERS & ADMINISTRATION
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. -
help setting up a dedicated server.cfg
Spatsiba replied to Spoony (DayZ)'s topic in ARMA 3 - SERVERS & ADMINISTRATION
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. -
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.
-
Make time run faster at night.
Spatsiba replied to easyeb's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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. -
Making a trigger activate when i disarm a IED
Spatsiba replied to musclebust's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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. -
Trigger Area for automated Kart repair
Spatsiba replied to Bobblehead84's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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 -
I think variables need to be local. Try: [_pla, true/false] remoteExec ["setUnconscious", _pla];
-
Mod filter script in game
Spatsiba replied to Fr3eMan's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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]; }; -
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.
-
[Released] Phronk's Furniture Script
Spatsiba replied to phronk's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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 🙂