Jump to content
MakeWebGames

Ishy

Members
  • Posts

    203
  • Joined

  • Last visited

    Never

Everything posted by Ishy

  1. Re: Ignore User Mails [$10]   I never knew there was a mail block mod :|
  2. Re: contact staff [v2] Well, this is kinda pointless... As Zeon said, just mail them directly, just an extra file is you ask me :| However coding-wise, good work :-P
  3. Re: [V2] Crystalbank Mod [V2] Has this been posted on CE before? If so, unlucky but it has already been posted. If not, great work :-P
  4. Re: neeeeeeed heeeellppp Ain't this post meant to be on help?
  5. Re: [mccode]streetsv1[mccode] Sorry man, I have seen this LOADS of times, just the streets alone is kinda "spamming" the forums :| :wink:
  6. Re: [V2]Editing Organised Crimes Great work, well done...
  7. Re: [REVIEW]Criminal Warfare I think the graphics go really well this the game. I love the stone background, nice layout, maybe get some other cron bars I think, get it more into the theme, but other than that I think very well done.
  8. Ishy

    Stats

    Re: Stats Yo jaye1 This ain't a modification request, this should on the Help Section.
  9. Re: Changer User Password! V2 Nice mod radio... Keep up the good work.
  10. Re: Updated RentA Spy (v2)   Well, by looking at the code mate, it loosk you have a 1 in 15 chance of failing it and the rest successes. If you want to change the chance just change thie line which has: rand(1,15);
  11. Re: Probem :? please help... Posting them may help more.
  12. Re: My other problem :? Here it should work now! :wink:   <?php include "config.php"; global $_CONFIG; if($_GET['code'] != $_CONFIG['code']) { die(""); } define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; $db->query("UPDATE fedjail set fed_days=fed_days-1"); $q=$db->query("SELECT * FROM fedjail WHERE fed_days=0"); $ids=array(); while($r=$db->fetch_row($q)) { $ids[]=$r['fed_userid']; } if(count($ids) > 0) { $db->query("UPDATE users SET fedjail=0 WHERE userid IN(".implode(",", $ids).")"); } $db->query("DELETE FROM fedjail WHERE fed_days=0"); $db->query("UPDATE users SET gymp=gymp-1 WHERE gymp > 0"); $db->query("UPDATE users SET daysingang=daysingang+1 WHERE gang > 0"); $db->query("UPDATE users SET daysold=daysold+1"); $db->query("UPDATE users SET mailban=mailban-1 WHERE mailban > 0"); $db->query("UPDATE users SET donatordays=donatordays-1 WHERE donatordays > 0"); $db->query("UPDATE users SET daysmarried=daysmarried+1 WHERE married > 0"); $db->query("UPDATE users SET cdays=cdays-1 WHERE course > 0"); $db->query("UPDATE users SET thanks=0"); $db->query("UPDATE users SET boxes_opened=0"); $db->query("UPDATE passreset SET time=time-1 WHERE time > 0",$c) or die(mysql_error()); $db->query("DELETE FROM passreset WHERE time<=0",$c) or die(mysql_error()); $db->query("UPDATE users SET bankmoney=bankmoney*bankpercent+bankmoney WHERE bankmoney>0 AND laston>unix_timestamp()-432000"); $db->query("UPDATE users SET banklevel=1 WHERE bankmoney>0",$c); $db->query("UPDATE users SET cybermoney=cybermoney+(cybermoney/100*7) WHERE cybermoney>0 laston>unix_timestamp()-432000"); $db->query("UPDATE users set ttime=ttime-1 WHERE ttime>0"); $q=$db->query("SELECT * FROM users WHERE cdays=0 AND course > 0"); while($r=$db->fetch_row($q)) { $cd=$db->query("SELECT * FROM courses WHERE crID={$r['course']}"); $coud=$db->fetch_row($cd); $userid=$r['userid']; $db->query("INSERT INTO coursesdone VALUES({$r['userid']},{$r['course']})"); $upd=""; $ev=""; if($coud['crSTR'] > 0) { $upd.=",us.strength=us.strength+{$coud['crSTR']}"; $ev.=", {$coud['crSTR']} strength"; } if($coud['crGUARD'] > 0) { $upd.=",us.guard=us.guard+{$coud['crGUARD']}"; $ev.=", {$coud['crGUARD']} guard"; } if($coud['crLABOUR'] > 0) { $upd.=",us.labour=us.labour+{$coud['crLABOUR']}"; $ev.=", {$coud['crLABOUR']} labour"; } if($coud['crAGIL'] > 0) { $upd.=",us.agility=us.agility+{$coud['crAGIL']}"; $ev.=", {$coud['crAGIL']} agility"; } if($coud['crIQ'] > 0) { $upd.=",us.IQ=us.IQ+{$coud['crIQ']}"; $ev.=", {$coud['crIQ']} IQ"; } $ev=substr($ev,1); if ($upd) { $db->query("UPDATE users u LEFT JOIN userstats us ON u.userid=us.userid SET us.userid=us.userid $upd WHERE u.userid=$userid"); } $db->query("INSERT INTO events VALUES('',$userid,unix_timestamp(),0,'Congratulations, you completed the {$coud['crNAME']} and gained $ev!')"); } $db->query("UPDATE users SET course=0 WHERE cdays=0"); $db->query("TRUNCATE TABLE votes;"); ?>
  13. Re: Probem :? please help... You tried looking at the globalfunc.php or globals.php files? It is in there.
  14. Re: New Template! :p Yo Extermination, you are a good graphics designer, I like it how all the colours match, you have a skill at it, keep up the good work, as long as you have permission I am with you :wink: I am hoping to see more work from you in the future, it makes me wonder what people can do with a program...
  15. Re: Main Menu I think it's cool, however in a more simpler way I would just of done two extra main menu files and code it onto the header. JailMenu.php HospitalMenu.php And or course, mainmenu.php... And in header have: if ($ir['hospital'] > 0) { include "HospitalMenu.php"; } elseif { include "JailMenu.php"; } else { include "mainmenu.php"; }
  16. Re: MCC V1 Jail Problem Hmm..I hate adding two SQL's into one so I would code it the simpler way:   $UserSelectQuery="SELECT * FROM users WHERE jail > 0"; $UserSelectResult=mysql_query($UserSelectQuery); $UserCount=mysql_num_rows($UserSelectResult); if ($UserCount > 0) {   I hope that this code works. Toxication
  17. Re: Multiple Houses [V2] That is a nice modification you have done there Richard, as Minime said, you could improve this, will work very well on a lot of game. Nice Work
  18. Re: Advanced Burn House [$15] I would do the same :wink:
  19. Re: Advanced Turns[$15] I have been on soo many sites, I cannot remember them, yeh I will give it a look.
  20. Re: Advanced Burn House [$15] Well, you are right there, but how about making the payment or insurance higher for higher level in the game, that way it is fair, and have it on viewuser.php so that is shows the number of days left until the house is vulnerable to burn down. :-) There's another little suggestion :roll:
  21. Re: Travel Agency Advanced [$15] This would cause some real confusions to new members :-P Suggestion: You should of made it so, a city will only allow car, train or plane, depending how high the level requirement on the city is. I would make it so on the last city they only have a option of plane to travel to the city. Just a suggestion, would of been cool.
  22. Re: Advanced Merit System [$5] Can I ask? If it is advanced why is it $5 :mrgreen: You just being kind? :wink:
  23. Re: Ranger Den [$25] Nice one absolute, good work on this.
  24. Re: Marriage Script [$10] To be honest, I would not buy this (just my opinion) because for the following reason: 1. No houses sharing as on other marriage scripts. 2. I would spend my money wisely and check through the available marriage scripts which other people have made (not saying they are better or nothing) 3. And finally I would make it myself as it is very easy. But good one killah, however, I am seeing a lot of posts which are really small modifications on the paid modifications which should be on the free modifications category, I would recommend that you stop posting little ones on the paid modifications, and put them on the free modifications section, but then make a nice big modification which make you a lot of cash. :wink:
  25. Re: TownView [$5] LOL, @ LostOne, thanks for doing that, felt a
×
×
  • Create New...