--
[ Picked text/plain from multipart/alternative ]

error C2065: 'm_iComboTime' : undeclared identifier
error C2065: 'm_iCombocounter' : undeclared identifier

You need to declare these variables in the class declaration segment
(usually class declarations are contained in .h files)

error C2106: '=' : left operand must be l-value

hmm.. Are you trying to assign a value to a constant? The left side of the
'=' symbol should always be a non-constant variable.

error C2143: syntax error : missing ')' before ';'

check your syntax. you forgot a left bracket somewhere..


Not to be mean, but I think you should learn some basic C++ programming
skills. It's really hard to help you make a combo system if you don't know
some basic C++

--

_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders

Reply via email to