POWER UP......
+12
herby1
GaL4cT1c
Palyarmerc
nfmz1
oANIMUSo
tjdagger
Regg
TheGeneral
John J. Stevens
HomerPepsi
nepgeargo
dewi316
16 posters
Page 1 of 3
Page 1 of 3 • 1, 2, 3
POWER UP......
:idea:Ok General Zhang has finally paid the electric bill , so we can finally get some lighting inside the buildings and huts. This ive done by using a particle fx, quite simply placing the fx inside the building the particle fx you need is X_SMOK_ROK_Master 1.
Description.... AAM (javelin) SMOKE TRAIL
Now heres the twist, the effect creates a bright continuous light as you can see, but also a small rolling ball of smoke. This was slightly annoying but luckily i stumbled across an answer, you need to bury the effect at least 9 meters underground to hide the smoke ball, so obviously when setting the effect you need to set the height at - 9 meters.
This is the new updated version in Mssn form, since it was released with the EDX kit.
This update has the lights turned down slightly for a more subtle effect.
If anyone thinks of anything to make this better feel free to say, its not perfect but its the best ive seen. DOWNLOAD NOW!
Heres hoping you mission makers add this in your game, I think it looks ok.
cheers dewi.
Description.... AAM (javelin) SMOKE TRAIL
Now heres the twist, the effect creates a bright continuous light as you can see, but also a small rolling ball of smoke. This was slightly annoying but luckily i stumbled across an answer, you need to bury the effect at least 9 meters underground to hide the smoke ball, so obviously when setting the effect you need to set the height at - 9 meters.
This is the new updated version in Mssn form, since it was released with the EDX kit.
This update has the lights turned down slightly for a more subtle effect.
If anyone thinks of anything to make this better feel free to say, its not perfect but its the best ive seen. DOWNLOAD NOW!
Heres hoping you mission makers add this in your game, I think it looks ok.
cheers dewi.
Last edited by dewi316 on Wed 23 Dec 2015, 20:57; edited 8 times in total
dewi316- Veteran
- Location : swansea
Points : 179
Reputation : 22
Join date : 2012-12-19
Re: POWER UP......
nice idea ;D but i thought the usmc general should pay for the bill since they have already taken the island
nepgeargo- Points : 62
Reputation : 0
Join date : 2013-03-20
Re: POWER UP......
This is using one particle effect in each building, as you can see the control tower is fully lit up on all floors.
I also placed the fx in both hangars and the barracks building at the back of the base and you can see the fx from over 300 yards away.
remember the fx is placed - 9 meters underground
Double click the image, especially the hangar shot to get the full picture.
I also placed the fx in both hangars and the barracks building at the back of the base and you can see the fx from over 300 yards away.
remember the fx is placed - 9 meters underground
Double click the image, especially the hangar shot to get the full picture.
Last edited by dewi316 on Sun 20 Dec 2015, 10:22; edited 4 times in total
dewi316- Veteran
- Location : swansea
Points : 179
Reputation : 22
Join date : 2012-12-19
Re: POWER UP......
Yes very nice! With a simple timer function checking the mission time an entire group of these effects can be turned on/off for the buildings that can be entered.
John J. Stevens- Admin
- Location : WV/PA
Points : 285
Reputation : 22
Join date : 2012-12-19
Re: POWER UP......
As for code on how to turn the lights on and off, I suggest checking the EDX generated waypoints.lua for the "AutoLights" functions. These functions handle weapon and vehicle lights, but the basic structure is there for time checking and such.
Regg- Veteran
- Points : 143
Reputation : 10
Join date : 2013-02-22
Re: POWER UP......
combine what Regg said with the placeable fx mod.
tjdagger- Admin
- Location : Silverdale, Queensland, Australia
Points : 107
Reputation : 7
Join date : 2012-12-17
Age : 49
Re: POWER UP......
Maybe put together a module that has a trigger zone for each village and markers for the lights already placed in the buildings.
Regg- Veteran
- Points : 143
Reputation : 10
Join date : 2013-02-22
Re: POWER UP......
Regg wrote:Maybe put together a module that has a trigger zone for each village and markers for the lights already placed in the buildings.
Regg, thats exactly what i was thinking. As im rubbish at coding, I'll have too leave it up to the great and good.
Heres hoping someone takes this on, would be great too see this in mission.
dewi316- Veteran
- Location : swansea
Points : 179
Reputation : 22
Join date : 2012-12-19
Re: POWER UP......
Just had another thought for the logistics of a module...
Tracking each village would be 'simpler', but a per building check would allow the lights to turn off when a building is damaged. More work, but more realistic.
I'm almost done with my over-haul of tjdagger's random spawn module (some great new features, but same simple setup). Just need to put together a proper readme! Maybe I'll play around with this next.
Tracking each village would be 'simpler', but a per building check would allow the lights to turn off when a building is damaged. More work, but more realistic.
I'm almost done with my over-haul of tjdagger's random spawn module (some great new features, but same simple setup). Just need to put together a proper readme! Maybe I'll play around with this next.
Regg- Veteran
- Points : 143
Reputation : 10
Join date : 2013-02-22
Re: POWER UP......
take some C4 and damage one building at a time and write down the names that pop up using this script
function onObjectDamage(guid)
OFP:displaySystemMessage("Object Damage - guid: "..guid)
end
Then use this script to kill lights to each building.
function onObjectDamage(guid)
if OFP:isBuildingPartDestroyed("x05_y11_bd07_mbrblhse_01_01") or
OFP:isBuildingDestroyed("x05_y11_bd07_mbrblhse_01_01") then
OFP:destroyEntitySet(Lightingset)
end
The name here is a building in Mologa. You could probably also use an object to represent the power for the whole location if you wanted a mission where killing the power to all buildings first is part of the attack.
NOTE: For some reason some buildings register in the message but their names don't carry any weight in the script for triggering commands. In other words some building names recognized as damaged won't kill lights when told to do so. You'll have to go back and check the ones that don't, when you're finished, and just not put lights in them. Most work tho, so it's worth the effort.
Of course you might be able to find an object that will trigger it, and put it in the building so that if it's damaged... kill lights.
function onObjectDamage(guid)
OFP:displaySystemMessage("Object Damage - guid: "..guid)
end
Then use this script to kill lights to each building.
function onObjectDamage(guid)
if OFP:isBuildingPartDestroyed("x05_y11_bd07_mbrblhse_01_01") or
OFP:isBuildingDestroyed("x05_y11_bd07_mbrblhse_01_01") then
OFP:destroyEntitySet(Lightingset)
end
The name here is a building in Mologa. You could probably also use an object to represent the power for the whole location if you wanted a mission where killing the power to all buildings first is part of the attack.
NOTE: For some reason some buildings register in the message but their names don't carry any weight in the script for triggering commands. In other words some building names recognized as damaged won't kill lights when told to do so. You'll have to go back and check the ones that don't, when you're finished, and just not put lights in them. Most work tho, so it's worth the effort.
Of course you might be able to find an object that will trigger it, and put it in the building so that if it's damaged... kill lights.
Re: POWER UP......
Hi Guys,
Not sure if I shard this but here is a link to a placeable mod that also deals with mines, IED's and particle effects.
http://filebeam.com/464bcaa21910d36004dc45200c8fd429
With a bit of tweaking, it would easily do all, proposed above.
Not sure if I shard this but here is a link to a placeable mod that also deals with mines, IED's and particle effects.
http://filebeam.com/464bcaa21910d36004dc45200c8fd429
With a bit of tweaking, it would easily do all, proposed above.
tjdagger- Admin
- Location : Silverdale, Queensland, Australia
Points : 107
Reputation : 7
Join date : 2012-12-17
Age : 49
Re: POWER UP......
Aswell as the obvious towns, huts, bunkers, something I think adds some more character and I think shouldn't be overlooked, are the small recon points.
You could say these wouldnt have electricity, yes but if there using oil fired lamps this could be plausable. If your placing roadside checkpoints also, I think the troops might use some kind of oil fired lamp and so I think this looks quite reasonable.
These screens were taken by the bunker, be glad too hear what everyone else thinks?
You could say these wouldnt have electricity, yes but if there using oil fired lamps this could be plausable. If your placing roadside checkpoints also, I think the troops might use some kind of oil fired lamp and so I think this looks quite reasonable.
These screens were taken by the bunker, be glad too hear what everyone else thinks?
dewi316- Veteran
- Location : swansea
Points : 179
Reputation : 22
Join date : 2012-12-19
Re: POWER UP......
The idea of spawning campfires and other night lighting is important if you are evading capture or sabotaging various locations.
The idea of crossing the island to escape means avoiding the enemy and creating plausible distractions if needed adds a level of gameplay beyond the wet work approach normally used.
Add a triggerzone that is slightly larger than each ambient light source (~15 meters) as a MOOD trigger for the local enemy (as in Searchand Destroy) and most will want to keep there butts away from camps or towns.
Camps at the right chokepoint would prove troublesome to the mission.
The idea of crossing the island to escape means avoiding the enemy and creating plausible distractions if needed adds a level of gameplay beyond the wet work approach normally used.
Add a triggerzone that is slightly larger than each ambient light source (~15 meters) as a MOOD trigger for the local enemy (as in Searchand Destroy) and most will want to keep there butts away from camps or towns.
Camps at the right chokepoint would prove troublesome to the mission.
John J. Stevens- Admin
- Location : WV/PA
Points : 285
Reputation : 22
Join date : 2012-12-19
Re: POWER UP......
wow that is awesome I would loe to see this added to existing missions. Would make a whole new mission out of alot of them. Great work!!!
nfmz1- Veteran
- Location : New Jersey
Points : 431
Reputation : 24
Join date : 2012-12-16
Re: POWER UP......
The lighting bill just got more expensive.
Yeah, I went there the whole freekin island lit up like a Christmas tree.
Yeah, I went there the whole freekin island lit up like a Christmas tree.
dewi316- Veteran
- Location : swansea
Points : 179
Reputation : 22
Join date : 2012-12-19
Re: POWER UP......
This is awesome I wanna play missions with this!!!Anyway to add this to existing missions?
nfmz1- Veteran
- Location : New Jersey
Points : 431
Reputation : 24
Join date : 2012-12-16
Re: POWER UP......
Exellent job dewi! Bout time somebody did it. Glad it wasnt me Tell us how long that took you.
Page 1 of 3 • 1, 2, 3
Page 1 of 3
Permissions in this forum:
You cannot reply to topics in this forum
|
|