-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame1.html
More file actions
102 lines (81 loc) · 4.17 KB
/
game1.html
File metadata and controls
102 lines (81 loc) · 4.17 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<html>
<head>
<title> Game Rules</title>
<link href="style1.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial scale=1.0">
</head>
<body onload="noBack();" onpageshow="if(event.persisted) noBack():" onunload="" ;>
<header>
<div class="row">
<div class = "logo">
<img src="logogame final.png">
</div>
<ul class="main-nav">
<li><a href="game.html"> HOME </a></li>
</ul>
</div>
<br>
<div class="rules">
<h1> <u>RULES </u></h1>
<ul class="list">
<li> Participants will register in teams of 3-4 people. Each team will be allotted a PC.
</li>
<li>The duration of the game is 1 hour, which will begin as soon as you start the game.</li>
<li> For the duration of the game, each team will be allowed to carry 1 mobile phone with an app that will be provided to them.
</li>
<li>The game consists of 5 levels.
</li>
<li>Each level is divided into 3 parts.
</li>
<ul><li> A coding puzzle will be given to the participants, on solving which they’ll get the clue to a location within the university campus.
The participants will go to the given location and find a hidden QR code.</li>
<li>On scanning the QR code, an Avenger-based question will be revealed. The answer to this riddle will be the password to unlock the next level.
</li>
<li>This password will have to be entered on the QR app as well as the respective PC.
</li></ul>
<li>The team to decode all the levels first wins!
</li>
<li>Out of the team, 1-2 members should always be seated at the PC, solving the coding puzzles. Rest of the team members will go to respective locations to find the hidden QR codes.
</li>
<li>Team members can interchange their position after each level.
</li>
<li>Participants are not allowed to use compilers, all questions are to be solved logically, on paper.</li>
<li>All answers are single word answers, and must be entered in small-caps.</li>
<li>The Puzzles include various logical, coding questions, error detection, and Theme based puzzles.
</li>
<li> In case of a tie, a tie-breaker will take place to determine the winner.
</li>
<li>Use of Internet is Strictly PROHIBITED.</li>
</ul>
</p>
<div class="button">
<a href="ques1.html" class="btn btn1"> CONTINUE </a>
</div>
<br><br>
</header>
<script language="JavaScript">
//disable right click
document.addEventListener('contextmenu', event => event.preventDefault());
//disable inspect shortcuts
document.onkeydown = function(e) {
if(event.keyCode == 123) {
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)){
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)){
return false;
}
if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)){
return false;
}
}
</script>
<script type="text/javascript">
window.history.forward();
function noBack() { window.history.forward(); }
window.onbeforeload = function() {return" Your work will be lost.";};
</script>
</body>
</html>