im quite new to coding and this is my first mod But It Is Mainly Killahs. Some of you might like it.
First Create a file called KillaGangster.php
then upload this:
<?php
include("globals.php");
echo '<h1></h1>';
$prices = array("Gangsters",'500','750','1000','1500');
if($_GET['act'])
{
$will = rand(1,5);
$cost = abs(@intval($_POST['price']));
mysql_query("UPDATE users SET will=will+".$will.",money=money-".$cost." WHERE userid=".$ir['userid']) or die(mysql_error());
mysql_query("UPDATE users SET will=maxwill WHERE will>maxwill") or die(mysql_error());
echo 'You Killed A Gangster, you gain '.$will.'% will.';
$h->endpage();
exit;
}
else
{
echo 'Welcome, How Would You Like To Kill A Gangster.
<table border="1" cellspacing="0" class="table" width="35%">
<tr>
<th>How</th>
<th>Cost</th>
<th>do</th>
</tr>
<tr>
<td>Beat Them To The Floor</td>
<td>'.money_formatter($prices[1]).'</td>
<td><form action="'.$_SERVER['PHP_SELF'].'?act=buy" method="post"><input type="hidden" name="who" value="Beat Them To The Floor"><input type="hidden" name="price" value="'.$prices[1].'"><input type="submit" value="do"></form></td>
</tr>
<tr>
<td>Run Them Over In A Bus</td>
<td>'.money_formatter($prices[2]).'</td>
<td><form action="'.$_SERVER['PHP_SELF'].'?act=buy" method="post"><input type="hidden" name="who" value="Run Them Over In A Bus"><input type="hidden" name="price" value="'.$prices[2].'"><input type="submit" value="do"></form></td>
</tr>
<tr>
<td>Do A Drive By</td>
<td>'.money_formatter($prices[3]).'</td>
<td><form action="'.$_SERVER['PHP_SELF'].'?act=buy" method="post"><input type="hidden" name="who" value="Do A Drive By"><input type="hidden" name="price" value="'.$prices[3].'"><input type="submit" value="do"></form></td>
</tr>
<tr>
<td>Plant A Bomb In There Base</td>
<td>'.money_formatter($prices[4]).'</td>
<td><form action="'.$_SERVER['PHP_SELF'].'?act=buy" method="post"><input type="hidden" name="who" value="Plant A Bomb In There Base"><input type="hidden" name="price" value="'.$prices[4].'"><input type="submit" value="do"></form></td>
</tr>
</table>
<table border="1" cellspacing="0" class="table" width="35%">
<tr>
</tr>
</table>';
}
$h->endpage();
?>
hope you like it :D