Jump to content
MakeWebGames

canibalstew

Members
  • Posts

    131
  • Joined

  • Last visited

Everything posted by canibalstew

  1. i made this while ce was down so i decided to release it free to all here is the zip for the tournaments mod here are some of the features except sql addition to db and a few edits your good to go please give me some thanx for this if you decide to like it!!! as i am still learning... multiple currencies 3 or more different currencies tournament pics up to 3 or more simultaneous tournaments admin panel to create them and edit them.. also can use this tournaments system for almost any kind of tournaments!!!! car races fights gang wars even pet fights virtually anything.... download tournaments below Tornaments Mod 2.0.rar   **UPDATE** there is a missing function in torny staff.php...you can either add this function to your sglobals.php file or the tornystaff.php file or re download new package   function torny_dropdownall($connection,$ddname="tornyall",$selected=-1) { global $db,$ir,$c,$h,$userid; $re=array(1,2,3); $ret="<select name='$ddname' type='dropdown'>"; $q=$db->query("SELECT * FROM torny ORDER BY ttorny ASC"); if($selected == -1) { $first=0; } else { $first=1; } while($r=$db->fetch_array($q)) { $ret.="\n<option value='{$r['tid']}'"; if ($selected == $r['tid'] || $first == 0) { $ret.=" selected='selected'";$first=1; } $ret.= ">{$r['ttorny']}</option>"; } $ret.="\n</select>"; return $ret; }   function torny_dropdown($connection,$ddname="tor",$selected=-1) { global $db,$ir,$c,$h,$userid; $ret="<select name='$ddname' type='dropdown'>"; $q=$db->query("SELECT * FROM torny WHERE tactive='1' AND tcountry='{$ir['country']}' AND torny='1' ORDER BY ttorny ASC"); if($selected == -1) { $first=0; } else { $first=1; } while($r=$db->fetch_array($q)) { $ret.="\n<option value='{$r['tid']}'"; if ($selected == $r['tid'] || $first == 0) { $ret.=" selected='selected'";$first=1; } $ret.= ">{$r['ttorny']}</option>"; } $ret.="\n</select>"; return $ret; }   function torny_dropdown2($connection,$ddname="tor",$selected=-1) { global $db,$ir,$c,$h,$userid; $ret="<select name='$ddname' type='dropdown'>"; $q=$db->query("SELECT * FROM torny WHERE tactive='1' AND tcountry='{$ir['country']}' AND torny='2' ORDER BY ttorny ASC"); if($selected == -1) { $first=0; } else { $first=1; } while($r=$db->fetch_array($q)) { $ret.="\n<option value='{$r['tid']}'"; if ($selected == $r['tid'] || $first == 0) { $ret.=" selected='selected'";$first=1; } $ret.= ">{$r['ttorny']}</option>"; } $ret.="\n</select>"; return $ret; }   function torny_dropdown3($connection,$ddname="tor",$selected=-1) { global $db,$ir,$c,$h,$userid; $ret="<select name='$ddname' type='dropdown'>"; $q=$db->query("SELECT * FROM torny WHERE tactive='1' AND tcountry='{$ir['country']}' AND torny='3' ORDER BY ttorny ASC"); if($selected == -1) { $first=0; } else { $first=1; } while($r=$db->fetch_array($q)) { $ret.="\n<option value='{$r['tid']}'"; if ($selected == $r['tid'] || $first == 0) { $ret.=" selected='selected'";$first=1; } $ret.= ">{$r['ttorny']}</option>"; } $ret.="\n</select>"; return $ret; }
  2. I have tried everything and nothing is fixing this can anyone help   update i fixed this problem!!! but i wanna get some one to help put in a decline surrender
  3. Re: [site Tools] Site Radio ahhhhh thanx for that
  4. Re: What country would you live in... well only country i have been in is usa but i would love to see atleast most of the other countries and just take in their ways of thinking and doing things if nice to see how differently we are but most of all i want to go to ansterdam i know my spelling is off but there are beautiful places everywhere you go too hard to choose one so many great places so little life spent living!!!! i would like to live in a nice nutral mid weathered place with nice people here in usa people would rather cut you than be nice and a friend not everywhere in us is like this but mostly it is!!! ok make fun of me now im used to it...lol
  5. Re: MD5 password encode no its a security number but you cant change the pass of the user if that your email and your user name is all correct then you can change and you can only set your pin once once it is set thatshas worked good so far but i plan on posing it soon maybe some one will give more options to have more security
  6. Re: MD5 password encode i made one to reset their pass and have a verifacation pin also adding sending out email now maybe ill post it for free sometime on here
  7. Re: MENU MAKING HELP!!! yeah thats what i am looking for is programs where i can do it   any suggestions on what programs the best
  8. i need someone that can build good menus for my game i want a good visual awsome menu
  9. Re: HELP [gym] well mine is a low gain umm i use this   $gain+=rand(1,3)/rand(800,1000)*rand(800,1000)*(($ir['will']+20)/450);   hope this helps
  10. Re: [Free v1 & v2] Advanced Gang Logs wasnt me i dont give points or take them but thanx for the fix i appreciate it //update// also it works now the $db thing worked thanx alot both of you
  11. Re: [site Tools] Site Radio ok i like this code but is ur radio down if so how do i get it running
  12. Re: [Free v1 & v2] Advanced Gang Logs     i get same error any clue anyone
  13. Re: [Free v1] Advanced Warning System and if you want the table that will show why they were warned and such use this also both of these will work good good one silver too fast for me...lol Just put this in your loggedin.php page   $q=mysql_query("SELECT w.*,u.* FROM warnings w LEFT JOIN users u ON w.warner=u.userid WHERE w.user={$ir['userid']} ORDER BY w.time DESC",$c); print "<center><font color=red><h4>Total Warnings: ".mysql_num_rows($q)." </h4> <table width=40% border=1 align=center><tr><tr style='table'><td>Warned By:</td><td width=20%>Reason</td><td>Date</td><td>Links</td></tr>"; while($r=mysql_fetch_array($q)) { $warned=date('F j, Y, g:i:s a',$r['time']); print "<tr><td><a href=viewuser.php?u={$r['userid']}>{$r['username']}</a></td><td>{$r['warnedfor']}</td><td>$warned</td><td>"; print "</td></tr>"; }
  14. Re: [Free v1] Advanced Warning System well i am sure you could make a table and have it entered as the warnings i am sure there is a user id table there and that should show users warnings i would think maybe not still learning
  15. Re: arcade mod v1     where would you put this at in the virus page or the acage page
  16. Re: Shafted by LunarPages hey md whats a good host
  17. Re: Shafted by LunarPages oh ok thanx md i was trying to help!! :-D
  18. Re: Shafted by LunarPages actually i tried to get it to show and i am very sick and wasnt wanting to messwith it any more also y are you always downing people man you got issues or something need to compensate for something not right man
  19. Re: Shafted by LunarPages here is what i use dont have too much issues with them always on top of things and good support so far   http://www.bluehost.com/track/william1981/text1 CLICK HERE TO SIGNUP FOR BLUEHOST.COM NOW.
  20. Re: java games for jailed people help thank you so much going to add that
  21. how do i put some java games on my game for the jailed people i just want directed ot a tutorial of this or some suggestions i really want to do well try to do the code my self!!!!
  22. Re: A question to sort out all the arguments over coding copyright..... me my self i think if you edit the code you should only be able to use it not sell it its not right for the ones who made the code in the first place now i think if you told the original coder that you made a modifacation to his code and ask him to sell it as an updater version and you guys split the cost or something because these coders take a lot of time to make these and they do it not only to make money but for every one to enjoy!!!!
  23. make a file jailbribe.php     now if you got ver 1.1 you replace the include"globals.php"; with   last thing is to put a link in your jail your done if thers anything wrong with it im sure you all will say
  24. Re: Free Loan Shark System me also please
  25. Re: New 2.0 code help if your making a code and need help ask!!!!!! wow thanx alot
×
×
  • Create New...