View Single Post
Re: hacking monster_plugin
Old
  (#16)
jeefo
путинхуйлоебаное
 
jeefo's Avatar
 
Status: Offline
Posts: 453
Join Date: Nov 2005
Location: Saint-Petersburg
Default Re: hacking monster_plugin - 28-11-2006

for the VC 2005...:

On all errors such as:
Code:
c:\documents and settings\voivodian\moje dokumenty\visual studio 2005\projects\monster_plugin\dlls\apache.cpp(949) : error C3867: 'CMApacheHVR::AccelerateThink': function call missing argument list; use '&CMApacheHVR::AccelerateThink' to create a pointer to member
change such lines from:
Code:
SetThink( AccelerateThink );
to
Code:
SetThink( CApache::AccelerateThink );
and so on...

but don't forget to change CApache to the class name this functions called from...
  
Reply With Quote