Jump to content
MakeWebGames

Ishy

Members
  • Posts

    203
  • Joined

  • Last visited

    Never

Ishy's Achievements

Newbie

Newbie (1/14)

0

Reputation

  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"; }
×
×
  • Create New...