Add Dress up Multiroom?

This commit is contained in:
SilicaAndPina 2021-03-10 12:14:52 +13:00
parent 13435cf37f
commit 99c604e926
14 changed files with 420 additions and 47 deletions

View file

@ -1,18 +0,0 @@
<?php
# Decide which version to use
if($_SERVER['HTTP_USER_AGENT'] == "Shockwave Flash") # Projector
{
$file = file_get_contents("horseisle_projector.swf");
header("Content-Type: application/x-shockwave-flash");
header("Content-Length: ".sizeof($file));
echo($file);
}
else
{
$file = file_get_contents("horseisle_patched.swf");
header("Content-Type: application/x-shockwave-flash");
header("Content-Length: ".sizeof($file));
echo($file);
}
?>