*Hits stuff* Help
Moderator: InsideQC Admins
16 posts
• Page 1 of 2 • 1, 2
*Hits stuff* Help
I'm probably just making a really stupid mistake and a really big fool out of myself at that, but i'm finding that there's this stupid error which seems to make no sense (to me).
I'm working on coding my first new monster and i'm using my own model, but for some reason when I try to run a level with that monster in it it always blurts out:
Error: Mod_NumForName: progs/axesoldier.mdl not found
I've checked to make sure it's spelt right and everything and it's inside "progs" in the folder of my mod, but I just can't figure out what might be causing this error.
Could anyone help?
I'm working on coding my first new monster and i'm using my own model, but for some reason when I try to run a level with that monster in it it always blurts out:
Error: Mod_NumForName: progs/axesoldier.mdl not found
I've checked to make sure it's spelt right and everything and it's inside "progs" in the folder of my mod, but I just can't figure out what might be causing this error.
Could anyone help?
- KakesaR
- Posts: 21
- Joined: Sat Nov 06, 2004 12:53 am
- Location: Australia
DOS games (like Quake) can only read filenames with eight characters and a three-letter extension. Try renaming your model to "axesoldi.mdl", making appropriate changes in the code, and see if that works.
- Miles Invictus
- Posts: 4
- Joined: Tue Nov 09, 2004 10:48 am
- Location: Kuwait and Iraq
Miles Invictus wrote:DOS games (like Quake) can only read filenames with eight characters and a three-letter extension. Try renaming your model to "axesoldi.mdl", making appropriate changes in the code, and see if that works.
Quake has for the longest time not been just a DOS game. I'm fairly surprised you don't seem to know this. You must at the very least have heard of Winquake and GLQuake, and since the Quake engine source was given the GPL, a fair amount of significantly enhanced engines have come to existence. I recommend DarkPlaces, and stay as far away from Tenebrae as possible.
DarkPlaces website
I was once a Quake modder
-

Urre - Posts: 1109
- Joined: Fri Nov 05, 2004 2:36 am
- Location: Moon
Urre wrote:Miles Invictus wrote:DOS games (like Quake) can only read filenames with eight characters and a three-letter extension. Try renaming your model to "axesoldi.mdl", making appropriate changes in the code, and see if that works.
Quake has for the longest time not been just a DOS game. I'm fairly surprised you don't seem to know this. You must at the very least have heard of Winquake and GLQuake, and since the Quake engine source was given the GPL, a fair amount of significantly enhanced engines have come to existence. I recommend DarkPlaces, and stay as far away from Tenebrae as possible.
DarkPlaces website
Hehe, don't be stupid Urre, ever considered the chance that he *is* using DOSQuake?
- Sajt
- Posts: 1215
- Joined: Sat Oct 16, 2004 3:39 am
Hahah, yeah, i'm still using DOS Quake
I do have WinQuake on CD somewhere, but i'm lazy and for now i'm happy just using the DOS version. I have DarkPlaces aswell, but it tends to be a little choppy on my computer (it's playable, but once again, i'm happier for now just using DOS Quake).
I renamed the model file, and it's working. Thanks heaps.
Oh, and might I add that i'm shocked; you're the first literate programmers i've ever met. Congratulations.
I do have WinQuake on CD somewhere, but i'm lazy and for now i'm happy just using the DOS version. I have DarkPlaces aswell, but it tends to be a little choppy on my computer (it's playable, but once again, i'm happier for now just using DOS Quake).
I renamed the model file, and it's working. Thanks heaps.
Oh, and might I add that i'm shocked; you're the first literate programmers i've ever met. Congratulations.
- KakesaR
- Posts: 21
- Joined: Sat Nov 06, 2004 12:53 am
- Location: Australia
textures on accelerated engines looks horrible because the use of smoothing.
you can return the Sharp! look of sofware more with a console command:
gl_texturemode GL_NEAREST
Other types (ignore the code mess):
{"GL_NEAREST", GL_NEAREST, GL_NEAREST},
{"GL_LINEAR", GL_LINEAR, GL_LINEAR},
{"GL_NEAREST_MIPMAP_NEAREST", GL_NEAREST_MIPMAP_NEAREST, GL_NEAREST},
{"GL_LINEAR_MIPMAP_NEAREST", GL_LINEAR_MIPMAP_NEAREST, GL_LINEAR},
{"GL_NEAREST_MIPMAP_LINEAR", GL_NEAREST_MIPMAP_LINEAR, GL_NEAREST},
{"GL_LINEAR_MIPMAP_LINEAR", GL_LINEAR_MIPMAP_LINEAR, GL_LINEAR}
you can return the Sharp! look of sofware more with a console command:
gl_texturemode GL_NEAREST
Other types (ignore the code mess):
{"GL_NEAREST", GL_NEAREST, GL_NEAREST},
{"GL_LINEAR", GL_LINEAR, GL_LINEAR},
{"GL_NEAREST_MIPMAP_NEAREST", GL_NEAREST_MIPMAP_NEAREST, GL_NEAREST},
{"GL_LINEAR_MIPMAP_NEAREST", GL_LINEAR_MIPMAP_NEAREST, GL_LINEAR},
{"GL_NEAREST_MIPMAP_LINEAR", GL_NEAREST_MIPMAP_LINEAR, GL_NEAREST},
{"GL_LINEAR_MIPMAP_LINEAR", GL_LINEAR_MIPMAP_LINEAR, GL_LINEAR}
-

