[hlcoders] Creating a sprite on the client

2005-07-14 Thread Ian Warwick
I tried asking this on the collective forums, with no luck so far, so I thought I would try here to :) I am trying to create a sprite, in a client entity class, and it's not going to well. In the class declaration I have this C_Sprite m_GlowSprite; In the constructor this m_GlowSprite.Clea

Re: [hlcoders] help with ../dlls/./entityoutput.h:126: error: 'Vector' is not a template type

2005-07-14 Thread Zach Brockway
He meant GCC, not your entire distro. On 7/13/05, Nick <[EMAIL PROTECTED]> wrote: > On 7/13/05, Alfred Reynolds <[EMAIL PROTECTED]> wrote: > > 4.0 has not been tested, you should use the 3.4.x series. > > > > - Alfred > > > > - > > i will try to install fedora core 3 tonight and see how that works

Re: [hlcoders] help with ../dlls/./entityoutput.h:126: error: 'Vector' is not a template type

2005-07-14 Thread Zach Brockway
er...I realized you probably realized that. Don't mind me, I'm really tired. On 7/14/05, Zach Brockway <[EMAIL PROTECTED]> wrote: > He meant GCC, not your entire distro. > > On 7/13/05, Nick <[EMAIL PROTECTED]> wrote: > > On 7/13/05, Alfred Reynolds <[EMAIL PROTECTED]> wrote: > > > 4.0 has not bee

Re: [hlcoders] help with ../dlls/./entityoutput.h:126: error: 'Vector' is not a template type

2005-07-14 Thread Michael A. Hobson
Zack: In order to get the right version of GCC as well as everything it depends upon, it's easier for him to just install an older Fedora Core. I'm pretty sure he set up Fedora Core 4 just for building Source on Linux, so it's not like he's going to lose anything but a little time. At 02:23 AM

Re: [hlcoders] help with ../dlls/./entityoutput.h:126: error: 'Vector' is not a template type

2005-07-14 Thread Ben Davison
-- [ Picked text/plain from multipart/alternative ] I wish there was an easy way to install that XML parser, I'm a god damn linux nub. Does anybody know another distrubution that dosent need 4 discs to install, which can build source? On 7/14/05, Michael A. Hobson <[EMAIL PROTECTED]> wrote: > > Z

Re: [hlcoders] help with ../dlls/./entityoutput.h:126: error: 'Vector' is not a template type

2005-07-14 Thread Jeff Fearn
On 7/14/05, Ben Davison <[EMAIL PROTECTED]> wrote: > -- > [ Picked text/plain from multipart/alternative ] > I wish there was an easy way to install that XML parser, I'm a god damn > linux nub. I'm loosing track of who is who here ... are you using Fedora? Googling for '"XML Parser" rpm' first lin

Re: [hlcoders] help with ../dlls/./entityoutput.h:126: error: 'Vector' is not a template type

2005-07-14 Thread Ben Davison
-- [ Picked text/plain from multipart/alternative ] If I could kiss you I would ;) On 7/14/05, Jeff Fearn <[EMAIL PROTECTED]> wrote: > > On 7/14/05, Ben Davison <[EMAIL PROTECTED]> wrote: > > -- > > [ Picked text/plain from multipart/alternative ] > > I wish there was an easy way to install that X

[hlcoders] UserMessages

2005-07-14 Thread Kamran
I'm having some trouble passing an integer to my user message function. Right before the map loads, it gives an "Assert Failed" and then crashes. int i = 6; CSingleUserRecipientFilter user( this ); user.MakeReliable(); UserMessageBegin( user, "TestMessage" ); WRITE_BYTE( i ); MessageEnd();

Re: [hlcoders] UserMessages

2005-07-14 Thread Kamran
Disregard... you have to make sure to: HOOK_HUD_MESSAGE(CHudHealth, TestMessage) In the Init() function. :) Kamran wrote: I'm having some trouble passing an integer to my user message function. Right before the map loads, it gives an "Assert Failed" and then crashes. int i = 6; CSingleUserRe

