Q1184
Member-
Content Count
342 -
Joined
-
Last visited
-
Medals
-
I take my hat off to you, good sir!
-
This collection is glorious. How about an 18th century wig: http://ep.yimg.com/ca/I/yhst-16383186999789_2258_451012951 And what's this? http://image.toutlecine.com/photos/z/o/r/zorro-serie-tv--1957-08-g.jpg
-
Ammo not firing from magazine
Q1184 replied to slatts's topic in ARMA 2 & OA : ADDONS - Configs & Scripting
class CfgAmmos -
Apparently they also wouldn't mind installing CCTV in everyone's apartment.
-
This might work: class Extended_Killed_EventHandlers { class Your_T72-based_class { class your_addon { killed = "_this setfuel 0"; }; }; }; This will exploit the fuel check at the beginning of the destruction script and will make it abort.
-
Is it so strange that one should feel uncomfortable knowing his pictures taken in a private environment are near-instantly made available to everyone in the world willing to look? How about someone's notes on what you do or how you feel about something? But the fact is, with the technical progress, more and more of our activities are being registered somewhere beyond our will, be it CCTV or a search engine requests log. FB is just another way this tendency manifests, this time with people willingly making pieces of their (and not only) lives public. The uncontrolled footprint of every person tends to increase, making individual or group profiling much easier, for better or for worse. Sure looks handy in cop shows.
-
if (isServer) then { _chute = "ParachuteMediumWest_EP1" createvehicle [getpos _plane select 0,getpos _plane select 1,3000]; _chute setpos [getpos _plane select 0,(getpos _plane select 1)+10,(getpos _plane select 2)]; };
-
You get 2 vehicles because the script is run on both the server and the client. With 20 clients you'll get 21 parachutes. Just add isServer check before spawning to make sure it only spawns once.
-
There used to be an explanatory picture, but the hosting site pulled it for some reason. Here it is again:
-
-
Local variable returning null
Q1184 replied to Kolmain's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
On line 6, instead of if (isNil (_man getVariable "UnlockTime")) then { Use if (isNil {(_man getVariable "UnlockTime")}) then { You need the {} brackets for isNil to evaluate a piece of code. -
Camera earthquake shake?
Q1184 replied to roguetrooper's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Camera shake should be enabled in difficulty options for the shake commands to work, maybe that's why it doesn't work for you. -
ACE 1.10 (Advanced Combat Enviroment) for OA/CO
Q1184 replied to AnimalMother92's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
It wasn't meant to be snotty or personal in any way. If you want a translation, here goes: "We can't do anything about it, so just leave it off". And lighten up. -
A spit screen to practise grenade throwing / firing
Q1184 replied to Joe98's topic in ARMA 2 & OA - SUGGESTIONS
Kronzky's Target Range conKord's Proving Ground -
Are smoke rounds possible from AT?
Q1184 replied to slatts's topic in ARMA 2 & OA : ADDONS - Configs & Scripting
If you want units to fire it from the shoulder, you'll have to stick to simulation "shotrocket" or "shotmissile". Smoke effects can be assigned through the 'explosioneffects' entry. You'll have to look for a suitable smoke effects class that is already configured (maybe tank smoke grenades or arty smoke shell), or cook one up yourself. There's also a scripted way - using fired EH follow the rocket until it impacts and createvehicle a smoke grenade kind of ammo at that position.