Tei - Posts: 193
- Joined: Mon Oct 25, 2004 12:22 pm
GL is an abreviation for OpenGL which is the industry standard 3d interface.
Basically, if you've got a mainstream, worthwhile 3d card, it'll support OpenGL in windows.
3dfx supplied an opengl minidriver, which was then distributed with all the glquakes from the guys at ID. This confused a lot of users. If you do not have a voodoo card, you do not install opengl32.dll. However, glquake will still work for you if you have any other sort of 3d card.
Voodoo cards were the only real option at the time, for 3d cards, so we can't really blame them too much.
OpenGL is the industry standard still, so will work with any worthwhile card. Yeah, I know I said that before, but I thought I'd emphase it.
If your card just happens to be one of the truly dire cards which does not support opengl, complain at the manufacturer. Hound them. Spam them. Then give up, get a decent card, and boycot them and forever ruin thier reputation... A 3d card that does not support opengl is pointless.
Basically, if you've got a mainstream, worthwhile 3d card, it'll support OpenGL in windows.
3dfx supplied an opengl minidriver, which was then distributed with all the glquakes from the guys at ID. This confused a lot of users. If you do not have a voodoo card, you do not install opengl32.dll. However, glquake will still work for you if you have any other sort of 3d card.
Voodoo cards were the only real option at the time, for 3d cards, so we can't really blame them too much.
OpenGL is the industry standard still, so will work with any worthwhile card. Yeah, I know I said that before, but I thought I'd emphase it.
If your card just happens to be one of the truly dire cards which does not support opengl, complain at the manufacturer. Hound them. Spam them. Then give up, get a decent card, and boycot them and forever ruin thier reputation... A 3d card that does not support opengl is pointless.
- Spike
- Posts: 2892
- Joined: Fri Nov 05, 2004 3:12 am
- Location: UK
I have DarkPlaces aswell, but it tends to be a little choppy on my computer (it's playable, but once again, i'm happier for now just using DOS Quake).
If Darkplaces works on your PC at all then you definately have a card which can handle GLQuake.
-

MauveBib - Posts: 634
- Joined: Thu Nov 04, 2004 1:22 am
16 posts
• Page 1 of 2 • 1, 2
Who is online
Users browsing this forum: No registered users and 1 guest