[hlcoders] Re: [hlcoders] help with ../dlls/./entityoutpu t.h:126: error: ‘Vector’ is not a template type

2005-07-14 Thread Fabian Schreyer
I don't know how to fix this, but I would recommend you using Fedora Core 3 (or a 3.4.x version of gcc), which works fine for me. On 7/13/05, Nick <[EMAIL PROTECTED]> wrote: > $ make > if [ -z "/usr/bin/gcc" ]; then echo "Compiler not defined."; exit; fi > if [ ! -d . ];then mkdir .;fi > cd . > if

[hlcoders] Steam__106712__2005_2_20T21_6_13C79068234.mdmp

2005-07-14 Thread Belcherman[BTC]
Hey guys and girls. I keep having crashing issues with my server. It creates these crash files but nothing can read them. What or how can I read what they have in them? Belcherman[BTC] Founder of the Belching Toad Clan in July of 1997 Website = www.BelchingToadClan.com Email = [EMAIL PROTECTED]

Re: [hlcoders] Steam__106712__2005_2_20T21_6_13C79068234.mdmp

2005-07-14 Thread LDuke
Open a new solution in MSVC and choose "Dump file" as the type and then pick the mdmp file. Hit F5 and if it crashed in your code, debug will break at the spot in code where the problem is. On 7/14/05, Belcherman[BTC] <[EMAIL PROTECTED]> wrote: > Hey guys and girls. I keep having crashing issues

[hlcoders] Re: [hlcoders] Steam__106712__2005_2_20T21_6_13C79068234.mdmp

2005-07-14 Thread Jeffrey \"botman\" Broome
Belcherman[BTC] wrote: Hey guys and girls. I keep having crashing issues with my server. It creates these crash files but nothing can read them. What or how can I read what they have in them? They are Windows minidump files. They won't help you much without the source code. http://support.mic

Re: [hlcoders] ERROR

2005-07-14 Thread Andrew Foss
Tei, I think you messed up the zip's dictionary. It's more like: HELLO FRIEND, MY NAME ITS MINH LE. I AM DEPOSED VALVE ROYALTY. I HAVE A LARGE SUM OF SOURCE CODE. UNFORTUNATELY MY COMPUTER IS NOT WORKING. IF YOU COULD SEND YOURS TO ME I WILL GIVE YOU SOME OF MY SOURCE CODE IN RETURN. YOU CAN CONT

[hlcoders] Killing citizens

2005-07-14 Thread Kamran
I've created a citizen on my map, Harold. Now, I want to be able to shoot and hurt Harold if I want to... how can I do that? Do I need to create my own entity and derive it from npc_citizen or how does that work? -- Kamran A Get Firefox! Safer, Faster, Better.

Re: [hlcoders] help with ../dlls/./entityoutput.h:126: error: 'Vector' is not a template type

2005-07-14 Thread Jeff Fearn
On 7/14/05, Ben Davison <[EMAIL PROTECTED]> wrote: > -- > [ Picked text/plain from multipart/alternative ] > If I could kiss you I would ;) Ben had better be short for Benita! ;) Jeff ___ To unsubscribe, edit your list preferences, or view the list arc

RE: [hlcoders] PostMessage()

2005-07-14 Thread Alfred Reynolds
sizeof( m_szPanelNames ) will be 4 (it's the size of a char * pointer), not 1. Try the ARRAY_SIZE() macro instead :) - Alfred Original Message From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Sheu Sent: Wednesday, July 13, 2005 11:04 PM To: hlcoders@list.valvesoftware.

Re: [hlcoders] PostMessage() - FIXED

2005-07-14 Thread John Sheu
Thanks for the reply. I've found the solution on my own. > sizeof( m_szPanelNames ) will be 4 (it's the size of a char * pointer), > not 1. Try the ARRAY_SIZE() macro instead :) > > - Alfred Yeah, I wrote a "countof" macro to fix this. I'll use ARRAY_SIZE() then. :) The real problem, though,