Jump to content
MakeWebGames

jay-dogg2006

Members
  • Posts

    80
  • Joined

  • Last visited

    Never

Everything posted by jay-dogg2006

  1. Re: Advanced Burn House [$15] This is an awsome mod i would suggest this to anyone! but remember only selected copys avalable! i have this on my game it works fully! not bugs either from what i can see! i would rate this mod out of 10! well done mate good work keep the mods coming!
  2. Re: Frustrated with Gang Banner Add v1 just replace with this! should sort it! : <?php /*----------------------------------------------------- -- Mono Country v1.0 BETA -- A product of DBS-entertainment -- Copyright held 2005 by Dabomstew -- INDEX.php -----------------------------------------------------*/ 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 "mysql1.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['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea();
  3. Re: Free 2 - Roulette when you bet on the five diffrent bets i will only take money for the one bet not the other 4 and will only payout for one bet is this right?
  4. Re: [$20] Hide & Seek i did pm you the other day!
  5. Re: [$20] Hide & Seek im looking forward to this mod look very good! i know my users will love it! payment sent just wating for iso now XD
  6. Re: Secure Your Crons. true true
  7. Re: Secure Your Crons. well you can secure your V1 crons with code like V2 killah helped with this! Open up the cron: Find: <?php Add This before the <?php <?php $key = "Enter a key here"; if($_GET['key'] != $key) { die("Hack Attempt"); } ?>   the change the "enter a key here" to and keycode you would like i would suggest generating a password with consits of letter and numbers as its less likely to get discoverd then go to cron manager and add after the .php curl http://gamename.com/crons/are/not/4u/cr ... key=youkey change the your key to the ley you set in the cron and there you are a little security for you! please do not repl with negative comments
  8. Re: Lock mysql.php/config.php from outsiders. this works fine for me good job killah
  9. Re: [$25] Treasure Map! i would like to buy to ive pm'ed you all ready :)
  10. Re: [$25] Treasure Map! the prize being game moneyright??
  11. Re: Upload Image & Display $10 i brought this mod not so long ago and realied it not secure as they can still upload shells! but i hva emanaged to secure this even more i even offerd to send the part that needed to be secured! as its only a little fixs that is needed ! as the users can just do this example: sh3ll.php%%00.jpeg with this they can upload a shell under a jpeg or gif and simple bugger up you site! all by doing : http://domain.com/picprofile/sh3ll.php%%00.jpeg   so i have manged to simply stop this from happening and also fixed for people using Vista as i orrigenly could not upload simply jpeg. so if you would like the little fix jst simply pm me and ill give you the fix :)
  12. Re: Court Mod V1 well im juts glad theres people out there that are willing to put other people codes right :)
  13. Re: Court Mod V1 when can u send me the update lol i did message you lol
  14. Re: Favicons Set Up no problem jsut solving puzzles lol
  15. Re: Favicons Set Up thats i basicly where i got some of my info from ! but mostly reserach else where!
  16. Re: Favicons Set Up thanks m8 at least some one apprecaited this!
  17. Re: Favicons Set Up im only trying to help people here ! y is there such negative feed back!
  18. Re: Favicons Set Up one thing i have to mention is that the file can becalled wotever.ico as long as it an .ico file name then you shouldnt have a problem!
  19. Re: Favicons Set Up well it make your site stand out and when they bookmark you the icon stands out from the rest!
  20. What is a favicon? Favicons are the little icons that show next to bookmarks and in the address bar of most browsers. Favicons are 16 pixels square. Upload a 16 x 16 pixel PNG . This favicon maker supports alpha transparency. Once you create your favicon.ico file, upload it to the root directory of your website and put the following code in your header.php making sure that the link is below the tag Here is an example of a favicon: there are .ico image makers out there to help you just google : favicon.ico +1 rep if ya use it :)
  21. Re: [TGM] Joinable Organised Crimes [TGM] im having a few problems with your OC mod! when the faction staff member goes and sets up a mod it will not insert the data in to the database!
  22. The first step is to place the following code at the very top of your php file to start the timer, so we can display the load time.   <?php // Insert at the very top of your page $time = microtime(); $time = explode(" ", $time); $time = $time[1] + $time[0]; $start = $time; ?>   Then at the very bottom of your page you need to add this code to stop the timer and then display the total time.   <?php // Place at the very bottom of your page $time = microtime(); $time = explode(" ", $time); $time = $time[1] + $time[0]; $finish = $time; $totaltime = ($finish - $start); printf ("Page took %f seconds to load.", $totaltime); // The above line can be changed but remember to keep %f ?>   The script currently outputs Page took 0.15235 seconds to load. But you can change the text to anything you like by changing the text in the quotes, the time is output where the %f is placed.   printf ("Page took %f seconds to load.", $totaltime);
  23. Re: HELLLLLLLLLLLLLLLLLLLLLPPPPPPPPPPP!!!!!!!!!!!!!!!!!!!!!!!!!!!!11 LO HAVE YOU TRIED READING THE TUTORIALS!??!?
  24. Re: Adding items to crimes. share and share a like my friend :) lol
  25. Re: Joinable Organised Crimes yeah thats a ghreat version is this one like it ?? as thats wot i sorta asked for when i asked for it in the mods requset section :)
×
×
  • Create New...