[hlcoders] Weird missing dll error

2004-06-05 Thread steamsucks
Almost at random times during a game this pops up and the server crashes. But its fairly rare. The dynamic link library MSVCR70.dll could not be found in the specified path then it goes on to point to a number of locations including my steam/... half- life/ dir What the heck is that all about?

RE: [hlcoders] Weird missing dll error

2004-06-05 Thread Karl \XP-Cagey\ Patrick
MSVCR70.dll is a .Net runtime... are you linking to any 3rd party dlls? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, June 04, 2004 11:48 PM To: [EMAIL PROTECTED] Subject: [hlcoders] Weird missing dll error Almost at

[hlcoders] Re: [hlcoders] Quiet!!!!

2004-06-05 Thread hlmappers
Hello! Why must anybody here, nothing to code. Global Question : We have a Mod, Riot Games. It Simulates Street Fighting (Like the Worldwide First of May Riots) in Half Life 2. We Have Much Ideas, much Mappers,Modellers,Texturers and and. but no, no, Coder. Is Anyone Here?

Re: [hlcoders] Weird missing dll error

2004-06-05 Thread Ben Banfield
Not quite, its the runtime for VS .Net ( the original version ) compiled files. Looks like one of the dlls you're using was compiled with VS .Net or one of the ms command line tool packs. The simple fix is to put msvcr70.dll and msvcp70.dll in the same dir as the hl executable. Ben Karl XP-Cagey

RE: [hlcoders] Weird missing dll error

2004-06-05 Thread Michael Shimmins
Er, isn't it part of the Microsoft C Runtime Library that contains standard C library functions such as printf, memcpy, and cos? Michael Shimmins -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Banfield Sent: Saturday, 5 June 2004 8:23 PM To: [EMAIL

RE: [hlcoders] Weird missing dll error

2004-06-05 Thread K. Mike Bradley
That dll is Microsoft's Visual C Runtime lib ver 7.0 I suppose it is a dependency to HLDS.exe??? Or another module in your mod? Something is calling a function in this dll and as you say it is rare and random. Check your dependencies to see what could call this. -Original Message-

Re: [hlcoders] Re: [hlcoders] Quiet!!!!

2004-06-05 Thread Marco Leise
Am Sat, 5 Jun 2004 12:22:01 +0200 hat [EMAIL PROTECTED] geschrieben: Hello! Why must anybody here, nothing to code. Global Question : We have a Mod, Riot Games. It Simulates Street Fighting (Like the Worldwide First of May Riots) in Half Life 2. We Have Much Ideas, much

RE: [hlcoders] Weird missing dll error

2004-06-05 Thread steamsucks
As I feared, the problem got worse. Adding that DLL to that dir made no sense. I’m not linking into that dll and in the location of the code for which it requires it is a simple compare statement from an int to a constant. I added the dll and now I’m having a deadlock as soon as I enter this one

RE: [hlcoders] Weird missing dll error

2004-06-05 Thread steamsucks
I was able to isolate it in the code to a compare of an int to a constant but only in the debugger. When i ran a release versions the game would just hang like an infinite loop. Why in the world that line of coded needed that lib is beyond me because I coded that 6 months ago and never had that