Tried to lay some smoke with
"SmokeShellRed" camcreate getpos trig1
but no luck.
Has something changed from OFP?
Tried to lay some smoke with
"SmokeShellRed" camcreate getpos trig1
but no luck.
Has something changed from OFP?
i have the same problem for explosions... help!!!
Let BIS make the engine, the community creates the game.
Ok, now i do:
Call {"Shell73" createvehiclelocal getpos trig1}
Trig one is an object.
Nothing happens...
How can i create an explosion using this? i want to simulate a bonbing in a base... help!
That command is for creating vehicles or objects, there is nothing in the CfgVehicles about explosions or smoke.![]()
Shell_73 won't work because there is no such class in ArmA! Try instead:
<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">
"Sh_105_HE" createVehicle (getPos trig1);
[/QUOTE]
As for creating smoke, you might find following one useful:
<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">"#smokesource" createVehiceLocal (getPos yourobject);[/QUOTE]
Well, I tried
"SmokeShellRed" createVehiceLocal (getPos trig1)
trig1 being a game logic, but it didn't like it. "missing ;"
Got it
Smoke="Smokeshell" createvehicle [(getPos Name select 0),(getPos Name select 1),0]
Smoke="Smokeshell" createvehicle (getPos Name select 0,getPos Name select 1)
^
That should also work, a bit shorter![]()
Hi.
I'm very new to mission editing and some of these instructions are unclear to me. I'm creating a mission where a Blackhawk is sent to pick up a downed crew from another blackhawk. So far everything works great.
Here's what I'm missing:
As the helicopter approaches the pick up zone, I'd like one of the soldiers on the ground to release green smoke.
I don't know how to do this. Is it a trigger, and if so, how do I implement it? I don't even know where to put the scripts listed earlier in this thread.
Could someone be kind enough to step me through the necessary steps to make the dude release smoke.
Thanks in advance!