Jump to content
MakeWebGames

Isomerizer

Members
  • Posts

    1,170
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Isomerizer

  1. Re: [V1][V2] 50/50 Chance Mod. Free Version   HA!
  2. Re: Forums...VB Vs. IPB VBulletin is expensive, Not much experience with Invision. I'd suggest using SMF. I'm sure you've used it before, plus its free and secure.
  3. Re: [Free] [v1] Scuba Diving   Gah, after months he still has not learnt. Anyways updated the first post a bit. Enjoy.
  4. Re: Staff Positions Mod LOL. Basically its just a table..... Staff Position? Isn't that basically Duties? Rofl.... God damn, these new mods are so ****ing stupid. It annoys me so much.
  5. Re: how can i link Before $r['username'] Add <a href='viewuser.php?u={$r['userid']}'> After $r['username'] add </a>
  6. Re: better hall of fame Woah, Is changing a few queries limits really classify as a modification.. I'm seeing so many new modifications now... And most of them are just like little tiny bits of original scripts changed
  7. Re: [mccode] quantify items automatically   For v2, im sure there is no $h->menuarea();. So they'd have to add it after require("globals.php");
  8. Re: [v1]User Text Style[v1]   Ok keep it your way. The users will either SQL inject your game, mess up their layout or mess up the whole entire games layout. Up to you. :)
  9. Re: [v1]User Text Style[v1]   lol he'll find a way to fix it :) Yeah i know... I just told him how to...Limit their options with a simple drop down box..
  10. Re: [Free] [v1] Quests (One Free Quest!)   Try..   <u>Dark Side</u> [url='fedjail.php']Federal Jail[/url] [url='whorehouse.php']Lady Anne's House of pleasure[/url] [url='mine.php']Abandoned mine[/url] [url='quests.php']Quests[/url] "; if ($ir['quest']=="on") { print " [url='treasure.php']Treasure[/url]"; } print " [url='slotsmachine.php?tresde=$tresder']Slots Machine[/url] </td></tr><tr height=100> <td valign=top>
  11. Re: [Free] [v1] Quests (One Free Quest!)   The php is erroring, And i think your php configuration has errors off. So it will go blank. Show me more of the code... A few lines above and below please.
  12. Re: [v1]User Text Style[v1] Your allowing your users to change the text to anything they like... Maybe use   <select name='text' value='{$ir['usertxt']}'> <option value='arial'>Arial</option> <option value='geneva'>Geneva</option> <option value='helvetica'>Helvetica</option> <option value='sans-serif'>Sans-Serif</option> </select>   Also... atm your not securing the input going into the database... Insecure, plus they could mess up your styling sheet. :)
  13. Re: How is this possible.... Firefox gave me a privacy warning for that site xD. Erm, i have no idea how they did this.. Unless they used mod_rewrite, But i don't think it can remove parts of the actual domain..
  14. Ok, i found a little bug in the gang forums. Users from other gangs can view other gangs forums. This is v1, it may be an issue in v2 too. Heres the fix... Open yourgang.php and find:   $tpcd=mysql_query("SELECT t.*,u1.* FROM gangforums_topics t LEFT JOIN users u1 ON t.gft_userid=u1.userid WHERE t.gft_id={$_GET['t']}",$c);   Replace with:   $tpcd=mysql_query("SELECT t.*,u1.* FROM gangforums_topics t LEFT JOIN users u1 ON t.gft_userid=u1.userid WHERE t.gft_id={$_GET['t']} AND t.gft_gangid={$ir['gang']}",$c);   Find:   $pq=mysql_query("SELECT r.*,u.* FROM gangforums_replies r LEFT JOIN users u ON r.gfr_userid=u.userid WHERE r.gfr_topic={$_GET['t']} ORDER BY gfr_posttime ASC;",$c);   Replace with...   $pq=mysql_query("SELECT r.*,u.* FROM gangforums_replies r LEFT JOIN users u ON r.gfr_userid=u.userid WHERE r.gfr_topic={$_GET['t']} AND r.gfr_gangid={$ir['gang']} ORDER BY gfr_posttime ASC;",$c);   Done, now it'll stop them nosy users. :P
  15. Re: [V1][MCCODE]Avatars For Pics[MCCODE][V1] Because he still hasn't mastered how to convert... The fact that hes lame has no effect on your converting.
  16. Re: Event ADD In your cron file... Make sure your including the file with event_add() function in... require "../../../../global_func.php"; Something like that ^?
  17. Re: delete gang after respect hit 0   How can iseeyou94056's one work, If there is no gangID in users table? Its common sense...
  18. Re: Basic Security Mesuares   function antisql($String) { if (ini_get('magic_quotes_gpc') == 'off') $String = addslashes($String); $String = htmlentities($String, ENT_QUOTES); $String = mysql_real_escape_string($String); return $String; } ?
  19. Re: [$20] 50 / 50 Chance Game   And thats called being plain childish. Pushed over the edge? LOL. You got pushed over the "edge" due to me bringing out a new gamble game.. Wow..
  20. Re: Just want some advice on securing my game.   did it work when u put it in header You've been told where to put it...  
  21. Re: [$20] 50 / 50 Chance Game   Does not most casino / gambling games run off the factor of rand() ?   $20 is a fair price in my eyes... The price does seem a bit high for here. But a lot of DBS game owners, are used to paying low price's for scripts worth a lot more. Reason i made it this price, was i did not intend to sell many because i was hoping it wouldn't be used on loads of other games too much. Though, when someone does buy, it'll probably be resold or giving out in the next hour of sales.   Wow, they like the mod, so they should be shot? Makes sense... :roll: Overall, I like this mod, my users like this mod and the person i originally created this for (khanhdom) likes this mod.
  22. Re: Bank.php Or maybe just.. $_POST['deposit']=abs(@intval($_POST['deposit'])); ?
  23. Re: [$20] 50 / 50 Chance Game   Explain?
  24. 50 / 50 Chance Game Price: $20 Paypal: [email protected] Description This mod will offer a new great gambling feature for your users. Users will be able to host multiple games where the games can be viewed by all. If a user wants to challenge a user to the game, they'll challenge them. The winner is 50 / 50 chance. The winner will win 90% of the overall pot. Great game that will keep users entertained. Max bets, minimum, max games, cancel features have all been added to make this mod as easy as possible to use! I bet you'll also enjoy playing this, as i do. :) Screenshots: Thanks to khanhdom for the idea Can be seen fully working @ www.amazon-survival.com
  25. Re: Just want some advice on securing my game. For security functions I'd put in global func's or maybe include a security.php into mysql.php so that the functions are included on all pages.
×
×
  • Create New...