Anyway! Sorry..as for the reason I'm making this topic, I'm currently working on compiling the Alien Swarm source code for the first time..I haven't done any modifications of my own to it, as I haven't been able to..but I did add this to it to make it first person..but..when I compile the Client project I get these errors..
This one is from Client Project compile:
- Code: Select all
.\swarm\asw_prediction.cpp(183) : error C2039: 'forced_action' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_prediction.cpp(211) : error C2039: 'crosshair_entity' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_prediction.cpp(291) : error C2039: 'crosshairtrace' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
asw_in_mouse.cpp
asw_in_main.cpp
asw_in_camera.cpp
asw_fx_impacts.cpp
asw_client_entities.cpp
.\swarm\asw_in_main.cpp(590) : error C2039: 'crosshairtrace' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_in_main.cpp(594) : error C2039: 'crosshairtrace' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_in_main.cpp(596) : error C2039: 'crosshair_entity' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_in_main.cpp(598) : error C2039: 'forced_action' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_in_main.cpp(599) : error C2039: 'sync_kill_ent' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_in_main.cpp(604) : error C2039: 'forced_action' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_in_main.cpp(604) : error C2039: 'sync_kill_ent' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
This one is from Server Project compile.
- Code: Select all
.\swarm\asw_playermove.cpp(92) : error C2039: 'forced_action' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_playermove.cpp(107) : error C2039: 'crosshair_entity' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
.\swarm\asw_playermove.cpp(222) : error C2039: 'crosshairtrace' : is not a member of 'CUserCmd'
c:\my folders\crazysmod\src\game\shared\usercmd.h(32) : see declaration of 'CUserCmd'
I'd really appreciate some help on this.


