Jump to content
MakeWebGames

Strats

Members
  • Posts

    649
  • Joined

  • Last visited

    Never

Everything posted by Strats

  1. Installer.php is the most easiest way to mess up a game. It does not ask for passwords and it is not a hack.
  2. I have had some troubles with my game and it is currently offline. I am looking for someone who can check over my files and secure them. I would also like the email verification checked to see if it's working as it should be and also would like the register page to only allow one person to sign up from that IP. And I would like to make sure my inventory is secure. These are the things I think I am having trouble with the most. I do not have money right now but, If someone does this for free Now then after Christmas I am happy to pay for their services aslong as It is done well. If anyone can help me please let me know on here or email me at [email protected] Thank you
  3. He got me too with something in inventory. I am glad he didn't do too much just gave himself some more donator days
  4. I have seen on a few games the users can donate for packs ect and then you can donate for supporter days getting cheaper travel and maybe something like getting 2 rubies instead of one a day. How would I do something like this? Would I just have to edit a donator page?
  5. Can you Pm about this staff keys idea please hun
  6. Immortalthug - You joined my game the other day and used the session hack on it. You only sent out donator packs to the members but it's enough to piss me off. If you ever plan on being a coder or a real game owner I suggest you don't abuse bugs in games. If you know of one you should tell the game owner. Earn some respect. If your not careful the same will happen to you it's called Karma. 8)
  7. Thanks for hacking my game you piece of shit
  8. I want to use this but I get this error : Parse error: syntax error, unexpected $end in C:\xampp\htdocs\Game\shops.php on line 62 I looked through everything seems fine. Can someone tell me what I am missing I know it's something small lol
  9. This has been done for like $5
  10. I have a new header and cannot get this to work with it now. Can someone message if they can help me please. Is there meant to be a cron for this?
  11. I like this idea. I have added it to my test game to see the errors are. I get this message after crediting user : Warning: mysql_query() expects at most 2 parameters, 4 given in xampp\htdocs\Test\staff_users.php on line 356 Here's the part giving the error : $do = mysql_query("UPDATE users SET money = money + '%u', crystals = crystals + '%u' WHERE userid = '%u' ", ($_POST['money']), ($_POST['crystals']), ($_POST['user'])); I think the error is in the Update Users bit it does not seem right. Can someone explain what this means, I have not seen this message before.
  12. You could of just added forums for those things
  13. I think it was some called Lacy that made a mod like this for about $5 It did not fit anyone's game in particular. I think your price is pretty stupid. No offence I have Lacys version I could just edit myself to make it fit my game.
  14. Thats fine, I just didn't want them always to get 25% just up to it. Made random so sometimes they get 2% and other 25%
  15. Problem is that no one likes it now lol
  16. I took me 3 tries. I am sorry but I do not like the way the new forums are set up. The forums are messy and your loosing your supporters and friends. Best move is to take what you had before and work with that. The design is fine but the forums are bad.
  17. Yea you could use a sql, but it's alot easier to have in game logs for other staff to be able to watch over
  18. I have looked about and only found a few logs and most I have or are in V1. I was wondering if anyone has made any of these. Or If someone could do these I don't mind paying a little. I just want to keep an eye on the money and crystal they are in my game. Logs for Item brought Id and name of player who brought item Id and name of player who sold item Item price Date Multi Check Items Added Id and name of player who added item Item price Date Crystal Market Logs Crystals Added To Market Id and name of player who added crystals Crystal price Quantity of crystals added Date Crystals Sold Id and name of player who brought crystals Id and name of player who sold crystals Crystal price Date Multi Check
  19. New forum is looking good just very hard to find things at the moment. I do suggest having the basic free mod section and paid mods the same as before
  20. Re: Limit Exp For Levels It's the same. For a level 1 to hit a level 28 Allways gets 25% exp
  21. Re: Limit Exp For Levels This kind of works. But it's not a random amount of exp it's the highest amount of exp that they get. so level 1 always gets 25 % exp
  22. Re: [Mccodes V2] [bIG MOD] Trading Card Game [$15]   Thanks =) It's ok, I have not yet put this on my game only my temp one and I'm having fun just making the cards lol
  23. Re: [Mccodes V2] [bIG MOD] Trading Card Game [$15] This is defo my fav mod so far
  24. Re: Limit Exp For Levels I see can you tell me what line I should put that under then I can work from there Attack Leave :   <?php $atkpage=1; include "globals.php"; $_GET['ID']=abs(@intval($_GET['ID'])); $_SESSION['attacking']=0; $ir['attacking']=0; $db->query("UPDATE users SET attacking=0 WHERE userid=$userid"); $od=$db->query("SELECT * FROM users WHERE userid={$_GET['ID']}"); if($_SESSION['attackwon'] != $_GET['ID']) { die ("Cheaters don't get anywhere."); } if($db->num_rows($od)) { $r=$db->fetch_row($od); $gq=$db->query("SELECT * FROM gangs WHERE gangID={$r['gang']}"); $ga=$db->fetch_row($gq); if($r['hp'] == 1) { print "What a cheater u are."; } else { print "You beat {$r['username']} "; $qe=$r['level']*$r['level']*$r['level']; $expgain=rand($qe/2,$qe); $expperc=(int) ($expgain/$ir['exp_needed']*100); print "and gained $expperc% EXP! You hide your weapons and drop {$r['username']} off outside the hospital entrance. Feeling satisfied, you walk home."; $hosptime=rand(10,20); $db->query("UPDATE users SET exp=exp+$expgain WHERE userid=$userid"); $db->query("UPDATE users SET hp=1,hospital=$hosptime,hospreason='Left by <a href=\'viewuser.php?u={$userid}\'>{$ir['username']}</a>' WHERE userid={$r['userid']}"); event_add($r['userid'],"[url='viewuser.php?u=$userid']{$ir['username']}[/url] attacked you and left you lying outside the hospital.",$c,'combat'); $atklog=mysql_escape_string($_SESSION['attacklog']); $db->query("INSERT INTO attacklogs VALUES('',$userid,{$_GET['ID']},'won',unix_timestamp(),-2,'$atklog');"); $_SESSION['attackwon']=0; $warq=$db->query("SELECT * FROM gangwars WHERE (warDECLARER={$ir['gang']} AND warDECLARED={$r['gang']}) OR (warDECLARED={$ir['gang']} AND warDECLARER={$r['gang']})"); if ($db->num_rows($warq) > 0) { $war=$db->fetch_row($warq); $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT-1 WHERE gangID={$r['gang']}"); $ga['gangRESPECT']-=1; $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+1 WHERE gangID={$ir['gang']}"); print " You earnt 1 respect for your gang!"; } //Gang Kill if ($ga['gangRESPECT']<=0 && $r['gang']) { $db->query("UPDATE users SET gang=0 WHERE gang={$r['gang']}"); $db->query("DELETE FROM gangs WHERE gangRESPECT<='0'"); $db->query("DELETE FROM gangwars WHERE warDECLARER={$ga['gangID']} or warDECLARED={$ga['gangID']}"); } $npcs=array( ); if($r['user_level']==0) { $q=$db->query("SELECT * FROM challengebots WHERE cb_npcid={$r['userid']}"); if ($db->num_rows($q)) { $cb=$db->fetch_row($q); $qk=$db->query("SELECT * FROM challengesbeaten WHERE userid=$userid AND npcid={$r['userid']}"); if(!$db->num_rows($qk)) { $m=$cb['cb_money']; $db->query("UPDATE users SET money=money+$m WHERE userid=$userid"); print " You gained \$$m for beating the challenge bot {$r['username']}"; $db->query("INSERT INTO challengesbeaten VALUES($userid, {$r['userid']})"); } } } } } else { print "You beat Mr. non-existant!"; } $h->endpage(); ?>
×
×
  • Create New...