Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Re: [PC version of MC-Codes] - Online Crime MMORPG download location is the same and new screenshot at same URL as well. Crime-Web Online 02 Updates - Added Polls (view and vote in polls) - Added level upgrades - Added Criminal Records - Fixed Tab Order in Registration Form - Fixed Login/Registration error if not connected to server - Fixed Crime Window when selecting crime it trys to edit its name - Fixed when sending a new instant message and Enter is pressed. It doesn't send the message.
  2. Re: [mccode v1] New Jobs   whats the SQL tables for this?
  3. Re: [PC version of MC-Codes] - Online Crime MMORPG     Its kinda hard to have instant messenging with no windows? unless I just use inboxes like mail which I didn't really want to do. I may however create 2 versions. windows version and a version that is layed out.
  4. Re: [PC version of MC-Codes] - Online Crime MMORPG It is connected to a database thats stored on the server. The only thing I took for mc-codes for this game was the formula system for crimes. the rest is my own code & DB design. I'm not calling it mc-codes. its called Crime-Web Online @ my other site www.teampo2.com what game charged you 40$/per download? I may need to check it out.
  5. Re: [PC version of MC-Codes] - Online Crime MMORPG     yes.   meh love crime games. this code is 100% diff from mc-codes. and thanks for the comment killah. more features will be added in upcoming weeks.
  6. Re: [PC version of MC-Codes] - Online Crime MMORPG what u mean by not work?
  7. post feature suggestions and bugs on www.teampo2.com/index.php or this thread. register on my forum for future update announcements. www.teampo2.com/OnlineCrimeMMORPGClient.zip = download
  8. Re: Looking for TOPSITES that use daily votes   thanks thanks.
  9. Re: Looking for TOPSITES that use daily votes any others?
  10. anyone have a list of topsites or can everyone post there topsites they use that use daily voting instead of weekly/monthly?
  11. Re: [mc codes lite] User Credit Card Companys   Is that one for v2 :? no.
  12. Re: [mc codes lite] User Credit Card Companys redownload file from first post. that should do it. ;]
  13. Re: [mc codes lite] User Credit Card Companys   will fix tonight.
  14. does one exist?
  15. Re: [mc codes lite] User Credit Card Companys Gotta click the company name, that will bring up a form where you can get loan.
  16. Re: Cron job question   no. like this instead of cron_day.php rename it to cron_dayz.php or something else so people will not know the file. put this code in it <?php /* MCCodes Lite cron_day.php Rev 1.0.0 Copyright (C) 2006 Dabomstew This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ include "mysql.php"; global $c, $mykey; $path=$_SERVER['HTTP_HOST'].str_replace('cron_day.php','',$_SERVER['SCRIPT_NAME']); mysql_query("UPDATE users SET daysold=daysold+1",$c); mysql_query("UPDATE users SET mailban=mailban-1 WHERE mailban > 0",$c); mysql_query("UPDATE fedjail set fed_days=fed_days-1",$c); mysql_query("UPDATE users u LEFT JOIN fedjail f ON u.fedjail=f.fed_id SET u.fedjail=0 WHERE f.fed_days=0",$c); mysql_query("DELETE FROM fedjail WHERE fed_days=0",$c); ?>   instead of cron_fivemins.php rename it to cron_fiveminz.php or something else so people will not know the file. put this code in it <?php /* MCCodes Lite cron_fivemins.php Rev 1.0.1 Copyright (C) 2006 Dabomstew This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ include "mysql.php"; global $c, $mykey; $query="UPDATE users SET energy=energy+(maxenergy/(12.5)) WHERE energy<maxenergy"; $query2="UPDATE users SET energy=maxenergy WHERE energy>maxenergy"; $query3="UPDATE users SET will=will+10 WHERE will<maxwill"; $query4="UPDATE users SET will=maxwill WHERE will>maxwill"; mysql_query($query,$c) or die("\nError Executing Query 1 for updating users $i to $next\n$query\n".mysql_error()."\nError Code:".mysql_errno()); mysql_query($query2,$c) or die("\nError Executing Query 2 for updating users $i to $next\n$query2\n".mysql_error()."\nError Code:".mysql_errno()); mysql_query($query3,$c) or die("\nError Executing Query 3 for updating users $i to $next\n$query3\n".mysql_error()."\nError Code:".mysql_errno()); mysql_query($query4,$c) or die("\nError Executing Query 4 for updating users $i to $next\n$query4\n".mysql_error()."\nError Code:".mysql_errno()); $query="UPDATE users SET brave=brave+((maxbrave/10)+0.5) WHERE brave<maxbrave "; $query2="UPDATE users SET brave=maxbrave WHERE brave>maxbrave"; $query3="UPDATE users SET hp=hp+(maxhp/3) WHERE hp<maxhp"; $query4="UPDATE users SET hp=maxhp WHERE hp>maxhp"; mysql_query($query,$c) or die("\nError Executing Query 1 for updating users $i to $next\n$query\n".mysql_error()."\nError Code:".mysql_errno()); mysql_query($query2,$c) or die("\nError Executing Query 2 for updating users $i to $next\n$query2\n".mysql_error()."\nError Code:".mysql_errno()); mysql_query($query3,$c) or die("\nError Executing Query 3 for updating users $i to $next\n$query3\n".mysql_error()."\nError Code:".mysql_errno()); mysql_query($query4,$c) or die("\nError Executing Query 4 for updating users $i to $next\n$query4\n".mysql_error()."\nError Code:".mysql_errno()); ?>
  17. I need feedback and suggestions on what you would like to see in a new crime/mafia/gang engine   heres my User Feature List so far www.teampo2.com/crime-web/feature_doc.html
  18. Re: [mc codes lite] User Credit Card Companys good job ReaSonZ
  19. Re: [mc codes lite] User Credit Card Companys what ammount? The spelling error? if thats what you mean, then No, and I don't plan on fixing the spelling error.
  20. Re: Cron job question sorry for double post. I thought of an easier way to do it.   remove the if statement where it says if CODE = then rename the file so other people can't access the cron_file. and just point directly to the file.
  21. Re: Cron job question Could you enter a URL like path_to_your_game/code/YOUR REAL CODE/ if so you could use .htaccess to modrewrite =)
  22. Re: [mc codes lite] User Credit Card Companys   bug fixed and also fixed bug where you can enter a negative # to manipulate system. please redownload file.   Also heres the cron_day.php query thats needed if you can't see it. mysql_query("UPDATE userCCCompanyClients SET client_ammount_owed=(client_ammount_owed + (client_ammount_owed / client_ammount_int))") or die(mysql_error());
  23. Re: [mc codes lite] User Credit Card Companys No.
  24. Re: [mc codes lite] User Credit Card Companys   I don't have V2 and i'm not paying 300$ for it =) I was gonna sell thsi mod at 5$/copy to try to get there lols but decided to give my first mod away as a freebie. if you like it that much though, you can donate to [email protected] via paypal. ;] Before you think of selling mod's how about you learn how to spell first? It's amount not ammount! :wink:   oh yeah?
  25. Re: [mc codes lite] User Credit Card Companys   I don't have V2 and i'm not paying 300$ for it =) I was gonna sell thsi mod at 5$/copy to try to get there lols but decided to give my first mod away as a freebie. if you like it that much though, you can donate to [email protected] via paypal. ;]
×
×
  • Create New...