forked from AlexJezior/TheFallenImmortals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fightplayer.php
108 lines (90 loc) · 7.26 KB
/
fightplayer.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
session_name("icsession");
session_start();
include('db.php');
include('varset.php');
include('active.php');
include('attackbonuses.php');
$getchar = mysqli_query($conn, "SELECT * FROM characters WHERE id='".$_SESSION['userid']."'");
$char = mysqli_fetch_assoc($getchar);
$date = time();
$findDuel = mysqli_query($conn, "SELECT * FROM duelground WHERE `tousername`='".$char['username']."' OR `fromusername`='".$char['username']."'");
if(mysqli_num_rows($findDuel) == 0){
print("alert('You are not in a duel!');");
}else{
$duel = mysqli_fetch_assoc($findDuel);
if($duel['status'] == "Requesting" || $duel['turn'] != $char['username']){
print("alert('It is not your turn to duel or the duel hasnt even started!');");
}else{
if($charlife <= "0"){
print("alert('You were slaughtered.');");
$updateDuel = mysqli_query($conn, "DELETE FROM duelground WHERE `id`='".$duel['id']."'");
}else{
if($char['username'] == $duel['tousername']){
$findOponent = mysqli_query($conn, "SELECT * FROM characters WHERE username='".$duel['fromusername']."'");
$oponent = mysqli_fetch_assoc($findOponent);
}else{
$findOponent = mysqli_query($conn, "SELECT * FROM characters WHERE username='".$duel['tousername']."'");
$oponent = mysqli_fetch_assoc($findOponent);
}
require('oponentvarset.php');
require('oponentattackbonuses.php');
if($oponentlife <= "0"){
print("alert('".$oponentname." was slaughtered.');");
$updateDuel = mysqli_query($conn, "DELETE FROM duelground WHERE `id`='".$duel['id']."'");
}else{
if($char['class'] == "Mage" || $char['class'] == "Mage II" || $char['class'] == "Mage III" || $char['class'] == "Mage IV" || $char['class'] == "Mage V" || $char['class'] == "Sorcerer" || $char['class'] == "Sorcerer II" || $char['class'] == "Sorcerer III" || $char['class'] == "Sorcerer IV" || $char['class'] == "Sorcerer V" || $char['class'] == "Elemental"){
$initvalue = floor("75" * ($charcon / $oponentdex));
}else{
$initvalue = floor("75" * ($chardex / $oponentdex));
}
$initnumber = mt_rand("1", "100");
if($initnumber > $initvalue){ //You missed
$messagechat = "<strong><font color=\'#FF3300\'>You <span style=\'color: red;\'><i><strong>miss</strong></i></span> ".$oponentname.".</font></strong><br />";
$query = mysqli_query($conn, "INSERT INTO chatroom (`date`, `userlevel`, `username`, `message`, `to`) VALUES ('".$date."', '4', 'PM', '".$messagechat."', '".$char['username']."')");
$messagechat = "<strong><font color=\'#FF3300\'>".$char['username']." <span style=\'color: green;\'><i><strong>missed</strong></i></span> you! <a href=\'javascript: attackFight();\'>Attack</a>!</font></strong><br />";
$query = mysqli_query($conn, "INSERT INTO chatroom (`date`, `userlevel`, `username`, `message`, `to`) VALUES ('".$date."', '4', 'PM', '".$messagechat."', '".$oponentname."')");
$updateDuel = mysqli_query($conn, "UPDATE duelground SET turn='".$oponentname."', time='".$date."' WHERE id='".$duel['id']."'");
}else{ // You hit
if($char['class'] == "Mage" || $char['class'] == "Mage II" || $char['class'] == "Mage III" || $char['class'] == "Mage IV" || $char['class'] == "Mage V" || $char['class'] == "Sorcerer" || $char['class'] == "Sorcerer II" || $char['class'] == "Sorcerer III" || $char['class'] == "Sorcerer IV" || $char['class'] == "Sorcerer V" || $char['class'] == "Elemental"){
$damagemin = floor($charint * "0.1");
$damagemax = floor($charint * "0.5");
}else{
$damagemin = floor($charstr * "0.1");
$damagemax = floor($charstr * "0.5");
}
$damageval = mt_rand($damagemin, $damagemax); // amount of damage
$oponentlife = $oponentlife - $damageval;
$messagechat = "<strong><font color=\'#FF3300\'>You <span style=\'color: green;\'><i><strong>hit</strong></i></span> ".$oponentname." for <span style=\'color: green;\'><i><strong>".number_format($damageval)."</strong></i></span> damage!!!</font></strong><br />";
$query = mysqli_query($conn, "INSERT INTO chatroom (`date`, `userlevel`, `username`, `message`, `to`) VALUES ('".$date."', '4', 'PM', '".$messagechat."', '".$char['username']."')");
$messagechat = "<strong><font color=\'#FF3300\'>".$charname." <span style=\'color: red;\'><i><strong>hit</strong></i></span> you for <span style=\'color: red;\'><i><strong>".number_format($damageval)."</strong></i></span> damage!!!</font></strong><br />";
$query = mysqli_query($conn, "INSERT INTO chatroom (`date`, `userlevel`, `username`, `message`, `to`) VALUES ('".$date."', '4', 'PM', '".$messagechat."', '".$oponentname."')");
if($oponentlife <= "0"){ //oponent is dead
$messagechat = "<strong><font color=\'#FF3300\'>You <span style=\'color: green;\'><i><strong>slaughtered</strong></i></span> ".$oponentname."!!! Congratulations!</font></strong><br />";
$query = mysqli_query($conn, "INSERT INTO chatroom (`date`, `userlevel`, `username`, `message`, `to`) VALUES ('".$date."', '4', 'PM', '".$messagechat."', '".$char['username']."')");
$yourRatio = explode('/', $char['duelratio']);
$yourRatio[0] = $yourRatio[0] + 1;
$newRatio = $yourRatio[0]."/".$yourRatio[1];
$updateRatio = mysqli_query($conn, "UPDATE characters SET duelratio='".$newRatio."' WHERE username='".$char['username']."'");
$messagechat = "<strong><font color=\'#FF3300\'>".$charname." <span style=\'color: red;\'><i><strong>slaughtered</strong></i></span> you. Sorry for your loss...</font></strong><br />";
$query = mysqli_query($conn, "INSERT INTO chatroom (`date`, `userlevel`, `username`, `message`, `to`) VALUES ('".$date."', '4', 'PM', '".$messagechat."', '".$oponentname."')");
$oponentRatio = explode('/', $oponent['duelratio']);
$oponentRatio[1] = $oponentRatio[1] + 1;
$newRatio = $oponentRatio[0]."/".$oponentRatio[1];
$updateRatio = mysqli_query($conn, "UPDATE characters SET duelratio='".$newRatio."' WHERE username='".$oponent['username']."'");
$endDuel = mysqli_query($conn, "DELETE FROM duelground WHERE id='".$duel['id']."'");
}else{ //The duel goes on...
$messagechat = "<strong><font color=\'#FF3300\'>".$oponentname."is initiating the next round...</font></strong><br />";
$query = mysqli_query($conn, "INSERT INTO chatroom (`date`, `userlevel`, `username`, `message`, `to`) VALUES ('".$date."', '4', 'PM', '".$messagechat."', '".$char['username']."')");
$messagechat = "<strong><font color=\'#FF3300\'>You still stand... <a href=\'javascript: attackFight();\'>Attack</a>!</font></strong><br />";
$query = mysqli_query($conn, "INSERT INTO chatroom (`date`, `userlevel`, `username`, `message`, `to`) VALUES ('".$date."', '4', 'PM', '".$messagechat."', '".$oponentname."')");
$changeDuelSides = mysqli_query($conn, "UPDATE duelground SET turn='".$oponentname."', time='".$date."' WHERE id='".$duel['id']."'");
}
$updateOponent = mysqli_query($conn, "UPDATE characters SET life='".$oponentlife."' WHERE username='".$oponentname."'");
}
}
}
}
}
include('updatestats.php');
?>