forked from vasl-developers/vasl-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
64 lines (59 loc) · 3.41 KB
/
index.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Cache-Control" content="max-age=86400"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="VASL is used to play Advanced Squad Leader (ASL) over the internet against anyone, anywhere in the world.">
<meta name="author" content="">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<title>VASL - Play Advanced Squad Leader over the Internet!</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link href="./css/vasl_styles.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7W4JY7C21F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7W4JY7C21F');
</script>
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid" style="margin-top:150px;">
<div class="row">
<br>
<br>
<div class="col-md-2 sidebar"></div>
<div class="main-content col-md-8">
<h1 class="pull-right">ASL Over the Internet!</h1>
<table>
<tr>
<td class="top">
<p>VASL is that adaptation of the <a href="http://www.vassalengine.org/">VASSAL engine</a> to the ASL game system.</p>
<p>Those who know <a href="http://www.multimanpublishing.com/" target="_blank">Advanced Squad Leader</a> (or ASL) know it as the finest tactical wargame of all time. One of the best selling military boardgames ever, ASL depicts WWII combat at the level of individual squads, guns, vehicles, and machine-guns with a degree of detail never achieved in another game. Those who enter the world of ASL often find that its complexity means that opponents are difficult to find, particularly for people who don't live in major population centers. This is where VASL comes in.</p>
<p>VASL is a computerized interface for playing ASL over the Internet. It does not replace the need to own the boardgame, but it does allow any two players to connect and play each other live over the Internet. Unlike games played over Internet chat sites (IRQ's), you are able to <b>see and manipulate</b> both the maps and counters on the VASL screen and transmit this information instantaneously to your opponent. Play by email or connect to the online server, where you can view other games being played, share information, chat, and compete in online tournaments. It's a club for those without a club, and it's changing the hobby. </p>
<div class="center"><img src="images/vasl4_action.gif" width="500" height="600" alt="The VASL interface looks just like playing FtF on the real boards!"></div>
</td>
</tr>
</table>
</div>
<div id="links" class="col-md-2"></div>
</div>
</div>
<footer></footer>
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#navbar").load("./include/navbar.htm", function() {
$("ul.navbar-nav li.about").addClass("active");
});
$("#links").load("./include/links.htm");
$("div.sidebar").load("./include/sidebar.htm");
$("footer").load("./include/copyright.htm");
});
</script>
</body>
</html>