Hi all!
If you're interested in programming, (not necessarily CLOTs or other WarLight-related things), join ACE! It's going to be developer-friendly, and a great place to find some teamwork/coding help. Ask here for an invitation!
~Nic
P.S. Paste this code into a text file and save it as something.html and run it!
<html>
<head>
<title>Want to join ACE?</title>
</head>
<body>
<input type="checkbox" id="invite">I want to join!<br>
<button id="b1" onclick="BtnClick()">Enter</button>
<p id="p1"></p>
</body>
<script>
function welcomeMessage() {
var player_wants_invite = document.getElementById("invite").checked;
if (player_wants_invite == true) {
return "Welcome to [ACE]!!!";
}
else if (player_wants_invite == false) {
return "Your loss!";
}
}
function BtnClick() {
document.getElementById("p1").innerHTML = welcomeMessage();
}
</script>
</html>