forked from AlexJezior/TheFallenImmortals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
equip.php
59 lines (57 loc) · 2.8 KB
/
equip.php
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
<?php
session_name("icsession");
session_start();
include('db.php');
$getchar = mysqli_query($conn, "SELECT * FROM characters WHERE id='".$_SESSION['userid']."'") or die(mysqli_error());
$char = mysqli_fetch_assoc($getchar);
$itemid = $_POST['itemid'];
if(!ctype_digit($itemid)){
print("alert('Hack attempt has been logged.');");
$toast = mysqli_query($conn, "INSERT INTO hackreportlog (`information`) VALUES ('".$char['username']." has attempted to alter equipment ID while equipping. The ID in inventory that was targeted was: ".$itemid."')");
die();
}
$getitem = mysqli_query($conn, "SELECT * FROM inventory WHERE id='".$itemid."' AND username='".$char['username']."'");
if(mysqli_num_rows($getitem) == "1") //Item exists
{
$item = mysqli_fetch_assoc($getitem);
if($charname == $item['username']) //Item belongs to manipulating player
{
if($charlevel >= $item['levelreq']) //High enough level to equip
{
$itemName = explode(',', $char['equipped']);
if($item['type'] == "Weapon") //For Accommodations display.
{
$itemName[0] = $item['itemname'];
}
elseif($item['type'] == "Armour") //For Accommodations display.
{
$itemName[1] = $item['itemname'];
}
elseif($item['type'] == "Gloves") //For Accommodations display.
{
$itemName[2] = $item['itemname'];
}
elseif($item['type'] == "Leggings") //For Accommodations display.
{
$itemName[3] = $item['itemname'];
}
elseif($item['type'] == "Boots") //For Accommodations display.
{
$itemName[4] = $item['itemname'];
}
$accommodations = "".$itemName[0].",".$itemName[1].",".$itemName[2].",".$itemName[3].",".$itemName[4].",";
$accommodationUpdate = mysqli_query($conn, "UPDATE characters SET equipped='".$accommodations."' WHERE id='".$_SESSION['userid']."'") or die(mysqli_error("Error updating User accommodation. Please tell the admin."));
$unequip = mysqli_query($conn, "UPDATE inventory SET equipped='No' WHERE type='".$item['type']."' AND username='".$charname."'");
$equip = mysqli_query($conn, "UPDATE inventory SET equipped='Yes' WHERE id='".$itemid."'");
print("viewInventory();");
include('updatestats.php');
}else{
print("alert('You are not a high enough level to equip this item!');");
}
}
}else{
print("alert('Hack attempt has been logged.');");
$toast = mysqli_query($conn, "INSERT INTO hackreportlog (`information`) VALUES ('".$char['username']." has attempted to alter equipment ID while equipping. The ID in inventory that was targeted was: ".$itemid."')");
die();
}
?>