Search the Community
Showing results for tags 'manual'.
Found 5 results
-
(Picture created by RozekPoland, edited by RozekPoland, remixed by RozekPoland) Within a few days we are going to celebrate 12th anniversary of DXDLL 1.0 release that took place on 12th of July, 2004. I decided to share with you all the information I've found on BIForum and discovered myself about this amazing tool created by Kegetys and Feer. I am not going to repeat the information that is available in the readme and the configurator. Using DXDLL on modern OS (Vista, 7, 8, 8.1, 10) It is a known problem that DXDLL do not like the modern OS. It crashes the game at the startup or while ALT+TABing. The solution is: Set ColdWarAssault.exe in Compatibility Mode with Windows XP (Service Pack 3). DXDLL is conflicting with other overlay(s) DXDLL is an overlay itself that is why it is not possible to run DXDLL with Steam Overlay, Overwolf or TeamSpeak Overlay at the same time. It even seems that it is not possible to run CWA with DXDLL through Steam with or without Steam Overlay. However, it is possible to run DXDLL and FRAPS together. GENERAL Use Trilinear Filtering Enabling this feature on a computer with modern graphic card lowers quality and sharpness of textures on farther distance. It is because Trilinear Filtering is obsolete and was replaced by Anisotropic Filtering which is turned on by default (in graphic card's control panel). Remove night pixelshader effect Removes black&white night shader effect. Highly usable feature. DISABLED | ENABLED Handle printscreen key The output format of the printscreen is TGA. Its final size is huge and taking a photo stutters a game for a second. There are better alternatives for taking photos ingame (FRAPS). Stage 0 mipmap LODbias Sets normal texture mipmap level of detail, range -1.0(sharp) to 1.0(blurry). http://imgur.com/a/BeTsg Stage 1 mipmap LODbias Sets multitexture texture mipmap level of detail, range -1.0(sharp) to 1.0(blurry). http://imgur.com/a/G3KZq POSTPROCESSING Enable postprocessing Enabling this feature disables AntiAliasing (not available in the game itself) turned on in the graphic card's control panel. Use special NV Goggles effect Works only with vanilla OFP/CWA nightvision texture and FDF mod. DXDLL does checksum (CRC32) for 25% (1/4) of nightvision texture (size). DISABLED | ENABLED Hard Light effect Allows to change RGB channels. The best thing of DXDLL next to water reflections. If you don't like the original values you may want to try Kegetys' personal settings (0.5, 0.5, 0.9). DISABLED | ENABLED Desaturate effect ARMA2-Chernarus-like feature. Not really usable in regular playing but a nice effect for a specific screenshots/screenarts. If you don't like the original values you may want to try Kegetys' personal settings (0.2, 0.4, 0.2). DISABLED | ENABLED Glare Blur, Bloom or whatever you call it. Eveything shines around you. Not useful for regular playing but (as above) a nice effect for screenshots/screenarts. If you don't like the original values you may want to try Kegetys' personal settings (Strength 0.4, Size 4). DISABLED | ENABLED Darken sky Darkens the sky by 15% and the fog color by 10%. All these just to avoid overbrightness caused by Glare effect. Possible to be enabled without Glare effect set to ON. DISABLED | ENABLED Use fading Useless because of making lighting show on your screen. Every bright source of light will stay on the screen for as long as another bright source will not show up to take place of the previous one(s) (explosions, searchlights etc.). REFLECTIONS Enable reflections This feature requires setting Landscape textures resolution (by ColdWarPreferences.exe) to at least 512x512. Works with vanilla OFP/CWA water textures only. DXDLL does checksum (CRC32) for 25% (1/4) of each water texture (size). Water reflections may not work for unbinarised models (MLODs). It is possible to manually set water reflections resolution (Configurator.exe limit is 1024x1024) by opening config.cfg (in dxdll folder), finding and changing sizeX and sizeY values. DISABLED | ENABLED Use exponential fog on water Introduces the specific fog on water that hides the irregularities of OFP/CWA water shorelines. Use lighting on reflections Introduces wider amount of colors on water reflections. Bumpmap strength Strength of bumpmap water reflections. 0 | 10 HIDDEN Requires manual change in config.cfg (in dxdll folder). Use Notepad to open the file. EnhancedTracers Enhances tracers to make them more visible. Less laser guns, more like the real ones. Disabled by default. LODbias Sets reflection texture mipmap level of detail, range -1.0(sharp) to 1.0(blurry).
-
gravon: real virtuality Searching for manual for Gravon: Real Virtuality
nesan posted a topic in BOHEMIA INTERACTIVE - GENERAL
I am searching for the manual for Gravon: Real Virtuality, are there any offical PDF's of it? -
How to use Murklor's AI Spawn Script?
WPK-ArmedVeteran posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi! As the title says, I can't figure out how to use Murklor's AI Spawn Script. I'm a total noob in scripting, therefore I can't really understand what should I do. I'd gladly use some detailed instructions on how to use this script or a description of another way to despawn editor-placed units and spawn them later using trigger, while maintaining all the setup like waypoints etc. Murklor's script on Armaholic: http://www.armaholic.com/page.php?id=26909 -
Hello everyone! In support of last week’s Workbench update, today we launched a series of mod-making video tutorials for Take On™ Mars. Titled ‘Mars Mod-Maker's Manual (M4)’, the video series aims to help people get started with creating additional or new content for Take On Mars, using the game’s Workbench editing suite. The first chapter - Data Structure & Modifications – kicks off with an explanation of where Take On Mars looks for its data, and how it can be modified. The fact that Take On Mars itself started as a mod for Carrier Command: Gaea Mission explains a lot about the dedication of this team to modding and user content creation. While we’re still adding new content to the game ourselves, with a really cool announcement coming up next week, we’re looking forward to see how other people experiment with the tools used to develop Take On Mars. The Mars Mod-Maker's Manual (M4) should form an excellent starting point. More chapters in the ‘Mars Mod-Making Manual’ series will be released over the course of the next few months – starting with the second chapter about addons, mods and total conversions. Kind and sincere regards from the Dev team, Martin Melicharek (Project Lead)
-
Function that returns after it was spawn called.
sandbird posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
This i gonna sound weird....but i was wondering if its even possible to do this...i've been trying...believe me. I'll simplify my code, cause its huge...but basically the algorithm is like this: my fetchFnc.sqf has (gets included) : fetch_data = { _name= _this select 0; _fncName= _this select 1; .....blah blah blah based on _name, and then.... _number= 10; [_name, _number] spawn _fncName; }; I got this in my init.sqf: #include "fetchFnc.sqf"; private ["_name","_number"]; my_function = { _name= _this select 0; _number= _this select 1; }; 0 = [ "George", my_function ] spawn fetch_data; [b]diag_log format [ "After calculations: %1 has %2", _name, _number];[/b] How can i update on my main init.sqf the values for _name and _number to be show in the diag_log ? Cause right now as you can guess it doesnt get the values. I need to get the values outside of the function...I tried making them global variables....still no luck. ps: Cant do "call fetch_data" cause inside there are waituntil functions. I dont mind the script to fail...for example something went wrong and there is no data for _name George...so i send out an error. I can handle that after in my main code. So if _name == "error" then do..... -Thanks