<title>SA:MP RP Admin Panel</title>
<style>
body {
font-family: Arial;
background: #1e1e1e;
color: white;
padding: 20px;
}
.box {
background: #2c2c2c;
padding: 15px;
margin-bottom: 15px;
border-radius: 10px;
width: 300px;
}
input {
width: 100%;
padding: 8px;
margin-top: 5px;
margin-bottom: 10px;
}
button {
width: 100%;
padding: 10px;
background: green;
color: white;
border: none;
cursor: pointer;
}
</style>
RP Admin Panel
Karakter pénz
Beállítás
Jelenlegi pénz: 0
Autó neve
Beállítás
Nincs autó
<script>
let player = {
money: 0,
car: "Nincs"
};
function setMoney() {
player.money = document.getElementById("money").value;
document.getElementById("moneyShow").innerText =
"Jelenlegi pénz: " + player.money;
}
function setCar() {
player.car = document.getElementById("car").value;
document.getElementById("carShow").innerText =
"Autó: " + player.car;
}
</script>
RP Admin Panel
Karakter pénz
BeállításJelenlegi pénz: 0
Autó neve
BeállításNincs autó