first goto extdll.h
and after ifndef/defined, add code
Code:
#pragma warning (disable : 4996)
for this:
Code:
c:\documents and settings\voivodian\moje dokumenty\visual studio 2005\projects\monster_plugin\dlls\animation.cpp(331) : error C2065: 'i' : undeclared identifier
apache.cpp
do something like that:
Code:
for (int i = 0; i < gpGlobals->maxClients; i++)
change to:
int i = 0;
for (; i < gpGlobals->maxClients; i++)
for other errors like:
Code:
c:\documents and settings\voivodian\moje dokumenty\visual studio 2005\projects\monster_plugin\dlls\apache.cpp(139) : error C3867: 'CMApache::DyingThink': function call missing argument list; use '&CMApache::DyingThink' to create a pointer to member
change for all errors:
Code:
from
Function
to
Class::Function
f.e.
DyingThink
to
CApache::DyingThink
etc