Jump to content
MakeWebGames

Zero-Affect

Members
  • Posts

    3,713
  • Joined

  • Last visited

    Never

Everything posted by Zero-Affect

  1. include "globals.php"; *cough* V2 *cough*
  2. Yes you should *shakefist* ^_- Yes you should *shakefist* ^_- lol, I havent forgotten about yours. Ill have it done by mid week. OffTopic care to visit the wonderful place of WE DON'T CARE? lol Seriously though on topic i think MCC itself is not a engine nor would 200 modifications make it a custom engine. It's basically alot of SH!T shoved together and compiled into a game. Delete it and move on that's the best advice you'll ever get.
  3. if ($ir['tickets']<1) die ("you are out of tickets. [url='casino.php']<font color=red>Click here to buy more</font>[/url]"); the use of { and } is normally a good idea if ($_GET ['action'] == luckyroller) { } This is confusing what was your intention? $roll = rand(1,6); $rol = rand (1,6); $rol3 = rand (1,6); $r1 = $roll; $r2 = $rol; $r3 = $rol3; $sum =$r1 + $r2 +$r3; you could do something like $r1 = rand(1,6); $r2 = rand (1,6); $r3 = rand (1,6); $sum =$r1 + $r2 +$r3;   this was just a quick look though
  4. MonoDistrict aka MD is just v2 with ajax... and fixed bugs.
  5. Good job Illusions but i noticed you didn't filter your submit of a video? Drop downs would be a good solution ie (youtube video, google video) so then they specify the normal link say if the drop down is youtube then the beginning (not editable) link would be something like http://www.youtube.com/watch?v= and give them a input box which only allows alpha+numeric chars... quite simple if you do it right (maybe a length restriction of 20 on the input) google and others will be different obviously.
  6. Dayo, you're right i noticed a problem when i came back on the post and was scrolling down lol   Weak moment :(
  7. if you don't see the problem there then your seriously thinking outside the box today...   $max_energy = ( !empty($ir['donatordays']) ) ? $ir['maxenergy']+($ir['maxenergy']/2) : $ir['maxenergy'] ; $db->query('UPDATE `users` SET `maxenergy` = 150 WHERE `userid` = '.$userid);
  8. Just a quick tip, maybe you could use this => [jail/hospital] Notifications I use something similar on my CrimGame not many people have looked at it enough to actually get the idea or understand why it would be better but im sure if you added maybe custom notification on there it would seem more obvious.
  9. i use one of them images on CG on the check page :D
  10. Something like $colour = array ( 1 => 'orange', 2 => 'red', 3 => 'green', 5 => 'purple' ); foreach ( array_keys($colour) as $key) { if ( $ir['user_level'] == $key ) { $mycolor = $colour[$key]; } elseif ( !empty($ir['donatordays']) ) { $mycolor = 'blue'; } else { $mycolor = ''; } maybe?
  11. ah well, good luck.
  12. Wow i saw a copy of this and i have to say... WTF for the people wondering how to drop a line $check_count = ( $r % 3 ) ? '</th></tr><tr><th>' : '' ; simple (im not implementing it since i can't be arsed recoding the table so.. have fun).
  13. why don't i just offer you mine you can then recode whatever needed and give me 50% of the profit made from sales.
  14. most people do filter on register and preferences (who have more than one brain cell) so if you filter the output and input your doubling the load time?
  15. Maybe you should explain why you wouldn't use it? Seems a waste of posts if you don't give a explanation in the first post.
  16. What exactly do you think is the issue? change $_GET['ID']=abs((int) $_GET['ID']); into $_GET['ID'] = ( isset($_GET['ID']) AND ctype_digit($_GET['ID']) ) ? $_GET['ID'] : '' ; maybe?
  17. Zero-Affect

    Can someone help me?

    You didn't define $_SESSION['userid'] in the authenticate (just scanned over it quickly) so maybe afew edits could be editing line 48 $userdata into $uq and below the fetch_row (line 56) maybe add $_SESSION['userid'] = $fetch['userid'];   NOTE: this is index.php
  18. Zero-Affect* MTG i would agree with you and Rasheed Saeed
  19. I'd say no because sites are normally running a Engine ie(mc, horizon, grpg) you can only sell it once due to the licence of the engine being what people actually buy. To sell it again you'd have to contact the owners of the copyrights of the engine and work out a deal with them to sell multiple times.   That's my opinion anyways.
  20. Raven Script *whistles*
  21. ah yeah FBML seemed rather confusing and iframe isn't the best looking option, i think they make it too complex to add a app.
  22. i do adore the colour and it matches the template of my game enough to pull it off.
  23. Looks amazing Zeggy, good job mate
  24. @immortal he said Joel not Josh... I think i remember 03laceys did make this Pudda, My personal tutorial runs off a drop down.
×
×
  • Create New...