Add files via upload

This commit is contained in:
Lako
2021-03-18 20:29:10 -04:00
committed by GitHub
parent 19322acd38
commit 71500af91f
8 changed files with 136 additions and 0 deletions

42
dl.html Normal file
View File

@@ -0,0 +1,42 @@
<!--OpenFK Help by Lako-->
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicondl.ico" type="image/x-icon" />
<title>OpenFK</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<div class="sidenav">
<a href="index.html">Home</a>
<a>Downloads</a>
<a href="help.html">Help</a>
<a href="https://github.com/GittyMac/OpenFK">Github</a>
</div>
<body>
<marquee style="padding-top: 10px;" scrollamount="10">Update system coming soon with OpenFK 1.7!</marquee>
<img src="logodl.png" alt="OpenFK Logo with Download Arrow"/>
<h1>Download OpenFK</h1>
<h3>Download OpenFK here! <br> You will need to U.B. Funkeys installed.</h3>
<h2>Download Links</h2>
<a class="dl" href="https://github.com/GittyMac/OpenFK/releases/download/v1.6/OpenFK.1.6.x64.zip">Download (x64)</a>
<p></p>
<a class="dl" href="https://github.com/GittyMac/OpenFK/releases/download/v1.6/OpenFK.1.6.x86.zip">Download (x86)</a>
<h2>How to Install</h2>
<p>
OpenFK requires some manual work to set it up fully.<br> Put the contents of the OpenFK release into your RadicaGame folder.
<br>You will also need to find the Flash.ocx file, OpenFK will prompt you to download a compatible version if you don't have one.
<br>If it doesn't prompt you, you can download and use the <a href="https://github.com/GittyMac/OpenFK/releases/download/v1.5/FetchOCX.bat" >FetchOCX.bat</a> utility.
<br>Be sure to run the 'Configure OpenFK.bat' file to choose from some choices!
</p>
<h2>How to use USB Support</h2>
<p>
<strong>To use USB support, you will need to have the MegaByte drivers installed.</strong>
<br>Enable USB Support in the OpenFK configuration.
<br>Now you can use USB with OpenFK! (customF and USB can work together!)
<br><em>Please note USB support currently uses a workaround which can sometimes not work correctly.</em>
</p>
</body>
</html>

BIN
favicondl.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
faviconw.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

35
help.html Normal file
View File

@@ -0,0 +1,35 @@
<!--OpenFK Help by Lako-->
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="faviconw.ico" type="image/x-icon" />
<title>OpenFK</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<div class="sidenav">
<a href="index.html">Home</a>
<a href="dl.html">Downloads</a>
<a>Help</a>
<a href="https://github.com/GittyMac/OpenFK">Github</a>
</div>
<body>
<marquee style="padding-top: 10px;" scrollamount="10">Update system coming soon with OpenFK 1.7!</marquee>
<img src="logow.png" alt="OpenFK Logo with Wrench"/>
<h1>OpenFK Help</h1>
<h3>Common issues and solutions</h3>
<h2>It says I have no OCX!</h2>
<p>There will be a popup that will ask you if you want to install Flash.OCX</p>
<h2>My USB isn't working!</h2>
<p>Make sure the MegaByte drivers are properly installed and that USB support is enabled in OpenFK.0</p>
<h2>A game from Paradox Green isn't working properly!</h2>
<p>Actionscript 3 support is currently fairly experimental, so expect some bugs.</p>
<h2>I can't go online!</h2>
<p>There are currently no active servers, so you will have to play offline.</p>
<h2>The game doesn't look properly scaled!</h2>
<p>This one is a strange one. The way the game scales is not that good, and will result in some glitches which depends on the resolution. <br> Try using the 'Stretch 4:3' option which will use the original 800x600 resolution.</p>
</body>
</html>

BIN
logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
logodl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
logow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

59
style.css Normal file
View File

@@ -0,0 +1,59 @@
body
{
font-family: 'Comic Sans MS';
text-align: center;
}
marquee
{
font-weight: bold;
font-size: 24px;
}
h1
{
font-size: 78px;
margin-top: 0px;
margin-bottom: 0px;
}
h2
{
font-size: 48px;
margin-top: 0px;
margin-bottom: 0px;
}
h3
{
font-size: 24px;
margin-top: 0px;
margin-bottom: 0px;
}
.dl
{
font-weight: bold;
font-style: italic;
font-size: 72px;
color: seagreen;
}
.sidenav
{
margin: auto;
width: 50%;
height: auto;
position: relative;
overflow: auto;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
color: white;
font-size: 24px;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
border-radius: 20px;
}