Tribes Demo Archives

spockhammer

AlwaysCrying
I am looking for t1 base demos from anyone that would like to send them in.
I am mostly looking for demos that have not been released ever.
The goal is to put together a nice piece of tribes history as well as to showcase as many people as possible that have played tribes.

Tribes Demo Archives

  • TWL Demo Archive (lots of demos from all 3 tribes games, mostly used by T2 players currently, a very good place to start looking for team histories and public demos).
  • Groove's Tribes Demo Archive (mostly t1 demos, various pov's, mostly 10v10 base, there are a few t2 demos here and there).
  • Dare's Work In Progress (collection of t1 demos sorted into player folders, mostly LT, lots of pov's from good players, thank you to andrew, opsayo, ged, and everyone else who has submit demos or will be).
  • Powdahound's Demo Archive (many obscure t1 demos from various povs, also runs s3 directory browser which is prettier than the garbage on my site, if u go a directory up there are tribes maps and scripts).
  • Nasty Hobbit's Archive (a t2 demo archive [18:16] <@Hybrid> dare the site is from Nasty Hobbit from the bittah.com forums [18:16] <@Hybrid> euro community [18:16] <@Hawson> australian [18:16] <@Hybrid> australian [18:16] <@Hybrid> i made a typo hawson relax [18:16] <@Hawson> np bro)
Please contact me here or in tribalwar irc if you would like to send some demos of yourself.
Groove is also probably open to receiving demos and he idles in irc too.
 
Last edited:
I found this on an old backup drive.. Hope it's what you're after.

PHP:
<?php
// demoupload.php
// By Slitz, Oct 99

// settings
$sizelimit = "yes";
$sizebytes = "10000000";
$acceptedfiletypes = array('rec','zip','rar','7z');
$dlink = "http://www.tribes1.com/t1/recs";
$absolute_path = "/var/www/vhosts/tribes1.com/httpdocs/t1/recs";

// form
$fupl = "<br><form name=frmFileupload method=POST action=".$_SERVER['PHP_SELF']." enctype=multipart/form-data>
File to upload:<br>
<input type=file name=file size=30>
<br><input type=submit value=Upload>
</form>";

// file Upload
if ($_FILES['file']['name'] != "")
{
	$success = false;
	$file_name = strtolower(trim($_FILES['file']['name']));
	$file_name = str_replace(' ','_',$file_name);
	$file_name = str_replace('ä','a',$file_name);
	$file_name = str_replace('å','a',$file_name);
	$file_name = str_replace('ö','o',$file_name);
	$file_name = preg_replace('/[^.[:alnum:]_-]/','_',$file_name);
	$pathArr = pathinfo($file_name);
	$ext = $pathArr['extension'];
	if(!in_array($ext,$acceptedfiletypes))
		echo "Error: You may only upload one of the following file types: ".implode(', ',$acceptedfiletypes);
	else if (file_exists("$absolute_path/$file_name"))
		echo "Error: A file by this name already exists!";
	else if (($sizelimit == "yes") && ($file_size > $sizebytes))
		echo "Error: File is too large. It must be ".$sizebytes." bytes or less.";
	else if(is_uploaded_file($_FILES['file']['tmp_name']))
	{
		move_uploaded_file($_FILES['file']['tmp_name'], $absolute_path.'/'.$file_name);
		echo "<a href=\"".$dlink."/".$file_name."\">".$file_name."</a> was uploaded";
		$success = true;
	}
}

// status msg
if($success === true)
	echo "<br><br><a href=\"#\" onclick='history.go(-1)'>Upload another file »</a>";
else if($success === false)
	echo "<br><br><a href=\"#\" onclick='history.go(-1)'>Try again »</a>";
echo $fupl;
?>
 
oh, he he, those aren't mine. i wish i could take credit for all those! i just happened upon them when i was searching for some old demos!!!
 
oh, he he, those aren't mine. i wish i could take credit for all those! i just happened upon them when i was searching for some old demos!!!

the ones at iateyourbaby.com are hosted by me and provided by telos (well, initially, then Joop and a few others added theirs)
 
there are more coming

i am working on a euro demo archive too

should i merge it with the one i have or just make it separate (segregated)
 
Back
Top