Jump to content
MakeWebGames

iR00T

Members
  • Posts

    375
  • Joined

  • Last visited

    Never

Everything posted by iR00T

  1. Re: Login [Free] Skiddies.... Well sorry to inform you but that might be the last time you see his stuff...... cuase i already seen someoen use it illegal they put by **** tem so yeah so yeah zero someoen elese has tooken credit all i did when i edited tha login i put By Zero insted of all that other long mess so yeah i also add All Rights Reserveerd so yeah i havent stolen
  2. Re: House Rentals [V2] I can convert v2 - v1 good it's just sometimes about 5% of the time v1 - v2 get's me i've come acrross great v1 mods that i coulden't convert and i was sad - xD - but infact imma try to convert some now to v2 ..... Hope it works..........
  3. Re: Updated Explore V.2 Wow...i would like to see it he'll i know i'll use it he makes some good stuff - xD
  4. Re: Crimes (Players Can Go To Hospital) [V2] You must be talkin about crimes that somne send you to jail and some send you to hospital like say rob a bank and u get shot hosp instead of jail ahhhhhhhhhh i seeeeee........i wanted this to but ehhh it would be some editing im shure.... :? :? :? :-) :-D
  5. Re: Stats [urgent] yeah its value and umm well i was tryin to see i was doing a stat cap and yeah so i didnt do it and just dropped my usersstats table and restarted it so its ok but i ALTER TABLE `userstats` CHANGE `strength` `strength` BIGINT( 45 ) NOT NULL DEFAULT '10.0000'; ALTER TABLE `userstats` CHANGE `agility` `agility` BIGINT( 45 ) NOT NULL DEFAULT '10.0000'; ALTER TABLE `userstats` CHANGE `labour` `labour` BIGINT( 45 ) NOT NULL DEFAULT '10.0000'; ALTER TABLE `userstats` CHANGE `guard` `guard` BIGINT( 45 ) NOT NULL DEFAULT '10.0000'; ALTER TABLE `userstats` CHANGE `iq` `iq` BIGINT( 45 ) NOT NULL DEFAULT '10.000000'; ...So yeah....i just forget it
  6. Stats Info: 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 'AND us.userid != 1 AND u.user_level != 0' at line 1 Query was SELECT count(*) FROM userstats us LEFT JOIN users u ON us.userid=u.userid WHERE us.IQ > AND us.userid != 1 AND u.user_level != 0   i changed my stats to big int and yueah i got that does anyon know how to fix that
  7. Re: Simple Job Specials [V2] Thanks alot it worked.
  8. Re: Simple Job Specials [V2] i get this when i ry to edit a job or job speical or even make one Fatal error: Cannot redeclare jobrankdele() (previously declared in /home/******/public_html/staff_jobs.php:162) in /home/liam/public_html/staff_jobs.php on line 225
  9. Re: Simple Job Specials [V2] coudl someone fix that up for me ^^ replys case 'newjob': newjob(); break; case 'jobedit': jobedit(); break; case 'newjobrank': newjobrank(); break; case 'jobrankedit': jobrankedit(); break; case 'jobdele': jobdele(); break; case 'jobrankdele': jobrankdele(); break; case 'newjobspec': newjobspec(); break; case 'jobspecedit': jobspecedit(); break; case 'jobspecdele': jobspecdele(); break; default: print "Error: This script requires an action."; break;     <?php include "sglobals.php"; if($ir['user_level'] > 2) { die("403"); } //This contains shop stuffs switch($_GET['action']) { case 'newjob': newjob(); break; case 'jobedit': jobedit(); break; case 'newjobrank': newjobrank(); break; case 'jobrankedit': jobrankedit(); break; case 'jobdele': jobdele(); break; case 'jobrankdele': jobrankdele(); break; case 'newjobspec': newjobspec(); break; case 'jobspecedit': jobspecedit(); break; case 'jobspecdele': jobspecdele(); break; default: print "Error: This script requires an action."; break; } function newjob() { global $db,$ir,$userid; if ( $_POST['jNAME']) { $db->query("INSERT INTO jobs VALUES('','{$_POST['jNAME']}', 0, '{$_POST['jDESC']}', '{$_POST['jOWNER']}')"); $i=$db->insert_id(); $db->query("INSERT INTO jobranks VALUES('', '{$_POST['jrNAME']}', $i, {$_POST['jrPAY']}, {$_POST['jrIQG']}, {$_POST['jrLABOURG']}, {$_POST['jrSTRG']}, {$_POST['jrIQN']}, {$_POST['jrLABOURN']}, {$_POST['jrSTRN']})"); $j=$db->insert_id(); $db->query("UPDATE jobs SET jFIRST=$j WHERE jID=$i"); print "Job created! "; } else { print <<<EOF <form action='staff_jobs.php?action=newjob' method='post'> [b]Job Name:[/b] <input type='text' name='jNAME' /> [b]Job Description:[/b] <input type='text' name='jDESC' /> [b]Job Owner:[/b] <input type='text' name='jOWNER' /> <hr>[b]First Job Rank:[/b] [b]Rank Name:[/b] <input type='text' name='jrNAME' /> [b]Pays:[/b] <input type='text' name='jrPAY' /> [b]Gains:[/b] Str: <input type='text' name='jrSTRG' size=3 maxlength=3> Lab: <input type='text' name='jrLABOURG' size=3 maxlength=3> IQ: <input type='text' name='jrIQG' size=3 maxlength=3> [b]Reqs:[/b] Str: <input type='text' name='jrSTRN' size=5 maxlength=5> Lab: <input type='text' name='jrLABOURN' size=5 maxlength=5> IQ: <input type='text' name='jrIQN' size=5 maxlength=5> <input type='submit' value='Create Job' /></form> EOF; } } function jobedit() { global $db,$ir,$userid; if ( $_POST['stage2']) { $db->query("UPDATE jobs SET jNAME='{$_POST['jNAME']}', jDESC='{$_POST['jDESC']}', jOWNER='{$_POST['jOWNER']}', jFIRST={$_POST['jFIRST']} WHERE jID={$_POST['jID']}"); print "Job updated! "; } else if ( $_POST['stage1']) { $q=$db->query("SELECT * FROM jobs WHERE jID={$_POST['jID']}"); $r=$db->fetch_row($q); print <<<EOF <form action='staff_jobs.php?action=jobedit' method='post'> <input type='hidden' name='stage2' value='1'> <input type='hidden' name='jrID' value='{$_POST['jrID']}'> [b]Job Name:[/b] <input type='text' name='jNAME' value='{$r['jNAME']}'> [b]Job Description:[/b] <input type='text' name='jDESC' value='{$r['jDESC']}'> [b]Job Owner:[/b] <input type='text' name='jOWNER' value='{$r['jOWNER']}'> [b]First Job Rank:[/b] EOF; print jobrank_dropdown($c,'jFIRST',$r['jFIRST']); print <<<EOF <input type='submit' value='Edit' /> </form> EOF; } else { print <<<EOF <form action='staff_jobs.php?action=jobedit' method='post'> <input type='hidden' name='stage1' value='1'> Select a job to edit. EOF; print job_dropdown($c, 'jID', -1); print <<<EOF <input type='submit' value='Edit Job' /> </form> EOF; } } function newjobrank() { global $db,$ir,$userid; if ( $_POST['jrNAME']) { $db->query("INSERT INTO jobranks VALUES('', '{$_POST['jrNAME']}', {$_POST['jrJOB']}, {$_POST['jrPAY']}, {$_POST['jrIQG']}, {$_POST['jrLABOURG']}, {$_POST['jrSTRG']}, {$_POST['jrIQN']}, {$_POST['jrLABOURN']}, {$_POST['jrSTRN']}, {$_POST['jrPOINTS']})"); print "Job rank created! "; } else { print <<<EOF <form action='staff_jobs.php?action=newjobrank' method='post'> [b]Rank Name:[/b] <input type='text' name='jrNAME' /> [b]Pays:[/b] <input type='text' name='jrPAY' /> [b]Points:[/b] <input type='text' name='jrPOINTS' /> [b]Job:[/b] EOF; print job_dropdown($c,"jrJOB", -1); print <<<EOF [b]Gains:[/b] Str: <input type='text' name='jrSTRG' size=3 maxlength=3> Lab: <input type='text' name='jrLABOURG' size=3 maxlength=3> IQ: <input type='text' name='jrIQG' size=3 maxlength=3> [b]Reqs:[/b] Str: <input type='text' name='jrSTRN' size=5 maxlength=5> Lab: <input type='text' name='jrLABOURN' size=5 maxlength=5> IQ: <input type='text' name='jrIQN' size=5 maxlength=5> <input type='submit' value='Create Job Rank' /></form> EOF; } } function jobrankedit() { global $db,$ir,$userid; if ( $_POST['stage2']) { $db->query("UPDATE jobranks SET jrNAME='{$_POST['jrNAME']}', jrJOB = {$_POST['jrJOB']}, jrPAY= {$_POST['jrPAY']}, jrIQG={$_POST['jrIQG']}, jrLABOURG={$_POST['jrLABOURG']}, jrSTRG={$_POST['jrSTRG']}, jrIQN={$_POST['jrIQN']}, jrLABOURN={$_POST['jrLABOURN']}, jrSTRN={$_POST['jrSTRN']}, jrPOINTS={$_POST['jrPOINTS']} WHERE jrID={$_POST['jrID']}"); print "Job rank updated! "; } else if ( $_POST['stage1']) { $q=$db->query("SELECT * FROM jobranks WHERE jrID={$_POST['jrID']}"); $r=$db->fetch_row($q); print <<<EOF <form action='staff_jobs.php?action=jobrankedit' method='post'> <input type='hidden' name='stage2' value='1'> <input type='hidden' name='jrID' value='{$_POST['jrID']}'> [b]Job Rank Name:[/b] <input type='text' name='jrNAME' value='{$r['jrNAME']}'> [b]Job:[/b] EOF; print job_dropdown($c,'jrJOB',$r['jrJOB']); print <<<EOF [b]Pays:[/b] <input type='text' name='jrPAY' value='{$r['jrPAY']}' /> [b]Points:[/b] <input type='text' name='jrPOINTS' value='{$r['jrPOINTS']}' /> [b]Gains:[/b] Str: <input type='text' name='jrSTRG' size=3 maxlength=3 value='{$r['jrSTRG']}'> Lab: <input type='text' name='jrLABOURG' size=3 maxlength=3 value='{$r['jrLABOURG']}'> IQ: <input type='text' name='jrIQG' size=3 maxlength=3 value='{$r['jrIQG']}'> [b]Reqs:[/b] Str: <input type='text' name='jrSTRN' size=5 maxlength=5 value='{$r['jrSTRN']}'> Lab: <input type='text' name='jrLABOURN' size=5 maxlength=5 value='{$r['jrLABOURN']}'> IQ: <input type='text' name='jrIQN' size=5 maxlength=5 value='{$r['jrIQN']}'> [b]Job:[/b] <input type='submit' value='Edit' /> </form> EOF; } else { print <<<EOF <form action='staff_jobs.php?action=jobrankedit' method='post'> <input type='hidden' name='stage1' value='1'> Select a job rank to edit. EOF; print jobrank_dropdown($c, 'jrID', -1); print <<<EOF <input type='submit' value='Edit Job Rank' /> </form> EOF; } } function jobrankdele() { global $db,$ir,$userid; if ( $_POST['stage1']) { $q=$db->query("SELECT * FROM jobranks WHERE jrID={$_POST['jrID']}"); $jr=$db->fetch_row($q); $_POST['jID']=$jr['jrJOB']; $db->query("DELETE FROM jobranks WHERE jrID={$_POST['jrID']}"); print "Job rank successfully deleted! "; $db->query("UPDATE users u LEFT JOIN jobs j ON u.job=j.jID SET u.jobrank=j.jFIRST WHERE u.job={$_POST['jID']} and u.jobrank={$_POST['jrID']}"); $q=$db->query("SELECT * FROM jobs WHERE jFIRST={$_POST['jrID']}"); if($db->num_rows($q)) { $r=$db->fetch_row($q); print "[b]Warning![/b] The Job {$r['jNAME']} now has no first rank! Please go edit it and include a first rank. "; } } else { print <<<EOF <form action='staff_jobs.php?action=jobrankdele' method='post'> <input type='hidden' name='stage1' value='1'> Select a job rank to delete. EOF; print jobrank_dropdown($c, 'jrID', -1); print <<<EOF <input type='submit' value='Delete Job Rank' /> </form> EOF; } } function jobrankedit() { global $db,$ir,$userid; if ( $_POST['stage2']) { $db->query("UPDATE jobranks SET jrNAME='{$_POST['jrNAME']}', jrJOB = {$_POST['jrJOB']}, jrPAY= {$_POST['jrPAY']}, jrIQG={$_POST['jrIQG']}, jrLABOURG={$_POST['jrLABOURG']}, jrSTRG={$_POST['jrSTRG']}, jrIQN={$_POST['jrIQN']}, jrLABOURN={$_POST['jrLABOURN']}, jrSTRN={$_POST['jrSTRN']}WHERE jrID={$_POST['jrID']}"); print "Job rank updated! "; } else if ( $_POST['stage1']) { $q=$db->query("SELECT * FROM jobranks WHERE jrID={$_POST['jrID']}"); $r=$db->fetch_row($q); print <<<EOF <form action='staff_jobs.php?action=jobrankedit' method='post'> <input type='hidden' name='stage2' value='1'> <input type='hidden' name='jrID' value='{$_POST['jID']}'> [b]Job Rank Name:[/b] <input type='text' name='jrNAME' value='{$r['jrNAME']}'> [b]Job:[/b] EOF; print job_dropdown($c,'jrJOB',$r['jrJOB']); print <<<EOF [b]Pays:[/b] <input type='text' name='jrPAY' value='{$r['jrPAY']}' /> [b]Gains:[/b] Str: <input type='text' name='jrSTRG' size=3 maxlength=3 value='{$r['jrSTRG']}'> Lab: <input type='text' name='jrLABOURG' size=3 maxlength=3 value='{$r['jrLABOURG']}'> IQ: <input type='text' name='jrIQG' size=3 maxlength=3 value='{$r['jrIQG']}'> [b]Reqs:[/b] Str: <input type='text' name='jrSTRN' size=5 maxlength=5 value='{$r['jrSTRN']}'> Lab: <input type='text' name='jrLABOURN' size=5 maxlength=5 value='{$r['jrLABOURN']}'> IQ: <input type='text' name='jrIQN' size=5 maxlength=5 value='{$r['jrIQN']}'> [b]Job:[/b] <input type='submit' value='Edit' /> </form> EOF; } else { print <<<EOF <form action='staff_jobs.php?action=jobrankedit' method='post'> <input type='hidden' name='stage1' value='1'> Select a job rank to edit. EOF; print jobrank_dropdown($c, 'jrID', -1); print <<<EOF <input type='submit' value='Edit Job Rank' /> </form> EOF; } } function jobrankdele() { global $db,$ir,$userid; if ( $_POST['stage1']) { $q=$db->query("SELECT * FROM jobranks WHERE jrID={$_POST['jrID']}"); $jr=$db->fetch_row($q); $_POST['jID']=$jr['jrJOB']; $db->query("DELETE FROM jobranks WHERE jrID={$_POST['jrID']}"); print "Job rank successfully deleted! "; $db->query("UPDATE users u LEFT JOIN jobs j ON u.job=j.jID SET u.jobrank=j.jFIRST WHERE u.job={$_POST['jID']} and u.jobrank={$_POST['jrID']}"); $q=$db->query("SELECT * FROM jobs WHERE jFIRST={$_POST['jrID']}"); if($db->num_rows($q)) { $r=$db->fetch_row($q); print "[b]Warning![/b] The Job {$r['jNAME']} now has no first rank! Please go edit it and include a first rank. "; } } else { print <<<EOF <form action='staff_jobs.php?action=jobrankdele' method='post'> <input type='hidden' name='stage1' value='1'> Select a job rank to delete. EOF; print jobrank_dropdown($c, 'jrID', -1); print <<<EOF <input type='submit' value='Delete Job Rank' /> </form> EOF; } } function jobdele() { global $db,$ir,$userid; if ( $_POST['stage1']) { $db->query("DELETE FROM jobs WHERE jID={$_POST['jID']}"); print "Job rank successfully deleted! "; $db->query("DELETE FROM jobranks WHERE jrJOB={$_POST['jID']}"); print mysql_affected_rows()." job ranks deleted. "; $db->query("UPDATE users SET job=0,jobrank=0 WHERE job={$_POST['jID']}"); } else { print <<<EOF <form action='staff_jobs.php?action=jobdele' method='post'> <input type='hidden' name='stage1' value='1'> Select a job to delete. EOF; print job_dropdown($c, 'jID', -1); print <<<EOF <input type='submit' value='Delete Job' /> </form> EOF; } } function report_clear() { global $db,$db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } $_GET['ID'] = abs((int) $_GET['ID']); stafflog_add("Cleared player report ID {$_GET['ID']}"); $db->query("DELETE FROM preports WHERE prID={$_GET['ID']}"); print "Report cleared and deleted! [url='staff_users.php?action=reportsview']> Back[/url]"; } function newjobspec() { global $db,$ir,$userid; if ($_POST['jsNAME']) { $db->query("INSERT INTO jobspecials VALUES('', '{$_POST['jsNAME']}', {$_POST['jsJOB']}, {$_POST['jsCOST']}, {$_POST['jsMONEY']}, {$_POST['jsCRYSTALS']}, {$_POST['jsITEM']}, {$_POST['jsSTR']}, {$_POST['jsIQ']}, {$_POST['jsAGILITY']}, {$_POST['jsLABOUR']})"); print "Job special created! "; } else { print <<<EOF <form action='staff_jobs.php?action=newjobspec' method='post'> [b]Special Name:[/b] <input type='text' name='jsNAME' /> [b]Cost:[/b] <input type='text' name='jsCOST' /> [b]Job:[/b] EOF; print job_dropdown($c,"jsJOB", -1); print <<<EOF [b]Money Gain:[/b] <input type='text' name='jsMONEY' /> [b]Crystal Gain:[/b] <input type='text' name='jsCRYSTALS' /> [b]Item:[/b] EOF; print item_dropdown($c,"jsITEM", -1); print <<<EOF [b]Strength Gain:[/b] <input type='text' name='jsSTR' /> [b]IQ Gain:[/b] <input type='text' name='jsIQ' /> [b]Agility Gain:[/b] <input type='text' name='jsAGILITY' /> [b]Labour Gain:[/b] <input type='text' name='jsLABOUR' /> <input type='submit' value='Create Special' /></form> EOF; } } function jobspecedit() { global $db,$ir,$userid; if ( $_POST['stage2']) { $db->query("UPDATE jobspecials SET jsNAME='{$_POST['jsNAME']}', jsJOB = {$_POST['jsJOB']}, jsCOST= {$_POST['jsCOST']}, jsMONEY={$_POST['jsMONEY']}, jsCRYSTALS={$_POST['jsCRYSTALS']}, jsITEM={$_POST['jsITEM']}, jsSTR={$_POST['jsSTR']}, jsIQ={$_POST['jsIQ']}, jsAGILITY={$_POST['jsAGILITY']}, jsLABOUR={$_POST['jsLABOUR']} WHERE jsID={$_POST['jsID']}"); print "Job special updated! "; } else if ( $_POST['stage1']) { $q=$db->query("SELECT * FROM jobspecials WHERE jsID={$_POST['jsID']}"); $r=$db->fetch_row($q); print <<<EOF <form action='staff_jobs.php?action=jobspecedit' method='post'> <input type='hidden' name='stage2' value='1'> <input type='hidden' name='jsID' value='{$_POST['jsID']}'> [b]Job Special Name:[/b] <input type='text' name='jsNAME' value='{$r['jsNAME']}'> [b]Cost:[/b] <input type='text' name='jsCOST' value='{$r['jsCOST']}' /> [b]Job:[/b] EOF; print job_dropdown($c,'jsJOB',$r['jsJOB']); print <<<EOF [b]Money Gain:[/b] <input type='text' name='jsMONEY' value='{$r['jsMONEY']}' /> [b]Crystal Gain:[/b] <input type='text' name='jsCRYSTALS' value='{$r['jsCRYSTALS']}' /> [b]Item:[/b] EOF; print item_dropdown($c,'jsITEM',$r['jsITEM']); print <<<EOF [b]Strength Gain:[/b] <input type='text' name='jsSTR' value='{$r['jsSTR']}' /> [b]IQ Gain:[/b] <input type='text' name='jsIQ' value='{$r['jsIQ']}' /> [b]Agility Gain:[/b] <input type='text' name='jsAGILITY' value='{$r['jsAGILITY']}' /> [b]Labour Gain:[/b] <input type='text' name='jsLABOUR' value='{$r['jsLABOUR']}' /> <input type='submit' value='Edit Special' /> </form> EOF; } else { print <<<EOF <form action='staff_jobs.php?action=jobspecedit' method='post'> <input type='hidden' name='stage1' value='1'> Select a job special to edit. EOF; print jobspec_dropdown($c, 'jsID', -1); print <<<EOF <input type='submit' value='Edit Job Special' /> </form> EOF; } } function jobspecdele() { global $db,$ir,$userid; if ( $_POST['stage1']) { $q=$db->query("SELECT * FROM jobspecials WHERE jsID={$_POST['jsID']}"); $jr=$db->fetch_row($q); $_POST['jID']=$jr['jsJOB']; $db->query("DELETE FROM jobspecials WHERE jsID={$_POST['jsID']}"); print "Job special successfully deleted! "; } else { print <<<EOF <form action='staff_jobs.php?action=jobspecdele' method='post'> <input type='hidden' name='stage1' value='1'> Select a job special to delete. EOF; print jobspec_dropdown($c, 'jsID', -1); print <<<EOF <input type='submit' value='Delete Job Special' /> </form> EOF; } } $h->endpage(); ?>
  10. Re: Simple Job Specials [V2] added it in why..?
  11. Re: Updated Explore V.2 That would be nice would you sell it tho it could make some money..? and it should be a tad hard from what i can imagine some way you could make that explore.php editeble without having to log-into the cPanel hmm i wanna help some xD
  12. Re: Simple Job Specials [V2] Fatal error: Cannot redeclare jobrankedit() (previously declared in /home/liam/public_html/staff_jobs.php:117) in /home/***********/public_html/staff_jobs.php on line 236   k umm i added juyst like u said and yeah i got that error when i click on jobrank edit to give it some points
  13. Re: Updated Display Pic System [V2] -.- i had a pic alredy like in normal V2 just the link the i added this mod i uploaded some more pics via links that is the only way to add them is add there links and it changess the main pic on theprofile yeas i see that then i click my uploaded pics it says 2uploaded pics i click it takes me to usersimage.php?XID blah blah what ever the link toa user on id 1 is then its blank i click it white screen wtf but i got 2 pcis it says
  14. Re: Updated Display Pic System [V2] yeah i got a prob ok listen i already had a pic via jus get link like the old pref pic change went to my pro click my pictures said 0 but there wa a pic above i clicked the how many pics i have and yeah took me to a blank page....-.- does anyone know whats wrong..?
  15. Re: crystal bank well i thought it wasent most stuff wid out Sprintf() isnt secure and is like some how exploitable yes i know i have loads of stuff well had now i have made it a tad bit secureer for wannabe injectors but yeah soz for saying it wasnet i didnt get a chance to look at it clear some skiddie its tryin to hack me he did get in but he tryed to dos me TRYED xD i got him tho byebye The Joker+1 Skiddies -5
  16. Re: crystal bank dude u got hacked and u cant even code that means you shouldent even have a damn pc so just dos ur self or soemthign and give up ur pc cause u cant code so yeah just leave xD ive seen ur sites ;) i offer'd to help secure them a bit but ur like naw i do it myself and that is why urs got h4acked XDXDXDXDXDXDXD   now onto the mod it isn't even secure i bet ur waitin for nyna or magictallguy to secure them please dont xD no offense to you Squimmy its just idk learn to code and secure wid Sprintf() like all the others do :-)
  17. Re: [mccode] gang staff panel i found a prob well i added it and i clicked gang summary and wel lit took me into the gang's staff panel xD
  18. Re: Banning IP k so i know that so far (idk about lite) that if u have v1 or v2 create a folder called ipbans and then for the ips u wanna ban just make a blank files and call it the ip u wanna ban dont make it a php or html or any file just name it the ip and put it into that folder and it works for me like that but some people u dont want to see ur site just ban there ip in cpanel ps to edit ban messages like on your login or header its before your body ( and all that shi* it will say like if sir ipbans/ or something
  19. Ok here is the problem on one of my v2 games i have mail but it dont show like i logged in said Mailbox (0) but i clicked it and i had mail so does anyone know what the problem is and it wouldent have to tdo wid the mailbox.php just something on my mainmenu.php am i right.?????
  20. Re: Your views on new layout mainmenu??? (Very unique i believe) Very nice mate pretty unique havent seen one like that yet
  21. Re: Updated Explore V.2 i didnt need a Screenshot i just looked at the code and imageine what it would look like and it worked so yeah xD dont really need one its just for people who dont have tthe time to go tothere game and add the code save changes look at it if dont like click undo or put the orginal code backand save chnages its faster than waiting for people ot add screenshots :-D
  22. Re: Updated Explore V.2 ill be using this its nice i added a few pics into mines lie the top part where the name of that section is and maybe a pic in the middle of the rest im not shure yeet.... :? :?
  23. Re: [mccode] [TGM] Delete Gang Option [TGM] :-P I got it first lol
  24. Re: MCC V1 Jail Problem MySQL said: Documentation #1054 - Unknown column 'u.prison' in 'where clause'
  25. Re: [mccode] [TGM] Delete Gang Option [TGM] <? $c=mysql_connect('localhost','Passwordhere') or die(mysql_error()); mysql_select_db('DBhere',$c); ?> is wrong it should have a DB user int here so like this   <? $c=mysql_connect('localhost','lur db user','db user pass') or die(mysql_error()); mysql_select_db('db name',$c); ?>
×
×
  • Create New...