Jump to content
MakeWebGames

.: Reaper :.

Members
  • Posts

    32
  • Joined

  • Last visited

    Never

.: Reaper :.'s Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. There is an error when you try adding an item to your gangs armory Here is the line where the error seems to be coming from: $db->query("INSERT INTO `family_armory` (``,`ItemID`,`Adder`,`RentTime`) VALUES (NULL, {$_GET['itm']}, {$ir['userid']}, {$_POST['days']}");   And here is the error: Family's Thanks for your itemical help! You have donated a AK-74u!There seem's to be a error stopping you from seeing this page, Please mail The Warden[1] or email [email][email protected][/email] and let him know there is a FATAL ERROR here REF: (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 '' at line 1)   Is this happening to everyone or am i just the unlucky one haha -.- Sniko, you really impress me this mod is amazing and the fact that it is free :D Cheers
  2. Download link is down again -.- Will you be re-uploading this ?
  3. Here is more that was requested :L My photoshop was messing up so couldnt change the back image sorry :(
  4. yeh i just added that didn't put all that much thought into it :D Also here is the ones as requested...
  5. Hey, don't know weather this classes as a mod or not but its for mccodes. Here are two images you could put on your loggedin page or index page to encourage members to vote and donate. If you want a name adding to the corner where it says DeathsRow please say your game name and i will change it for you. :) Hope you like it. I can also change the bottom colors to suit your game. :)
  6. +1 this is the card i made from the link above.
  7. This is very nice well done.
  8. I would also use footerchat its very nice and does the same job except it has more features you can set a status. The one downside is that you have to use the js from there site but with the other chat you can modify it to your hearts content. :)
  9. Sounds great i would pay 15-20 for a forum like that but im a bit tight with money haha
  10. Sorry for posting site link because i didn't have a lot of time to make a screenshot and Decio isnt bad IFFF he is helping you. He hacks my game and then helps secure it. Anyway Nice Work +1
  11. **Updated** Hey i liked the code so i added a border around the table and made it look clearer. +1 though nice job   <?php include "globals.php"; print "<font face='Arial' size='4'>Travel</font><hr width='95%'>"; $_GET['to'] = abs((int) $_GET['to']); if(!$_GET['to']) { print "Welcome to the train station. Tickets cost $10,000. Where would you like to travel?<hr width=95%> "; $q=$db->query("SELECT * FROM cities WHERE cityid != {$ir['location']} AND cityminlevel <= {$ir['level']}"); print "<table cellspacing='1' border='0' cellpadding='3' class='table' width='95%'> <th><font color=white>City</th> <th>Description</th> <th>Min Level</th> <th>Travel?</th></font> <tr>"; while($r=$db->fetch_row($q)) { print " <td>{$r['cityname']}</td> <td>{$r['citydesc']}</td> <td>{$r['cityminlevel']}</td> <td>[url='travel.php?to={$r[']Travel[/url]</td></tr>"; } print "</table> "; print "<hr width='85%'> By going to another city, you will be able to get newer faster updated wepons and newer properties. You must travel from town to town to attack your enimies. <hr width='85%'>> [url='explore.php']Back[/url]<hr width='95%'>"; } else { if($ir['money'] < 10000) { print " Sorry you don't have enough money."; print "<hr width='85%'>> [url='explore.php']Back[/url]<hr width='95%'>"; } else if( ((int) $_GET['to']) != $_GET['to']) { print "Sorry invalid city ID"; print "<hr width='85%'>> [url='explore.php']Back[/url]<hr width='95%'>"; } else { $q=$db->query("SELECT * FROM cities WHERE cityid = {$_GET['to']} AND cityminlevel <= {$ir['level']}"); if(!$db->num_rows($q)) { print "Sorry this city does not exist."; print "<hr width='85%'>> [url='explore.php']Back[/url]<hr width='95%'>"; } else { $db->query("UPDATE users SET money=money-10000,location={$_GET['to']} WHERE userid=$userid"); $r=$db->fetch_row($q); print "You paid \$10,000 and travelled to {$r['cityname']} on the train, congratulations."; print "<hr width='85%'>> [url='explore.php']Back[/url]<hr width='95%'>"; } } } $h->endpage(); ?>   To see it in action go to http://deathsrow.com,
  12. +1 great mod will give my users somthing to play with haha :)
  13. Re: an idea for a template login,register.... Ok i have made this on my game and added a few more things to it like screen shots and made a few pages using it like contact us register n so on i will post here when i think i have fully done it but if you want my version i using now PM me
  14. Re: [v2] New Header I am using this header it did nothing to my smenu exept the size were a litle off but it is working well there is a few things i have changed on it to make it work better and there is a few tiny bugs but it is a very nice header i would change the images tho because alot of people will probs use this but i have seen this header before just not finnished +1 thanks alot
  15. Re: [mccode v2] Tag Mod (Complete) Lol i hate sql's lol i find them annoying lmao here is what i used it seemed to work   CREATE TABLE IF NOT EXISTS `tagmarket` ( `tmID` int(11) NOT NULL AUTO_INCREMENT, `tmQTY` BIGINT(50) UNSIGNED NOT NULL DEFAULT '0', `tmADDER` int(11) NOT NULL DEFAULT '0', `tmPRICE` BIGINT(50) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY (`tmID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9;
×
×
  • Create New...