Call of Duty 5: Beta Errors: Difference between revisions

From COD Modding & Mapping Wiki
Jump to navigation Jump to search
Line 2: Line 2:


=== Directx Errors ===
=== Directx Errors ===
* Make sure to read the [[Call of Duty 5: Beta Readme|README File]]


* If you run a Windows Server 2003 and are getting the DX error get the DX9 files [http://wiki.modsrepository.com/codww_betafiles/codww_dx_server.zip HERE]
* If you run a Windows Server 2003 and are getting the DX error get the DX9 files [http://wiki.modsrepository.com/codww_betafiles/codww_dx_server.zip HERE]


* If yo encounter a DX error in Either Windows XP or Vista (32Bits) then get the Latest DirectX 9.0c update:
* If yo encounter a DX error in Either Windows XP or Vista (32Bits) then get the Latest DirectX 9.0c update:
 
<br>
[[Image:Data.png]] [http://www.microsoft.com/downloads/info.aspx?na=2&p=1&SrcDisplayLang=en&SrcCategoryId=2&SrcFamilyId=&u=http%3a%2f%2fgo.microsoft.com%2f%3flinkid%3d9590785 HERE]
'''Latest:''' [[Image:Data.png]] [http://www.microsoft.com/downloads/info.aspx?na=2&p=1&SrcDisplayLang=en&SrcCategoryId=2&SrcFamilyId=&u=http%3a%2f%2fgo.microsoft.com%2f%3flinkid%3d9590785 HERE]<br>or<br>
 
'''March 2008:''' [[Image:Data.png]] (good success rate with those) [http://www.microsoft.com/downloads/details.aspx?FamilyId=740AC79A-5B72-447D-84F9-EE6407ED1A91&displaylang=en HERE]
*Some report that placing [http://www.dll-files.com/dllindex/dll-files.shtml?d3dx9_37 this file] (d3dx9_37.dll) in the game folder also solve some issues.
*Some report that placing [http://www.dll-files.com/dllindex/dll-files.shtml?d3dx9_37 this file] (d3dx9_37.dll) in the game folder also solve some issues.



Revision as of 22:41, 29 October 2008

General

Directx Errors

  • If you run a Windows Server 2003 and are getting the DX error get the DX9 files HERE
  • If yo encounter a DX error in Either Windows XP or Vista (32Bits) then get the Latest DirectX 9.0c update:


Latest: HERE
or
March 2008: (good success rate with those) HERE

  • Some report that placing this file (d3dx9_37.dll) in the game folder also solve some issues.

Possible errors include:







  • Upgrading to latest Graphics Drivers is also recommended:

ATI

NVIDIA

Sounds Errors

  • Update your audio drivers (Google "[make of audio card] [model # of audio card] Drivers").

Gameplay Errors

G_SPAWN Entities Error

  • What's causing it?
    • g_spawn error isnt related directly to the spawn system, its the number of entities in the map that are being spawned but not deleted (1024 is max for cod4) once it reaches the limit the server crashes.
The players spawning is only a small factor in this, any entities appearing in the map counts toward the limit (grenades, dogs, players...)
  • What to do to avoid this?
    • Dont run a server with more than 32 Slots
    • Try an use the following Server Config Dvars to delay Spawns:
// KOTH
set scr_koth_playerrespawndelay "0"
set scr_koth_waverespawndelay "0"
set koth_delayPlayer "0"
set koth_spawnDelay "60"
set koth_spawntime "0"
// CTF
set scr_ctf_playerrespawndelay "0"
set scr_ctf_waverespawndelay "15"
// DM
set scr_dm_playerrespawndelay "0"
set scr_dm_waverespawndelay "0"
// DOM
set scr_dom_playerrespawndelay "0"
set scr_dom_waverespawndelay "0"
// TDM
set scr_tdm_playerrespawndelay "0"
set scr_tdm_waverespawndelay "0"
// SD
set scr_sd_playerrespawndelay "0"
set scr_sd_waverespawndelay "0"
// SAB
set scr_sab_playerrespawndelay "7.5"
set scr_sab_waverespawndelay "0"