OpenArena Message Boards

OpenArena Contributions => Graphics => Topic started by: Logan on February 07, 2007, 11:17:13 PM



Title: Custom Player Models! Pictures and Links Inside!
Post by: Logan on February 07, 2007, 11:17:13 PM
Hey!

Alright, I've decided to help people get some custom player models. For those who don't know what they are, they are player models you download from an outside source, and install yourself. I've found player models such as Sonic the Hedgehog, Dr, Evil, Snoopy, Animal from the Muppets, and several new ladies. :D

Here's a few examples of some custom models...

(http://img.photobucket.com/albums/v119/Bopig/temp1.jpg)
(http://img.photobucket.com/albums/v119/Bopig/temp2.jpg)

First I'll explain how to install these.

A player model file will generally look like this: md3-mario.pk3

This file needs to be placed in your BASEOA folder INSIDE the openarena folder. That's all there is to installing it. You can then select your new model from the player select screen. I'd like to remind everyone about the hidden button on the bottom right of this screen to change your model. Here is the image again; I've posted this in a different thread but I'm bringing it back.

(http://img.photobucket.com/albums/v119/Bopig/see.jpg)

I'd also like the mention that not all servers SUPPORT custom models. If a server has been set to PURE, only the files that the server HAS will be useable. For example, say a server has the sonic model, but you have the alien3 model, and the dr evil model AND the sonic model. ONLY the sonic model will be useable because that server has it. Look for servers that ARN'T pure if you want to be able to use your model. I'd also like to mention that your opponents won't be able to see your custom model unless they have the same file on there computer. You will appear as the default character Grism or fondly known as the green dude to them.

Just a hint..BEERGARDEN supports custom models...:D

Now, that that has been explained, it's time to get some models...

You can get models from various sites throughout the internet. Websites like fileplanet have models, but if you use google and type things like "quake 3 models" or be specific like "quake 3 sonic model" you should have no trouble.

I hope this has been helpful. I'm tired of the lack of models in the official release, and I know this matter is being dealt with, but that doesn't mean you'll be able to play as say, Homer Simpson unless you go custom. :D

If anyone has more questions leave them here and I'll help if I can.





Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Phoenix Wright on February 25, 2007, 04:04:31 PM
I knew about this a long time ago.  Pretty good find, though.

I should add to this that even Quake 3 models will work in OA without problems.  I should know because I have Visor from Quake 3 in my OA.  Also, some bots will run in OA, although they can't switch weapons.


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on February 28, 2007, 01:06:33 PM
I knew about this a long time ago.  Pretty good find, though.

I should add to this that even Quake 3 models will work in OA without problems.  I should know because I have Visor from Quake 3 in my OA. 

That reminds me, I've noticed that some models sound effects are weird. They make a beeping sound. I'm guessing that this is because they are sounds from Quake 3 PK3s? Is it possible to fix sounds in openarena by placing Quake 3 files in the Openarena base? Which files would help if this was the solution?


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: jdodson on March 01, 2007, 06:58:28 PM
http://games.mirrors.tds.net/pub/planetquake3/models/


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on March 01, 2007, 09:57:17 PM
http://games.mirrors.tds.net/pub/planetquake3/models/

Thanks for posting a link Jdodson! This will certainly help the really lazy people. :p


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Kojiro_S on April 05, 2007, 09:57:51 PM
Yeah, a custom characters rooster is always welcome. The model bots require some tweaking to their *_w.c file in order to work properly, though.

http://img.photobucket.com/albums/v119/Bopig/temp1.jpg
(http://xs114.xs.to/xs114/07145/Xenomorph.gif)

Maybe you should use this one instead :P
(found it on Planet Quake).


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: dmn_clown on April 07, 2007, 11:56:15 AM
Yeah, a custom characters rooster is always welcome. The model bots require some tweaking to their *_w.c file in order to work properly, though.

Almost but not quite, you have to edit *_i.c as well.


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on April 07, 2007, 12:04:21 PM
The model bots require some tweaking to their *_w.c file in order to work properly, though.

So this is a fix for that beeping sound that some models seem to make? What kinda tweaks would need to be done to fix a sound problem like that? Actually, feel free to post a link if your feeling lazy. :P


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: dmn_clown on April 07, 2007, 12:11:18 PM
the beep sound is due to the model missing wav files (It is the default sound rather than silence).


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: fromhell on April 07, 2007, 12:11:32 PM
the "beeping" sound is caused by OpenAL not subsituting sarge sounds as defaults when there's no sounds. s_useOpenAL 0 goes back to the old mixer, fixing the 'beep' problem


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on April 07, 2007, 01:23:24 PM
the "beeping" sound is caused by OpenAL not subsituting sarge sounds as defaults when there's no sounds. s_useOpenAL 0 goes back to the old mixer, fixing the 'beep' problem

That explains it. Thanks.


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: dmn_clown on April 07, 2007, 02:56:14 PM
or change the hilighted section of code in client/snd_openal.c to a different default wav and recompile the engine.

Quote
static
qboolean S_AL_BufferInit( void )
{
   if(alBuffersInitialised)
      return qtrue;

   // Clear the hash table, and SFX table
   memset(knownSfx, 0, sizeof(knownSfx));
   numSfx = 0;

   // Load the default sound, and lock it
   default_sfx = S_AL_BufferFind("sound/feedback/hit.wav");
   S_AL_BufferUse(default_sfx);
   knownSfx[default_sfx].isLocked = qtrue;

   // All done
   alBuffersInitialised = qtrue;
   return qtrue;
}


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on April 08, 2007, 06:15:06 AM
or change the hilighted section of code in client/snd_openal.c to a different default wav and recompile the engine.

Quote
static
qboolean S_AL_BufferInit( void )
{
   if(alBuffersInitialised)
      return qtrue;

   // Clear the hash table, and SFX table
   memset(knownSfx, 0, sizeof(knownSfx));
   numSfx = 0;

   // Load the default sound, and lock it
   default_sfx = S_AL_BufferFind("sound/feedback/hit.wav");
   S_AL_BufferUse(default_sfx);
   knownSfx[default_sfx].isLocked = qtrue;

   // All done
   alBuffersInitialised = qtrue;
   return qtrue;
}

That's a little advanced for me..


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: thirdstreettito on November 29, 2007, 11:03:02 PM
I like.


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: w1zrd on November 30, 2007, 01:14:46 PM
I like.
Nice bump :)
Worth mentioning for newer players; the invisible button is now completely invisible (as in not there) in version 0.7 and later.


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on December 04, 2007, 07:45:25 AM
I like.
Nice bump :)
Worth mentioning for newer players; the invisible button is now completely invisible (as in not there) in version 0.7 and later.


Um, what do you mean? The player model button that was invisible before is still? Quite wrong...the player model button is now fully visible.


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: w1zrd on December 05, 2007, 09:03:12 AM
I like.
Nice bump :)
Worth mentioning for newer players; the invisible button is now completely invisible (as in not there) in version 0.7 and later.


Um, what do you mean? The player model button that was invisible before is still? Quite wrong...the player model button is now fully visible.
Yeah, I meant that but reading back on what I wrote, I twisted my own words :)


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on January 08, 2008, 10:31:42 PM
I like.
Nice bump :)
Worth mentioning for newer players; the invisible button is now completely invisible (as in not there) in version 0.7 and later.


Um, what do you mean? The player model button that was invisible before is still? Quite wrong...the player model button is now fully visible.
Yeah, I meant that but reading back on what I wrote, I twisted my own words :)

Oh haha, ok.
Once again, a nice bump. :p


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on January 08, 2008, 10:33:37 PM
Yeah, a custom characters rooster is always welcome. The model bots require some tweaking to their *_w.c file in order to work properly, though.

http://img.photobucket.com/albums/v119/Bopig/temp1.jpg
(http://xs114.xs.to/xs114/07145/Xenomorph.gif)

Maybe you should use this one instead :P
(found it on Planet Quake).

Haha, very nice. :D


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: w1zrd on January 08, 2008, 10:57:07 PM
Standing next to that alien is a predator, but you can't really see him (for obvious reasons)..
a bump a month? :)


Title: Re: Custom Player Models! Pictures and Links Inside!
Post by: Logan on March 12, 2008, 05:07:30 PM
Standing next to that alien is a predator, but you can't really see him (for obvious reasons)..
a bump a month? :)

Well this thread is dead now because the currrent version of OA doesn't have the original problem. Bump if you want..:p