Jump to content
MakeWebGames

acer240

Members
  • Posts

    24
  • Joined

  • Last visited

Everything posted by acer240

  1. edited : removed as noticed was MCCodes and will not work
  2. lol did this inbred really request it be re-opened ? My view , in case you hadn't guessed skooda is this : Yes games get spammed now and then. Yes i consider you posting your game links in a shoutbox and mailing users as spam. The reason you only mailed 3 or 4 ?...because you got banned by a GM you fucktard.   The biggest issue i have with you is this : Games do get spammed now and then by players and it is one of things that happens...The issue here is YOU. You are the games owner...so it isnt some player spam brought on by a referal comp or anything like that. It is YOU the games owner actively signing up for others games , that they work damned hard building userbases , paying for adverts etc...for a wanker like you to jump online and spam your 'fairly mediocre to outright ****' game.   If you wish to post any comeback ...think it through first as , trust me, you are coming across as a world class prick right about now skooda.
  3. as i said your clearly a dick. you just asked me to 'view my fed you cunt' < nicely worded Ferderal Jail Who Time Left Reason Jailer timmy 351 Days NO HACKERS GS-Owner [1] damage 9,964 Days This is sad GS-Owner [1] damage 122,337 Days Anonymous [22]   ^^ thats it 3 users.....nothing to with my game (just a desperate clutch at straws to try and redeem your actions)   bottom line is as long as your game name is out to be filtered i am fine with that.   No need to respond as i dont speak 'idiot'
  4. oh dear dont be a silly boy..... I havent spammed anything you fool...i , like an adult and decent owner, pay for my ads via FB, advertiseyourgame, various votesites etc etc... to be caught out and respond with you did it to me is both childish and pathetic. I'll leave it there as your clearly a dick.   filter wisecrime in your games today folks :)
  5. after being caught out , after making out it wasnt him... he apologized in his own game http://tinypic.com/r/4lhdh2/6   as i said if you have filters ..add wisecrime now :) as i'm sure he will be spamming your way soon enough
  6. [email protected] < sign up email skooda < username   will spam your forums, users etc with his wisecrime game.   Before anyone posts proof, proof, proof etc.... yes i can show screen shots of DB table with info and SS's of his spamming. Just making you aware he is spamming around a lot. Maybe add wisecrime into your filters nice and early :)
  7. Something like this will do the job for you- Call it apply.php <?php include 'header.php'; if ($user_class->gang != 0) <!-- check member is unganged --> { echo Message("Your in another gang already..leave current gang to apply here..."); <!-- Change text to suit needs --> include 'footer.php'; die(); } if (isset($_GET['gang']) && $user_class->gang == 0) <!-- if member is unganged proceed --> { $_GET['gang'] = (int)$_GET['gang']; $targetgang = new Gang($_GET['gang']); $gangleader = Get_ID($targetgang->leader); $result = Send_Event("".$gangleader."", "Someone applied to your gang etc etc etc "); <!-- Change text to suit needs --> echo Message("Your application has been sent "); <!-- Change text to suit needs --> $when = time(); $result = mysql_query("INSERT INTO `gangapplications` (`userid`, `gangid`, `when`) VALUES ('".$user_class->id."', '".$_GET['gang']."', '".$when."')"); <!-- Create table in DB using info from this line ..very simple --> } else { echo Message("Apply via the gang page blah blah......");<!-- Change text to suit needs --> include 'footer.php'; die(); } ?>   then add this to your viewgang.php to give a link to apply <a href="apply.php?gang=<? echo "".$_GET['id'].""; ?> Apply to gang</a>   very simple and basic but will do the job
  8. http://hitmanmafia.com/updates1.php = Error 404: Page Not Found The Page /updates1.php was not found on the server. <---- file doesnt exist on your server ---------------------------------------------------------------------------------------------------------------------- http://hitmanmafia.com/Day_Cron123CrOnNAhhsjFddgtS84nI.php = Parse error: syntax error, unexpected T_STRING in /home/hitmanma/public_html/Day_Cron123CrOnNAhhsjFddgtS84nI.php on line 77 ---------------------------------------------------------------------------------------------------------------------- http://hitmanmafia.com/Hour_cRON_CHhourlycrontorunW88N.php = Warning: Division by zero in /home/hitmanma/public_html/classes.php on line 494   This is why none of your crons are working :)
  9. $checkmail = mysql_query("SELECT * FROM `pms` WHERE `to`='$user_class->id' and `viewed`='1' AND `delete`='0'"); $nummsgs = mysql_num_rows($checkmail); if($nummsgs > 0) { $mail = "[<font color='#cc0000'>".$nummsgs."</font>]"; } else {$mail = "[".$nummsgs."]"; }   ^ just find this near top of header.php And change $mail = "[<font color='#cc0000'>".$nummsgs."</font>] to include colour,bold, etc
  10. acer240

    Ajax chat

    wondered if anyone else had this i have just installed ajax chat on a grpg script and all working fine but.. i cannot get it to take usernames and pass's from existing games users database so users can only log in as guest (working but not ideal) anyone got a clue how i can sort it thanks.
  11. acer240

    hack

    hack 30 views , 400 users online lol is no-one able to show the best way to secure the script below ? Any Help would be very much appreciated chaps ? and could someone pm me the actual hack they do in the market for future reference and hack solving please ?   <?php include 'header.php'; if (!empty($_POST['buypoints'])){ $_POST['amount'] = abs((int) $_POST['amount']); $_POST['points_id'] = abs((int) $_POST['points_id']); $result = mysql_query("SELECT * FROM `pointsmarket` WHERE `id`='".$_POST['points_id']."'"); $worked = mysql_fetch_array($result); $price = $worked['price']; $amount = $worked['amount']; $totalcost = $price * $_POST['amount']; $newpointsinmarket = $amount - $_POST['amount']; $user_points = new User($worked['owner']); if ($worked['owner'] == $user_class->id) { if($_POST['amount'] > $amount){ echo Message("You do not have that many Points."); include 'footer.php'; die(); } else { if($_POST['amount'] < 0){ echo Message("<font size=2>GTFO!"); include 'footer.php'; die(); } else { $_POST['amount'] = abs((int)$_POST['amount']); echo Message("You have taken ".$_POST['amount']." points off the market."); $newpoints = $user_class->points + $_POST['amount'];; $result = mysql_query("UPDATE `grpgusers` SET `points` = '".$newpoints."' WHERE `id`='".$user_class->id."'"); $user_class = new User($_SESSION['id']); if ($newpointsinmarket == 0){ $result = mysql_query("DELETE FROM `pointsmarket` WHERE `id`='".$worked['id']."'"); } else { $result = mysql_query("UPDATE `pointsmarket` SET `amount` = '".$newpointsinmarket."' WHERE `id`='".$worked['id']."'"); } include 'footer.php'; die(); } }} else { if($_POST['amount'] > $amount){ echo Message("<font size=2>They are not selling that many points."); } elseif($_POST['amount'] < 1){ echo Message("<font size=2>Please enter a valid amount of points to buy."); } elseif ($totalcost > $user_class->money){ echo Message("<font size=2>You don't have enough money."); } else { echo Message("<font size=2>You have bought ".$_POST['amount']." points for $".prettynum($totalcost)); Send_Event($user_points->id, $user_class->username." bought ".$_POST['amount']." points for $".prettynum($totalcost)); $newpoints = $user_class->points + $_POST['amount']; $newmoney = $user_class->money - $totalcost; $result = mysql_query("UPDATE `grpgusers` SET `money` = '".$newmoney."', `points` = '".$newpoints."' WHERE `id`='".$user_class->id."'"); $newmoney = $user_points->money + $totalcost; $result = mysql_query("UPDATE `grpgusers` SET `money` = '".$newmoney."' WHERE `id`='".$user_points->id."'"); $user_class = new User($_SESSION['id']); if ($newpointsinmarket == 0){ $result = mysql_query("DELETE FROM `pointsmarket` WHERE `id`='".$worked['id']."'"); } else { $result = mysql_query("UPDATE `pointsmarket` SET `amount` = '".$newpointsinmarket."' WHERE `id`='".$worked['id']."'"); } } }} if ($_POST['addpoints']){ if($_POST['price'] > 40000){ echo Message("<font size=2>You cant add points into the market for more than $40,000 each."); include 'footer.php'; die(); } $_POST['amount'] = abs((int) $_POST['amount']); if($_POST['amount'] > $user_class->points){ echo Message("<font size=2>You don't have that many points."); } if($_POST['amount'] < 1){ echo Message("<font size=2>Please enter a valid amount of points."); } if($_POST['price'] < 1){ echo Message("<font size=2>Please enter a valid amount of money."); } if($_POST['amount'] >= 1 && $_POST['amount'] <= $user_class->points && $_POST['price'] >= 1){ echo Message("<font size=2>You have added ".$_POST['amount']." points to the market a price of $".$_POST['price']." per point."); $result= mysql_query("INSERT INTO `pointsmarket` (owner, amount, price)"."VALUES ('$user_class->id', '$_POST[amount]', '$_POST[price]')"); $newpoints = $user_class->points - $_POST['amount']; $result = mysql_query("UPDATE `grpgusers` SET `points` = '".$newpoints."' WHERE `id`='".$user_class->id."'"); $user_class = new User($_SESSION['id']); } } ?> <tr><td class="contenthead">Point Market</td></tr> <tr><td class="contentcontent"><font size=2> Use this form to add points to the points market. <form method='post'> <table align="center"> <tr> <td><font size=2>Amount of points</td><td><input type='hidden' value="1" name="buypoints"><input type='text' name='amount' size='10' maxlength='20' value='<? echo $user_class->points ?>'></td> </tr> <tr> <td>Price per point</td><td>$<input type='text' name='price' size='10' maxlength='20'></td> <tr><td align="center" colspan="2"><input type='submit' name='addpoints' value='Add Points'></form></td> </tr></table> </td></tr> <tr><td class="contentcontent"> <table width=100%><tr><td class="contenthead"><center><font size=2>Seller</center></td><td class="contenthead"><center><font size=2>Amount</center></td><td class="contenthead"><center><font size=2>Price</center></td><td class="contenthead"><center><font size=2>Buy</center></td></tr> </td></tr> <tr> <?php $result = mysql_query("SELECT * FROM `pointsmarket` ORDER BY `price` DESC"); while($line = mysql_fetch_array($result, MYSQL_ASSOC)) { $user_points = new User($line['owner']); if ($user_points->id == $user_class->id){ $submittext = "Remove Points"; } else { $submittext = "Buy"; } echo "<form method='post'>"; echo "<tr><td align=center><font size=2>".$user_points->formattedname."</td><td align=center><font size=2>".prettynum($line['amount'])."</td><td align=center><font size=2>".prettynum($line['price'])."</td><td align=center> <input type='text' name='amount' size='3' maxlength='20' value='".$line['amount']."'><input type='hidden' name='buypoints' value='buy'><input type='hidden' name='points_id' value='".$line['id']."'><input type='submit' name='bypoints' value='".$submittext."'></form></td></tr>"; } ?> </td></tr> <?php include 'footer.php'; ?>
  12. acer240

    hack

    what is the solution to the point hack ? new player joining and within 30 secs having 1000's of points any ideas anyone ?
  13. search what i meant was the search i have there will award money and points in one search lol you have found $4,444 and 23 points for example :)
  14. point search Why not just include in usual search ? below will give you same result but all in one search   <?php include 'header.php'; echo '<tr><td class="contenthead">Search Downtown</td></tr>'; echo '<tr><td class="contentcontent">'; if ($user_class->searchdowntown != 0) { for ($i=1; $i<=100; $i++) { echo $i.".) "; $ra = rand(0,100); if ($ra < 10){ echo "You didn't find anything."; } elseif ($ra > 9 && $ra < 16) { $rap = rand(1,8); $totalp += $rap; echo "<font color=red>You found ".$rap." points</font>"; } else { $randnum = (rand(0,20) * $user_class->level); echo "You found $".prettynum($randnum)."!"; $totalm += $randnum; } echo " "; } echo " <font size=5> You found a total of $".prettynum($totalm)." and <font color=red> ".prettynum($totalp)." </font> points searching downtown!</font>"; $newmoney = $user_class->money + $totalm; $newpoint = $user_class->points + $totalp; $result = mysql_query("UPDATE `grpgusers` SET `money` = '".$newmoney."', `points` = '".$newpoint."', `searchdowntown` = '0' WHERE `id`='".$user_class->id."'"); } else { echo "You have already searched down town as much as you can today."; } echo '</td></tr>'; include 'footer.php'; ?>
  15. you will find with this script also that if players have low HP when attacking(as many do ) the result will simple say FIght club xxx attacked xxx no fight,no damage,no winner etc. kinda clogs up logs and causes many users mailing with wtf ? etc lol   to remedy this we put a No attack or be attacked if either player had under 50 % HP and all solved add these to attack.php if you want to achieve the same effect.   $error = ($user_class->hppercent < 51) ? "<font size=2>You must have at least 50% health to attack!" : $error; $error = ($attack_person->hppercent < 51) ? "<font size=2>Your target is below 50% Health and cannot be attacked!" : $error;
  16. acer240

    Meta tags

    html how would i disable all html in site ?
  17. acer240

    Meta tags

    How can i stop users being able to use <meta> tags in forums ,quotes etc ? is there a simple line i can add to the pages to disable it ? many thanks
  18. anyone know the easiest way to add a custom right click on usernames ? basically so if someone rightclicks their name it can show custom pop up menu with attack,mug,profile etc ?
  19. table that doesnt do it though that simply puts it all inside one table i want 3 columns so desitantio,level and cost are separated thanks though :)
  20. lol can no one help lol ?
  21. Old dead thread
  22. no longer needed
  23. hi i have recently upped a raven script mafia based script and was wondering if anyone can help with this error Battle Tent Welcome to the battle tent! Here you can challenge NPCs for money. QUERY ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line   ^^ any help would be great thanks
×
×
  • Create New...