This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
forgeadd.php
44 lines (40 loc) · 1.79 KB
/
forgeadd.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
<?php
session_name("icsession");
session_start();
include('db.php');
if($_POST['itemid'] != NULL || $_POST['itemid'] != "" || $_POST['itemid'] != " "){
$data = "";
$querty = mysql_query("SELECT * FROM inventory WHERE id='".$_POST['itemid']."' AND username='".$char['username']."'");
if(mysql_num_rows($querty) != 1){
print("alert('This is not your item!');");
die();
}
$inventory = mysql_fetch_assoc($querty);
$squerty = mysql_query("SELECT * FROM forge WHERE username='".$char['username']."'");
if(mysql_num_rows($squerty) >= 4){
print("alert('You can only Forge four items at a time.');");
die();
}
if(mysql_num_rows($squerty) > 0){
$forge = mysql_fetch_assoc($squerty);
if($forge['type'] != $inventory['type']){
print("alert('You can only add one item type at a time to forge.');");
die();
}
}
if($inventory['equipped'] == "Yes"){
print("alert('Equipped items do not go into forge!');");
die();
}
if(substr($inventory['itemname'], 0, 3) == "[F]"){
print("alert('You cannot add items that have already been forged.');");
die();
}
$addToForge = mysql_query("INSERT INTO `forge` (`username`, `itemname`, `equipped`, `levelreq`, `type`, `power`, `strength`, `dexterity`, `endurance`, `intelligence`, `concentration`, `value`) VALUES ('".$inventory['username']."', '".$inventory['itemname']."', 'No', '".$inventory['levelreq']."', '".$inventory['type']."', '".$inventory['power']."', '".$inventory['strength']."', '".$inventory['dexterity']."', '".$inventory['endurance']."', '".$inventory['intelligence']."', '".$inventory['concentration']."', '".$inventory['value']."')");
$removeFromInventory = mysql_query("DELETE FROM inventory WHERE id='".$inventory['id']."'");
}else{
$data = "No item selected.";
}
print("fillDiv('displayArea','".$data."');");
include("newshop.php");
?>