• We're currently moving storage for avatars/attachments - please bear with us. We are migrating all files but some may not show temporarily. This may take 24-48 hours for all files to come across.

    Sorry for any inconvenience! New attachments can be uploaded but it would be better to leave avatars for now as they could be overwritten as part of the migration.

Nice Ingame Pictures [FIFA 14]

Re: Nice Ingame Pictures [FIFA 13]

2h4yglc.png


I need all your damn settings Cesc :P (settings.lua, I dont have a clue when it comes to that)
 
Re: Nice Ingame Pictures [FIFA 13]

Sorry for the extremely noobish question but how do you improve the graphics and coloring ?
 
Re: Nice Ingame Pictures [Fifa 11]

- 4x AA in Fifa 11 Settings
- 16x Anisotropic Filter in CatalystControlCenter
- Yeah off course I use LOD, the following settings
PHP:
local InitializeSettings = function()
	local as = gSportsRNA
	local settingTable = as:GetTable("Settings")

	-- Force LevelOfDetail - 'high', 'medium', 'low', 'superlow'
	local levelOfDetail = as:GetString(settingTable, "LevelOfDetail") 
	if (levelOfDetail == "") then
		levelOfDetail = "high"
		as:SetString(settingTable, "LevelOfDetail", levelOfDetail)
	end

--	levelOfDetail = "medium"

	-- Set up defaults (high detail)
	as:SetInt(settingTable, "DropMipRX3_MipsToDrop", 0)			-- number of mips to drop from RX3 textures
	as:SetInt(settingTable, "DropMipRX3_MinTexDimension", 8192)	-- minimum size (here we will ignore the number of mips to drop)
	as:SetInt(settingTable, "FlatShadow_ScaleReduction", 0)		-- flat shadow dimensions 			(0 is normal, 1 is half, 2 is quarter, 3 is an eigth)
	as:SetInt(settingTable, "FlatShadow_MaxLights", 4)			-- max number of lights to allow
	as:SetInt(settingTable, "Jumbotron_ScaleReduction", 0)		-- jumbotron render scale reduction 
	as:SetInt(settingTable, "SelfShadow", 1)		
	as:SetInt(settingTable, "SelfShadow_ScaleReduction", 0)		-- selfshadow render scale reduction (0 normal, 1 half, 2 quartered)
	as:SetInt(settingTable, "PostFX_RainDrops", 1)
	as:SetInt(settingTable, "PostFX_AutoExp", 1)
	as:SetInt(settingTable, "PostFX_Bloom", 1)
	as:SetInt(settingTable, "PostFX_DOF", 1)
	as:SetInt(settingTable, "PostFX_Rectilinear", 1)
	as:SetInt(settingTable, "PostFX_Vignette", 1)
	as:SetInt(settingTable, "PostFX_ColorCube", 1)
	as:SetInt(settingTable, "PostFX_ColorCubeDepth", 1)

	as:SetInt(settingTable, "Grass", 1)
	as:SetInt(settingTable, "Cloth", 1)
	as:SetFloat(settingTable, "PlayerLodPercentageMultiplier", 100.0)
	as:SetInt(settingTable, "PlayerLodMinimum", 0)

	-- Override..
   	if (levelOfDetail == "medium") then

		-- as:SetInt(settingTable, "FlatShadow_ScaleReduction", 1)
		-- as:SetInt(settingTable, "FlatShadow_MaxLights", 4)	   
		-- as:SetInt(settingTable, "Jumbotron_ScaleReduction", 1) 
		as:SetInt(settingTable, "Grass", 1)
		-- as:SetInt(settingTable, "SelfShadow_ScaleReduction", 1)
		as:SetFloat(settingTable, "PlayerLodPercentageMultiplier", 100.0)

	elseif (levelOfDetail == "low" or levelOfDetail == "superlow") then
		-- Downsize Render to texture sizes and detail
		-- as:SetInt(settingTable, "DropMipRX3_MinTexDimension", 512)
		-- as:SetInt(settingTable, "DropMipRX3_MipsToDrop", 3)
		-- as:SetInt(settingTable, "FlatShadow_ScaleReduction", 1)
		-- as:SetInt(settingTable, "FlatShadow_MaxLights", 1) 
		-- as:SetInt(settingTable, "Jumbotron_ScaleReduction", 1) 
		-- as:SetInt(settingTable, "SelfShadow", 0)	

		-- Disable grass and cloth
		-- as:SetInt(settingTable, "Grass", 1)
		-- as:SetInt(settingTable, "Cloth", 0)

		-- disable pretty much all PostFX
		as:SetInt(settingTable, "PostFX_RainDrops", 0)
		as:SetInt(settingTable, "PostFX_AutoExp", 0)
		as:SetInt(settingTable, "PostFX_Bloom", 0)
		-- as:SetInt(settingTable, "PostFX_DOF", 0)
		-- as:SetInt(settingTable, "PostFX_Rectilinear", 0)
		-- as:SetInt(settingTable, "PostFX_Vignette", 0)	
		as:SetInt(settingTable, "PostFX_ColorCube", 0)
		as:SetInt(settingTable, "PostFX_ColorCubeDepth", 0)
	
		as:SetFloat(settingTable, "PlayerLodPercentageMultiplier", 100.0)
	end
	
	if (levelOfDetail == "superlow") then
		-- any extra tweaks here..
	end
end
InitializeSettings()
InitializeSettings = nil
- CPU: Intel(R) Core(TM) i5 CPU 750 @ 2.67 GHz (Quadcore-4 CPU's)

This config?
 
Re: Nice Ingame Pictures [FIFA 13]

I know it's from FIFA12 but... Love the way my forward threatens the opposite defender. :P


BULLYING
OOxT7YO.png

YOU'RE DOING IT RIGHT
 
Back
Top Bottom