Pulverizer
Member-
Content Count
1257 -
Joined
-
Last visited
-
Medals
-
inlesco started following Pulverizer
-
Request for Objects - Compass and Binoculars w/Scribe Lines, 6400 mils
Pulverizer replied to c-rock's topic in OFP : O2 MODELLING
Hi. You can find one in WarGames League mod (WGL), under addons/wgl_ui.pbo->compass/ Looks like this: http://dslyecxi.com/images/ofp/ttp/weapons/wgl_compass.jpg Default compass is in dta/(hwtl/)data3D.pbo->kompass.p3d You may need to change the texture paths with this tool or a hexeditor to get it working: ftp://ftp.ofpr.info/ofpd/unofaddons2/TxtPathSwap.rar -
I know this is a beta, but this is absolutely unplayable!
Pulverizer replied to ZEBOV's topic in ARMA 3 - MULTIPLAYER
There's literally dozens of non-Valve games that use VAC, get banned on one and you can't play on VAC secured servers in any game: http://en.wikipedia.org/wiki/Valve_Anti-Cheat#Games_that_support_VAC -
Only tracers without gun WW2
Pulverizer replied to guziczek101's topic in OFP : MISSION EDITING & SCRIPTING
You can camCreate tracer ammo but it's really weird seeing them without hearing the shots, given the low view distances. You could use real gunners with invisible targets for a more authenting feel, but scripting life-like movement for them would take some effort. -
Activate objective by camera or binoculars?
Pulverizer replied to circassian's topic in OFP : MISSION EDITING & SCRIPTING
You could use condition: player knowsAbout general > 0.5 Player could then use binocs and right click on the general to "reveal" the target. For a camp without the general, knowing about other units there could be used as the condition. -
Just need a little guidance with an addon issue.
Pulverizer replied to PivMan's topic in OFP : MISSION EDITING & SCRIPTING
Yes I am sure. If you don't see it, you just haven't placed enough units to cause a noticeable fps drop. With 756 units standing still doing nothing, on my PC I get 52 fps and if the AI is running forwards 30 fps. Without the AI it's 220 fps on Everon. The scripting commands simply don't allow you to exceed the limit (createUnit will not create a unit, join grpNull will not disband the unit from its group). If you'd manage to bypass the limits with some trickery, it would probably cause the game to crash or some other unexpected results such as schizophrenic AI. DAC was originally made for OFP. -
Just need a little guidance with an addon issue.
Pulverizer replied to PivMan's topic in OFP : MISSION EDITING & SCRIPTING
Even idly walking AI use considerable CPU because of the path finding. Yes, it would involve scripting, why, is that an issue? Spawned units count, you cannot exceed group count or group size. If it's internet MP, with these kinds of numbers you are pretty much forced to create the AI dynamically or have terrible desync as every moving unit will use server bandwidth constantly. There are several ready MP compatible solutions but you will probably have to modify them slightly for your needs. Dynamic AI-creator (DAC) and Chain of Command AI-on-demand come to mind. -
Just need a little guidance with an addon issue.
Pulverizer replied to PivMan's topic in OFP : MISSION EDITING & SCRIPTING
Is spawning civilian AI only to exist near the player out of question? That would solve both bad performance and the group limit. When I tried maxing out two sides (1512 units) with every unit fighting, my fps drops to single digits. OFP wasn't programmed to have that many AI active at once. -
They're still douchebags. Why?
-
Try using createVehicle instead of camCreate. I think camCreate is intended for creating special fx, so the planes might not have all the necessary properties that "real" planes do for the trigger to activate.
-
Not really, a trigger can also have a condition to only activate locally (eg, condition: local serverLogic && this, onActivation: obj1done=true; publicVariable "obj1done"). I would rather say that in some cases it's a waste of resources to make a trigger for a condition that only one client or the server needs to check.
-
Triggers only check their condition every 0.5 seconds. You can verify this with a condition like: call{player globalchat format["%1",time];false}
-
It's still not really Full HD though. It would be 960x1080 stereoscopic (with the screen split in the middle for two eyes). A Full HD 3D monitor would basically have twice the horizontal detail, which can be quite important in a game like Arma.
-
It would be a good publicity stunt to be one of the very few games to actually officially support Oculus Rift, but not much more. You would be at a huge disadvantage at 640x800 resolution compared to proper monitors, and the consumer model is at least a year or two off.
-
Create a wargame style mission with challenging enemy AI
Pulverizer replied to ProfTournesol's topic in OFP : MISSION EDITING & SCRIPTING
I would start by googling articles (or even buying a book) about turn-based and realtime strategy game AI, written by some professional game programmers. It's a very complicated task, but you can probably also find some simple yet effective methods that would be suited for OFP's scripting limitations. -
I haven't tried yours, so no reason to get offended. I made a similar script for Arma1 and OFP back in the day, just to test how it would affect gameplay, which I thought was negative overall for reasons already discussed.