Client missing DT class CWaterBullet: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
| TomEdwards (talk | contribs)  (forgot about CWeaponCycler!) | m (Add Russian Lang) | ||
| Line 1: | Line 1: | ||
| {{otherlang2 | |||
| |ru=Client missing DT class CWaterBullet:ru | |||
| }} | |||
| There are two mistakes in Valve's Orange Box codebase that prevent clients connecting to servers. The errors that appear in the console are: | There are two mistakes in Valve's Orange Box codebase that prevent clients connecting to servers. The errors that appear in the console are: | ||
Revision as of 22:45, 12 May 2013
There are two mistakes in Valve's Orange Box codebase that prevent clients connecting to servers. The errors that appear in the console are:
- Client missing DT class CWaterBullet
- Client missing DT class CWeaponCycler
To fix them:
- Open server/waterbullet.cppand removeIMPLEMENT_SERVERCLASS_ST( CWaterBullet, DT_WaterBullet ) / END_SEND_TABLE()from lines 31 and 32.
- Open server/waterbullet.hand removeDECLARE_SERVERCLASS();from line 28.
- Open server\h_cycler.cppand remove similar code from lines 226, 238 and 239.
- Add #include "c_weapon__stubs.h" / STUB_WEAPON_CLASS( cycler_weapon, WeaponCycler, C_BaseCombatWeapon );to a CPP file of your choosing on the client.