Changed whole project structure (split client and server into separat projects)
This commit is contained in:
72
ReallifeGamemode.Client/Save/blip/save.html
Normal file
72
ReallifeGamemode.Client/Save/blip/save.html
Normal file
@@ -0,0 +1,72 @@
|
||||
<!--
|
||||
* @overview Life of German Reallife - Client Save.html
|
||||
* @author Orangebox, hydrant, VegaZ
|
||||
* @copyright (c) 2008 - 2018 Life of German
|
||||
*-->
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="save-page" style="padding: 5% 0 0;">
|
||||
<div class="form">
|
||||
<div class="blip-form">
|
||||
<p><b>Blip speichern, bitte fülle die Tabelle aus:</b></p>
|
||||
<table>
|
||||
<tr>
|
||||
<td align="right"><b>Model ID:</b></td>
|
||||
<td><input type="text" placeholder="[INT]-Wert" id="blipSprite" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><b>Name:</b></td>
|
||||
<td><input type="text" placeholder="Wird angezeigt beim hovern" id="blipName" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><b>Skalierung:</b></td>
|
||||
<td><input type="text" placeholder="[FLOAT]-Wert | Standard: 1" id="blipScale" /></td>
|
||||
</tr>
|
||||
<!--<tr>
|
||||
<td align="right"><b>Farbe:</b></td>
|
||||
<td>
|
||||
<input class="colorPicker" type="color" id="blipColor" name="blipColor" value="#000000" />
|
||||
</td>
|
||||
</tr>-->
|
||||
<tr>
|
||||
<td align="right"><b>Farbe:</b></td>
|
||||
<td><input type="text" placeholder="Siehe Wiki" id="blipColor" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><b>Transparenz:</b></td>
|
||||
<td><input type="text" placeholder="(0-255)" id="blipAlpha" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><b>Draw Distance:</b></td>
|
||||
<td><input type="text" placeholder="[FLOAT]-Wert" id="blipDrawDistance" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><b>Short Range:</b></td>
|
||||
<td>
|
||||
<input type="checkbox" id="blipShortRange" name="blipShortRange" value="shortRange" />Zeigt das Blip nur innerhalb der Minimap
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><b>Rotation:</b></td>
|
||||
<td><input type="text" placeholder="[FLOAT]-Wert" id="blipRotation" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><b>Dimension:</b></td>
|
||||
<td><input type="text" placeholder="(0-255)" id="blipDimension" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
<button id="saveBtn" onclick="saveData()">Speichern</button><br /><br />
|
||||
<button class="cancelBtn" onclick="cancelData()">Abbrechen</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="package:///Dependencies/jquery-3.3.1.min.js"></script>
|
||||
<script src="save.js" type="text/javascript"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user