Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: v3 game engine Decepti0n, well if he uses sprintf() im sure it will be secure!
  2. Re: Gang surrender accept, SQL error. Well the way i did it works for my game.
  3. Re: Gang surrender accept, SQL error. You replaced the wrong code! my function is:   function gang_staff_viewsurrenders()   Your replacing or trying to fix:   function gang_staff_surrender()
  4. Re: Gang surrender accept, SQL error. mine works
  5. Re: Gang surrender accept, SQL error. Best replace your surrender view function with my one :)
  6. Re: Last thing before i host my game You should add ?code=XXXXX at the end of it.... Example: http://www.no-game.com/cron_minute.php?code=XXXXX
  7. Re: View Donators [V2] I never said you must remove it, i was just saying that except it's my script. Could atleast put [Edit] View Donators [V2] like the other one.
  8. Re: View Donators [V2] Ok ill prove you wrong that this is my script and that you edited it. http://criminalexistence.com/ceforums/i ... pic=3309.0   <?php /*----------------------------------------------------- kyles donator users -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['credits'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); print "<center> [b]<font color=red><h1>Donators</h1>[/b] <table width=75% border=1> <tr style='background:black'><th>User</th> <th>Level</th> <th>Money</th> <th>Donator days Left</th> <th><font color=white>Status</th> </tr>"; $q=mysql_query("SELECT * FROM users WHERE donatordays ORDER BY userid ASC", $c); while($r=mysql_fetch_array($q)) { if($r['laston'] >= time()-60*60) { $on="<font color=white>[b]Online[/b]</font>"; } else { $on="<font color=black>[b]Offline[/b]</font>"; } print "<tr> <td>[url='viewuser.php?u={$r[']<font color=red>[b]{$r['username']}[/b]</font>[/url] [{$r['userid']}]</td><td>{$r['level']}</td> <td>\${$r['money']}</td> <td>{$r['donatordays']}</td> <td>$on</td> </tr>"; } print "</table>"; $h->endpage(); ?>   Thats v1 version now for v2:   <?php /*----------------------------------------------------- kyles donator users -----------------------------------------------------*/ session_start(); include "globals.php"; print "<center> [b]<font color=red><h1>Donators</h1>[/b] <table width=75% border=1> <tr style='background:black'><th>User</th> <th>Level</th> <th>Money</th> <th>Donator days Left</th> <th><font color=white>Status</th> </tr>"; $q=mysql_query("SELECT * FROM users WHERE donatordays ORDER BY userid ASC",$c); while($r=mysql_fetch_array($q)) { if($r['laston'] >= time()-60*60) { $on="<font color=white>[b]Online[/b]</font>"; } else { $on="<font color=black>[b]Offline[/b]</font>"; } print "<tr> <td>[url='viewuser.php?u={$r[']<font color=red>[b]{$r['username']}[/b]</font>[/url] [{$r['userid']}]</td><td>{$r['level']}</td> <td>\${$r['money']}</td> <td>{$r['donatordays']}</td> <td>$on</td> </tr>"; } print "</table>"; $h->endpage(); ?>
  9. Re: Macro Page Edit [V2] Actualy zero the one you have is free. It was mainly made for v1.
  10. Re: [FREE] [V2] 2 Game Styles/Themes I paid him to make me a unique theme :)
  11. Re: View Donators [V2] Like i said you edited my script, i dont mind it bieng there. It was free any way.
  12. Re: View Donators [V2] Yes it is my script. I can tell for a fact. Yes it is easy to make.
  13. Re: Gang Prices I never gave mine out i kept it for my self so sure you can keep it here.
  14. Re: Macro Page Edit [V2] My script use's one number
  15. Re: View Donators [V2] Except it's my script. He added onto it.
  16. Re: Gang Prices Already made this. :)
  17. Re: [FREE] [V2] 2 Game Styles/Themes I would'nt be using these. Since it's free, its going to be all over the v2 game's.
  18. Re: Game Ranks The only reason why it never worked on header is because he is not including / requiring global_func.php in header.php
  19. Re: Secure all pages using globals or header Nice, but can everyone use id 1's account?
  20. Re: v3 game engine OH COME ON! you all are backing down mccode's when majority of you are using it. If mccode's is so bad why not create your own engine and use it on your game? Sure mccode's was coded purely but most of it was coded by dab's since CB came into action i saw his coding, it not like the other coding on v1 & v2. He atleast use's sprintf(); and echo ''; not print "";.
  21. Re: Secure all pages using globals or header Any previews?
  22. Re: Secure all pages using globals or header Login is not exploitable, It's mainly made of html. It could be authenticate.php that you might want to secure the input's. Register could also be exploitable.
  23. Re: Need Help yh sorry typo error.
  24. Re: Gang surrender accept, SQL error. Well mine works now.
  25. Re: [Any] Quick Chat With Owner This wont work for some user's. Hence the probability some one use irc:// starting in the url. Since you posted this why not post the addon's you have attached to your browser.
×
×
  • Create New...