Unread posts   New posts   Your posts

All times are UTC + 1 hour [ DST ]



Post new topic Reply to topic  [ 9 posts ] 
Author Message
PostPosted: 05 Jun 2011, 15:03     Post subject: [u1] Unreal Patch 227h now released
Administrator
Administrator
User avatar

Joined: Nov 12th, 2007
Posts: 1877
Location: Stuttgart, Germany
The newest iteration of OldUnreal's amazing community patch, Unreal 227h, has now been released. It adds a few extra features such as decal support for static meshes and removes glaring issues found in the previous release, making the patch certainly worth upgrading to. Grab it at OldUnreal.com.

_________________
Image

<+Waffnuffly> basically, Eve made a solid zone portal
<+Waffnuffly> thats why we got kicked out of eden and life sucks
<+Waffnuffly> it is the original sin


Top
 Profile  
 
PostPosted: 05 Jun 2011, 16:50     Post subject: Re: [u1] Unreal Patch 227h now released
Nali Priest
Nali Priest
User avatar

Joined: Nov 11th, 2007
Posts: 5957
It got some, minimal lighting bugs still, as in vortex2.
Saw this on BUF.

_________________
Image
Want an opinion on something? Ask me.
Quote:
<Gundy> ebm had 65000 fucking guts but you're a funny guy shouting testicle malfunction in the lander


Top
 Profile  
 
PostPosted: 05 Jun 2011, 17:12     Post subject: Re: [u1] Unreal Patch 227h now released
OldUnreal Staff
OldUnreal Staff

Joined: Oct 7th, 2008
Posts: 120
explained it there already (http://forums.beyondunreal.com/showthre ... ost2517276) but, here is a copy of it:

It's a lighting problem, but its not really a lighting issue, its caused because the origin of the body is insight the world geometry .
Basically its a map issue which could have been easily avoided. 227g/h is just a bit more sensitive to such mistakes as it handles many things more accurate (in this case ighting visibility was changed center of render bounding box rather than actor location).

That's very sad for old maps, but fortunately this happens only in very rare situations. So new maps can benefit from it with "little losses".

Besides, lighting itself wasn't changed, except specularity, which made meshes unlit partially even if there was no light source at all. Now the lighting is there more accurate too as it only displays light which is actually really there.

Of course this can be taken as disadvantage or even "bug" if you wish, but there are a few things in which we suffer from "the sins of the past" just for fixing bugs, like this one above.

:)


Top
 Profile  
 
PostPosted: 06 Jun 2011, 02:26     Post subject: Re: [u1] Unreal Patch 227h now released
Gilded Claw
Gilded Claw
User avatar

Joined: Nov 12th, 2007
Posts: 1585
Location: Riding my bicycle from the highest hill in Sydney to these forums
You could take it a step further and start patching individual maps? :P Break compatibility across versions, I wouldn't care. Although I'm sure a great many others would....

_________________
Image
Ignorance is knowing anything
And only idiots know everything


Top
 Profile  
 
PostPosted: 05 Jan 2012, 22:55     Post subject: Re: [u1] Unreal Patch 227h now released
Skaarj Scout
Skaarj Scout

Joined: Jan 5th, 2010
Posts: 10
Guys, a problem here. Framerate is really low especially when I see more geometry. When I look up in the sky, framerate is normal. It didn't happen with previous 227 :/ I use Direct9 renderer and GeForce 450GTS.


Top
 Profile  
 
PostPosted: 05 Jan 2012, 23:15     Post subject: Re: [u1] Unreal Patch 227h now released
>:E
>:E
User avatar

Joined: Dec 15th, 2007
Posts: 3696
Location: The Kitchen
TheIronKnuckle wrote:
You could take it a step further and start patching individual maps? :P Break compatibility across versions, I wouldn't care. Although I'm sure a great many others would....

Would probably make more sense to add a legacy boolean that toggles between the new lighting system and the old one, but I'm not sure if it's worth the extra work.

_________________
Image


Top
 Profile  
 
PostPosted: 06 Jan 2012, 02:28     Post subject: Re: [u1] Unreal Patch 227h now released
Skaarj Berserker
Skaarj Berserker
User avatar

Joined: Feb 2nd, 2010
Posts: 371
Location: England
jammer64 wrote:
Guys, a problem here. Framerate is really low especially when I see more geometry. When I look up in the sky, framerate is normal. It didn't happen with previous 227 :/ I use Direct9 renderer and GeForce 450GTS.


Are your shadows set to Ultra-High res? If so, change it to blob or low-res ones. If that doesn't fix it, reset your renderer's settings to default or try switching to a different one (Like OpenGL)

_________________
Shivaxi wrote:
[20:38:54] Shivaxi: I BOUGHT DA INTERNETS
[20:38:56] Shivaxi: I AM NOW INTERNETS
Casey wrote:
I apparently made a post too powerful for public eyes.


Top
 Profile  
 
PostPosted: 06 Jan 2012, 02:46     Post subject: Re: [u1] Unreal Patch 227h now released
News Editor
News Editor
User avatar

Joined: Dec 21st, 2007
Posts: 577
Location: Poland.ut3
There WAS one map that was patched and saved under a different filename, Illumination. It is now easier to escape the explosion. ExtremeDarkGen. There's something in the system files that throws it into the loop without modifying other maps' teleporters directly.

_________________
Image
I am the Unreal archivist and historian. If you have something from the past of Unreal that I don't have, do tell.


Top
 Profile  
 
PostPosted: 06 Jan 2012, 09:42     Post subject: Re: [u1] Unreal Patch 227h now released
Skaarj Berserker
Skaarj Berserker
User avatar

Joined: Sep 25th, 2008
Posts: 385
Yeah, I fixed ExtremeDGen so it wouldn't be bugged anymore. (Pathing needed to be rebuilt from leftovers of ExtremeGen/spawning in initial area where you'd get stuck online) This is how the game switches to it. CoopGame only, map made in 225f so old clients can download it. There is no real difference between the two maps. I just made the playerstarts move to the second area after the teleport effect as well.
Code:
function SendPlayer( PlayerPawn aPlayer, string URL )
{
   local GameRules G;

   if ( GameRules!=None )
   {
      for ( G=GameRules; G!=None; G=G.NextRules )
         if ( G.bHandleMapEvents && !G.CanCoopTravel(aPlayer,URL) )
            return;
   }

   // hack to skip end game in coop play
   if ( left(URL,7) ~= "endgame")
   {
      Level.ServerTravel( "Vortex2", False);
      return;
   }
   if ( left(URL,11) ~= "extremeDGen")//change to fixed map instead
   {
      Level.ServerTravel( "EXTREMEDarkGen", True);
      return;
   }
   Level.ServerTravel( URL, true );
}


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 9 posts ] 

All times are UTC + 1 hour [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group