2024-08-11 11:14:21 -04:00
|
|
|
<script type="text/javascript" src="./random.js"></script>
|
2024-09-01 17:38:39 -04:00
|
|
|
<div style="display: flex; flex-wrap: nowrap;">
|
|
|
|
<div style="margin-right: 12px;">
|
2024-08-11 11:14:21 -04:00
|
|
|
<select id="perk" style="width: 200px;">
|
2024-08-11 11:16:54 -04:00
|
|
|
<option class="selection" value="">No perk</option>
|
2024-08-11 11:14:21 -04:00
|
|
|
<option value="medic">Medic</option>
|
|
|
|
<option value="support">Support</option>
|
|
|
|
<option value="sharpshooter">Sharpshooter</option>
|
|
|
|
<option value="commando">Commando</option>
|
|
|
|
<option value="berserker">Berserker</option>
|
|
|
|
<option value="firebug">Firebug</option>
|
|
|
|
</select>
|
|
|
|
<button id="rollperk">Roll a perk</button>
|
|
|
|
<div style="margin-bottom:4px;"></div>
|
2024-08-11 11:16:54 -04:00
|
|
|
<select id="supportlvl" style="width: 283px; display: none;">
|
|
|
|
<option class="selection" value="">Support Specialist level</option>
|
|
|
|
<option value="1">Lvl 1 (21Kg carry)</option>
|
|
|
|
<option value="2">Lvl 2 (23Kg carry)</option>
|
|
|
|
<option value="3">Lvl 3 (25Kg carry)</option>
|
|
|
|
</select>
|
|
|
|
<div style="margin-bottom:4px;"></div>
|
2024-08-11 11:14:21 -04:00
|
|
|
<select id="set" style="width: 170px;">
|
|
|
|
<option value="vanilla">Vanilla Weapons</option>
|
|
|
|
<option value="kfs">KFS Weapons</option>
|
|
|
|
</select>
|
|
|
|
<input type="number" id="numofweapons" style="width: 108px;" placeholder="# of Weapons" min=1 max=3>
|
|
|
|
<div style="margin-bottom:10px;"></div>
|
|
|
|
<button style="font-size: 33px" id="random">ROCK AND ROLL<br>MCDONALDS</button>
|
2024-09-01 17:38:39 -04:00
|
|
|
</div>
|
|
|
|
<div id="categories">
|
|
|
|
Categories enabled:<br>
|
|
|
|
<input type="checkbox" id="melee" name="melee" value="Melee" checked>
|
|
|
|
<label for="melee"> Melee</label><br>
|
|
|
|
<input type="checkbox" id="power" name="power" value="Power" checked>
|
|
|
|
<label for="power"> Power</label><br>
|
|
|
|
<input type="checkbox" id="speed" name="speed" value="Speed" checked>
|
|
|
|
<label for="speed"> Speed</label><br>
|
|
|
|
<input type="checkbox" id="range" name="range" value="Range" checked>
|
|
|
|
<label for="range"> Range</label><br><br>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-08-11 11:14:21 -04:00
|
|
|
<br><br>
|
|
|
|
<table style="width:70%; border : 1px solid #f00;">
|
|
|
|
<tbody id="tbody">
|
|
|
|
<tr>
|
|
|
|
<th>Weapon</th>
|
|
|
|
<th>Price</th>
|
|
|
|
<th>Weight</th>
|
|
|
|
<th>Category</th>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<br>
|