|
3D Vision, Mercury Cubes Making Their Way To UE3Kotaku summarizes Mark Rein's presentation of the new Unreal Engine 3 features at the GDC. Among the surprises are Mercury Cubes and a city-building on-the-fly exercise. Kotaku rightly points out that Unreal Engine demonstrations are often indications of things that will soon make their way into new Epic Games. Another demo showed a floating blob of liquid medal that warbled fluidly. "Remember last year we had the meat cube?" Epic Games vice president Mark Rein asked his audience here. He was referring to a GDC demonstration of Unreal from two years ago when a bloody cube of flesh was shown, getting shot up and chopped away, a precursor to some of the gore in Gears of War 2."This is the mercury cube." In related news Gamespot points out the announcement Epic Games made today regarding the integration of NVIDIA's 3D Vision into Unreal Engine 3. Unreal Engine 3 Adds Steamworks IntegrationNews from the GDC: Epic Games announces that Unreal Engine 3 now provides full Steamworks integration for licensees. Here's hoping that encourages more developers to go that route instead of the deficient Games for Windows LIVE platform. The press release follows: CARY, N.C., March 11, 2010 - Epic Games, Inc. and Valve Software LLC, two of the PC industry's leading technology and content development studios, have inked an agreement to deliver Valve's Steamworks suite of services to all licensees of Epic's industry-leading Unreal Engine 3 for use in their products, free of any additional fees. March UDK Beta ReleasedThe March version of the Unreal Development Kit has been released. Loads of new and updated documentation as well.
More Borderlands DLC ComingDeclaring that the Borderlands DLC would become a template for future games, Take-Two CEO Ben Feder also let slip that they would "continue to support the title with more digital content" Eurogamer has more. Blacklight: Tango Down AnnouncedComing this summer to Xbox 360 (LIVE Arcade), PS3 (PlayStation Store) and PC is Blacklight: Tango Down, an Unreal Engine 3 title from Ignition Entertainment and Zombie VR Studios. Today we’re announcing a new game set to ship this summer – Blacklight: Tango Down – a multiplayer-focused first person shooter that brings AAA quality and production values (like an Unreal Engine 3 powered core) and delivers it through downloadable channels like Xbox LIVE Arcade and the PlayStation Store, and on personal computer.
Cliff Bleszinski Reviews DM-WhiteRealmWaaay back in July 2008 the 3D Buzz "Old School Level Design Contest" wrapped up and an attractive level called DM-WhiteRealm was declared the winner. One of the prizes to be delivered was a video review of the map by none other than Cliff "don't call me CliffyB" Bleszinski. Guns For Games Competition3D Palace is running a contest called Guns for Games, with the end-goal of - drumroll please - awarding prizes for the best user-created in-game weapons. The mighty ShockRifle serves as inspiration and the rules are as follows: Guns in Games. A Staple of the modern gaming industry, what can make a game work where others fail is the guns it uses - the Shock Rifle for example is a well known weapon that is a signature of the Epic Unreal III game engine.
3rd Place - 3 Months of Sponsor Membership and Bioshock 2 on Steam. 2nd Place - 3 Months of Sponsor Membership and prize TBA 1st Place - 6 Months of Sponsor Membership and prize TBA Server Install linuxRewrote most of the page to add some missing pieces and also include instructions for the 451 patch. Revision as of 15:03, 28 February 2010 Current revision Line 1: Line 1: -This guide will show you step by step how to install Unreal Tournament on a Linux box.+This guide will show you step by step how to install Unreal Tournament 99 on a Linux box. It will contain information about applying patch 451, because without it, there is no functioning webadmin. First and foremost, you need to create a regular user. **DO NOT** use ROOT to run the game server!! First and foremost, you need to create a regular user. **DO NOT** use ROOT to run the game server!! -If you know the root password and you need to setup a user, then use this command.+First you have to have a user which will run the server. Different Linux distributions each have their own way, but usually, you can do: + + adduser [username] -''useradd [username]''+This will run a scripts that will ask a few questions, like the password. - + -To give it a password, type this:+ - + -''passwd [username]'' + - + -It will then ask you to enter a password, then confirm it.+ Once that is done, login with that user. Easiest way to do this without logging out is to use the su command. Once that is done, login with that user. Easiest way to do this without logging out is to use the su command. -''su [username]''+ su - [username] -(It will ask you to enter the users password, unless you are in root.)+Ok so now that we have our user, we need to change directory to it's home directory. So lets do that: -Ok so now that we have our user, we need to change directory to it's home directory. So lets do that. Simply type cd+ # (note: with some distro's this will not work. You'll have to type cd /home/[username] ) + cd -''cd''+Next, we want to download the server, patches and abfackelns Server Utilities (ASU) (file locations may change in the future, which will cause the links not to work anymore. Change as needed): -(note: Some distros this will not work. You'll have to type ''cd /home/[username]'' )+ wget http://ut-files.com/Entire_Server_Download/ut-server-436.tar.gz + tar -zxf ut-server-436.tar.gz + cd ut-server + wget http://www.ut-files.com/Patches/UTPGPatch451LINUX.tar.tar # May be changed to .tar.bz2 by the admins soon + tar xfj UTPGPatch451LINUX.tar.tar + wget http://ut-files.com/Entire_Server_Download/server_scripts/asu-0.6.tar.gz + tar -zxf asu-0.6.tar.gz + chmod +x asu.sh + cd System + ln -s libSDL-1.1.so.0 libSDL-1.2.so.0 + cd $HOME/ut-server -This will bring you to the home directory of the user you are logged in with. Now we need to download the server packages, we will use wget for this.+Because of some error ([http://www.unrealadmin.org/forums/showthread.php?t=29770 as described]), map names with ][ in them, like DM-Deck16][, are 0 bytes. So, you have to copy them from some other UT installation. 2399Skillz on the forums said he'll fix it, so it might be fixed at some point. -''wget http://ut-files.com/Entire_Server_Download/ut-server-436.tar.gz''+The server (at moment of writing) has special net-textures, to reduce the size of the installation. Problems my occur when clients are using the high-res textures (see [http://www.unrealadmin.org/forums/showthread.php?t=29770 aforementioned topic]). To solve this, copy the normal CD1 textures to the server dir: -This will download the 436 patched dedicated Unreal Tournament Linux Server. Once it completes, you'll then want to extract it. We'll use this command to do that.+ # Can also be copied from an UT installation that doesn't have the CD2 textures. + cp -v /path/to/cd/System/Textures/* $HOME/ut-server/Textures/ -''tar -zxvf ut-server-436.tar.gz''+Now we need to run the server utilities: -This may take a moment depending on how fast the server you're installing this on is. Once this is done, you'll want to change directory to the server install. Simply use cd.+ ./asu.sh -''cd ut-server''+This should open a texted based menu. Just to get the server started, we're only going to focus on setting up the startup script. So choose option I. - + -Now that we are in here, you can do an ls command to display the contents of the directory.+ - + -''ls''+ - + -Now it's time to get the server started. There are multiple startup lines you can use, there are also more than one way to start the server. I'm going to install abfackelns Server Utilities (ASU) to start/stop/restart the server, as well as set the startup line. It's very simple. First we need to download asu.+ - + -''wget http://ut-files.com/Entire_Server_Download/server_scripts/asu-0.6.tar.gz''+ - + -Now we need to extract it, see if you can remember how to do this. If not, then here.+ - + -''tar -zxvf asu-0.6.tar.gz''+ - + -This will extract the archive. Shouldn't take too long, it's relatively small.+ - + -Now we need to make it executable. To do this, simply type this.+ - + -''chmod +x asu.sh''+ - + -This should make it executable. Now we need to run it.+ - + -''./asu.sh''+ - + -This should open a texted based menu. Just to get the server started, we're only going to focus on setting up the startup script. So press + - + -''I''+ It will tell you something about running as root or regular user, regardless of what it says. Do not run it as root. It will ask you what user will be running the script, enter the user name of the user you created earlier. It will tell you something about running as root or regular user, regardless of what it says. Do not run it as root. It will ask you what user will be running the script, enter the user name of the user you created earlier. -''[username]''+Next it will ask you to enter the IP-address it will listen on. You only need to do this if there are more than one IPs on the server. If in doubt, leave empty. -Now it will ask you to enter an IP. You only need to do this if there are more than one IPs on the server. If in doubt, then enter the IP you use to connect to the server.+Next it will ask you what game type you want to run, if you do not see the game type you plan on running, don't worry. Just select DM for now. -''[the server ip]''+Then it will ask you what map you want to start with. Just choose one of the maps shown. Doesn't matter, can be changed later. - + -Now it will ask you what game type you want to run, if you do not see the game type you plan on running, don't worry. Just select DM for now.+ - + -''[enter the number then press enter]''+ - + -Now it will ask you what map you want to start with. Just choose one of the maps shown. Doesn't matter, can be changed later.+ - + -''[type the map name then press enter]''+ If you plan to run mutators, then enter them now. Only enter one, then press enter. It'll keep asking this question till you submit a blank answer. If you don't want to run any mutators, then just press enter. If you plan to run mutators, then enter them now. Only enter one, then press enter. It'll keep asking this question till you submit a blank answer. If you don't want to run any mutators, then just press enter. -''[type the mutator or just press enter to skip]''+Once you are done with that, it should show you the configs/setup you just entered. Review it to make sure it looks right. Then you can exit the script. -Depending on how many mutators you wanted to enter, this could take some time. If you don't see your mutator listed, don't worry. We'll add it later.+The script will have made an ucc.init file. Important to know is, that the path of the server is set in it. So, if you want to move the server to another dir, you have to change that file. The path name is mentioned several times. -Once you are done with that, it should show you the configs/setup you just entered. Review it to make sure it looks right.+Next you want to enable the webadmin. You can do that by opening UnrealTournament.ini, going to the [UWeb.WebServer] section and setting bEnabled=True and choose a port (5080 is standard) (ListenPort line may need to be added): -''[press x to exit, then press enter]''+ [UWeb.WebServer] + Applications[0]=UTServerAdmin.UTServerAdmin + ApplicationPaths[0]=/ServerAdmin + Applications[1]=UTServerAdmin.UTImageServer + ApplicationPaths[1]=/images + DefaultApplication=0 + bEnabled=True + ListenPort=5080 -Now you should be back in the directory. Type out ls to list the contents of the directory, you should see a new file called ucc.init.+Also set a password in the UTServerAdmin.UTServerAdmin section (already defined), otherwise people will try to log in with the defaults: -''ls''+[UTServerAdmin.UTServerAdmin] +AdminUsername=admin +AdminPassword=mybiggestsecret -If you want to setup a custom startup command, then you can edit this file manually. Depending on what editor you use, open the file. I use pico.+When going to the webadmin, be sure to include /ServerAdmin/ in your address bar after the host, because otherwise it will try to redirect you to that, using a HTTP redirect, but that will fail because the server has no idea you’re using an internet hostname and therefore it will redirect you to it’s LAN-IP, which obviously won’t work if the server is not in your LAN. So, go to http://hostname:5080/ServerAdmin/ (Don't forget trailing slash). -''pico ucc.init''+As a security precaution, patch 451 adds brute force protection to the admin login. See the file Releasenotes.htm in the Help dir for more info. In the Engine.Gameinfo section, a few rules should be added/modified (depending on whether they’re already there or not): -It should show a bunch of stuff. What you are focusing on, if you want to change anything are the first few lines.+ [Engine.GameInfo] - + (snip) -MYGAME=Botpack.DeathMatchPlus+ ... -MYMAP=DM-Barricade+ LoginDelaySeconds=1.000000 -MYUSERID=unreal+ MaxLoginAttempts=50 -MYDIR=/home/unreal/ut-server/.+ ActionToTake=DO_KickBanPlayer -MYIP=+ -MYMODS=+ -MYINI=/home/unreal/ut-server/./System/UnrealTournament.ini+ -MYUSER=User.ini+ - + -Change them to your desire, separating mutators with commas.+ If all is well, then you can go ahead and skip that step and just start the server using this command. If all is well, then you can go ahead and skip that step and just start the server using this command. -''./ucc.init restart''+ ./ucc.init start - + -I prefer to use restart, just because it makes sure the process isn't already running, if it is it will kill it, then restart it.+ If you need to stop the server then type this If you need to stop the server then type this -''./ucc.init stop''+ ./ucc.init stop - + -Please note. You will have to be in the main directory the server is installed in. If you get an error, then simply type this+ - + -''cd''+ -''cd ut-server''+ -This will bring you back to your home directory, then to the ut-server directory assuming you followed this guide step by step.+Or restart: + ./ucc.init restart -I will update this tutorial later with better formatting and more options. This should get the average user who doesn't know anything about Linux up and running.+If you have issues with UT complaining about not being able to find it's data files (see the Logs dir for the error messages if it won't start), you need to set the UT_DATA_PATH variable. To do that, I added this line below MYUSER=User.ini in ucc.init: + export UT_DATA_PATH="$MYDIR/System/" == Discussion == == Discussion == halfgaar foobarThe Secret Armory Of General Knoxx ReviewedGamespot is among the first to review Borderlands' SAMOGK (sorry... not spelling it out!) DLC, scoring it a 9/10. The previous two - Zombie Island and Moxxi - scoring an 8 and a 6, respectively, by comparison. Borderlands' "General Knoxx" DLC Released, No Install LimitsIt's refreshing to see a developer take notice of feedback and Gearbox apparently listened to the masses groaning about install limits on its previous two Borderlands downloadable additions, Mad Moxxi's Underdome Riot and The Zombie Island of Dr. Ned. Yep, that's right, The Secret Armory of General Knoxx was released on the PC today and the Steam version is confirmed to be free of the onerous install limits that saddled the others. That's correct; the activation limit is not present in the Steam version of General Knoxx. I do not know if we will be able to apply this to the previous DLCs, but Knoxx does not contain it on Steam. There was a large amount of response to this, and we took steps to address the concern I hope Borderlands' owners support this very positive move and make their voices heard with a purchase of this DLC. I know I am. Steam Open BetaA complete overhaul of Steam is available as an open beta. Pretty much everything has been updated with an eye towards integrating more friends data into all areas of the application as well as giving you greater flexibility with your games lists. You'll even be able to view applicable game news for each of the games you own. Looks pretty sexy too. Oh yeah, and it might not work. Beta and all. Install at your own risk. Psst. Don't tell anyone I told you, but Serious Sam HD: The First Encounter is half off ($7.49) until March 2. Borderlands' Secret Armory Of General Knoxx - OpenedXbox 360 owners can purchase and download Borderlands' third DLC "The Secret Armory of General Knoxx" beginning today, while PS3 and PC owners will need to come back Thursday. The trailer can be viewed below. History Of The Unreal EngineBig thanks to the VE3D guys for linking to a new article at IGN chronicling the evolution of the Unreal Engine. Beginning with the days of Tim Sweeney writing code in his parents' house, the lengthy article winds down at the state of the engine today and looks forward. Chair Entertainment found all the new features in UE3 made it easier for them to transition to small team development after going all out with Advent Rising. "UE2 required programmer support for most gameplay tasks, whereas UE3 moved most of that power into the hands of level designers and artists," Mustard said. "This allowed us to make Undertow with only one full-time programmer in a very short period of time." BioShock 2 DLC Announced2K rolls out news that downloadable multiplayer and singleplayer content is on the way to BioShock 2. First up is a multiplayer pack. 1Up summarizes it this way: Is 2K Marin not entitled to the sweat of its brow? No, says the cynical gamer, downloadable belongs on the disc. Nevertheless, the company already announced upcoming DLC for BioShock 2, focusing specifically on the multiplayer aspect. The "Sinclair Solutions Test Pack" will be available for Xbox 360, PC, and PS3 for 400 Microsoft Points, or $4.99. The pack includes a rank increase to level 50, the playable characters that were available as pre-order bonuses, 20 new trials, a third upgrade for each weapon, and five new masks. We have to wonder if raising the level cap for those who buy the DLC will make the game unbalanced, or if they'll simply be filtered into their own game lobbies. In related news, our friends at Evil Avatar point to an article by veteran game reviewer Tom Chick at fidgit that rips into the entire BioShock 2 multiplayer implementation. Meanwhile, I can get into multiplayer Bioshock 2 games on the PC with no problem. The "getting in" part is easy. The "playing" part is a whole other kettle of fish. Rotten, stinking, franchise-killing fish. The PC multiplayer is afflicted with insufferable lag. I jump down from the second-story balcony of the Kashmir Restaurant and open fire on the guy hacking the turret, but then I'm suddenly back on the second floor again. I try to walk through a door, but it won't open. I turn a corner and suddenly I'm staring at the wall ten feet short of the corner. What the hell is going on? It's like having a 2400 baud modem. Capps Talks Independent DevelopmentGamespot recounts the Chris Taylor (Gas Powered Games) and Mike Capps (Epic) lead discussion on independent game development at the DICE summit. Here the Epic Games President talks about the importance of self-promotion: "I think it's really important to put your name forward. You want [the marketing] to say 'Epicgames.com' not 'Publishername.com.' I mean you see Infinity Ward, you want to buy it. You see Activision, and you don't." Borderlands: The Secret Armory of General Knoxx, PreviewedThe third, and reportedly largest, piece of DLC for Borderlands is being previewed at Gamespot. In addition to the video below they've got a nice write-up of what to expect. Some of the juicier details: The content pack will feature several all-new areas to visit, complete with new enemies, weapons, and vehicles. On top of all that, Gearbox is implementing a new level cap of 61 that extends to players and gear, as well as upping the capacity of your backpack via some quest rewards. Finally, you can expect a new dose of achievements and trophies to nab. All told, there's a bunch of sexy stuff that should please fans. Make Something Unreal Contest - Grand Prize Winners RevealedThe Grand Prize Winners of the Make Something Unreal Contest have been announced. The grand prize winners in the Best Game Mod category can be viewed at and are recognized as follows: And here's the video of the award presentation: The Ball Official TrailerThe first trailer for the UDK version of The Ball has been released! Video Games | The Ball | Debut Trailer XBox 360 | Playstation 3 | Nintendo WiiDungeon Defenders Debut TrailerWe first reported about this UDK game (Dungeon Defense) in development about 10 days ago and already we've got a look at the first trailer available of the commercial iteration from Trendy Entertainment. Demonstrating the game's distinct blend of online cooperative Tower Defense & Character Action RPG, this beautiful trailer sets the stage for what the greater game is all about. Stay tuned for more... including news of the game's groundbreaking competitive features! David M Is Back... With BobUnreal Tournament fans will no doubt remember playing a map or two from David Münnich. He returns with an interesting singleplayer UT (also requires Operation Na Pali) experience simply titled "Bob - Everybody needs a friend!" This map is different from all previous Singleplayer maps for Unreal, because it focuses on solving little puzzles, finding things, maneuvering yourself to certain places with acrobatic skills. When you think you are stuck, don't give up. There is a way! |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||