Previous Blog Next Blog
Prev/Next Blog
by date

Multi-Gametype FPS starter update

Multi-Gametype FPS starter update
Name:Zod
Date Posted:Dec 02, 2006
Rating:Not Rated
Public:YES
Comments:YES
RSS Feed:GarageGames Blog feedor Subscribe with .
Profile Page:View profile page for Zod

Blog post
Well it's crunch time for me over at Masterdom so my planned release of the starter kit update is on hold for probably another week. I have crushed about 6 script fubars and added in a great new Deathmatch map by Jove Chiere.

One major fix is to do with radius damage and impulses. In my ripping out my old game code I left the radius damage function unable to apply impulses. This is fixed. If you wish to make this change yourself in the meantime. At the bottom of function radiusDamage replace the impulse code with the following:


         if ( %impulse > 0 && %data.canImpulse == true )
{
%vec = VectorSub( %targetObject.getWorldBoxCenter(), %position );
%vec = VectorNormalize( %vec );
%vec = VectorScale( %vec, %impulse * %distance[%i] );
%targetObject.applyImpulse( %position, %vec );
}


Just make sure the objects you wish to have impulses applied have canImpulse parameter specified as true in the objects datablock.

A list of changes will be included with the update when I release it. I hope you all are geting some use out of the kit :)

Recent Blog Posts
List:12/14/06 - Multi-Gametype FPS starter kit Version 1.1
12/02/06 - Multi-Gametype FPS starter update
11/19/06 - Multi-Gametype FPS starter

Submit ResourceSubmit your own resources!

N R Bharathae   (Dec 02, 2006 at 03:58 GMT)
Your update doesn't by chance include spawning spheres does it? I haven't been able to place a spawning sphere on an elevated DIF interior without the player model spawning on the terrain underneath the location where I moved the sphere.

That's the only trouble I've had with your build, Zod. All else is fantastic! Great job!

Aaron E   (Dec 02, 2006 at 04:42 GMT)
Zod,

I'm having a blast with your multigametype framework -- there's a lot of cool stuff in there. You may have already seen this, but aside from the impulse issues, there may also be a problem with weapon and other dynamic 'light' effects on terrain. It seems to work perfectly on interiors, however.

Anyway, thanks for the starter kit and the fixes.

You must be a member and be logged in to either append comments or rate this resource.