Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,667
  • Joined

  • Last visited

  • Days Won

    75

Everything posted by Uridium

  1. do you mean a working engine ?
  2. we ran into a lot off issues when trying to revive NEAB especially the outdated Javascript and would constantly break, However this hasnt deterred us from attempting another go at bringing it into 2022
  3. Fieldset and Legend have some brilliant uses for your codes they can make a boring Announcement page look amazing as you can see from the before and after it makes quite a nice effect
  4. I forgot about this I may have to upgrade it give it more potential
  5. what ever happened to this game was it ever played
  6. Thank ya guys
  7. does anyone have an original MCCv2 that I can have. the one I have on the MCCCODES site is MCCv2 but an earlier version id like the 2009 version not the 2012 version
  8. im still here
  9. 1st off can the download and code edits work on an un-modfied edit of mccodes ? or are their edits in yours that isnt available on mccodes
  10. Earlier today i wanted to run a hour cron but didnt want it to run the entire cron for cron_hour.php so usually you would have to edit our the parts you dont want to run and only have the section running when needed for testing and so forth... However my head as usual wanted to say Sod that im not doing all that editing why cant i just have a certain part of the script run as and when i want it too without touching the script at all.... so on all normal MCCODES crons there is this part 10 include "config.php"; 20 include "global_func.php"; 30 global $_CONFIG; 40 if($_GET['code'] != $_CONFIG['code']); 50 define("MONO_ON", 1); 60 require "class/class_db_{$_CONFIG['driver']}.php"; 70 $db=new database; 80 $db->configure($_CONFIG['hostname'], 81 $_CONFIG['username'], 82 $_CONFIG['password'], 83 $_CONFIG['database'], 84 $_CONFIG['persistent']); 85 $db->connect(); 86 $c=$db->connection_id; excuse the line numbers they are there for reference so LINE 40 is the part that tells the config.php what the code text is for your CronJobs to run so could you have more than one cronjob running on the same cron script rather than curl https://YOURWEBSITE.com/cron_hour.php?code=YOURCODE you could also have curl https://YOURWEBSITE.com/cron_hour.php?usercode=YOURCODE So you could have multiple jobs which you can turn on and off from the admin panel example You are viewing cron_hour file which cron elements do you want to turn on or off for this file User Options: Schooling: Other extended data: outcome You have successfully turned off Schooling and Extended data these crons will not be run so you can now run your script without any other job being run leaving you to fix any issues with just one cron and your config.php would look something like this $_CONFIG = array( 'hostname' => 'localhost', 'username' => 'root', 'password' => 'WHATEVER', 'database' => 'funny', 'persistent' => 0, 'driver' => 'mysql', /* ADD YOUR CRON SECTION CODES HERE */ 'code' => 'NORMAL CODE', /* CRON DAY CODE FOR USERS */ 'usercode' => 'UserCode', 'schoolcode' => 'SchoolCode' );
      • 2
      • Like
  11. are we all still alive the group has gone very quiet ive been working on some more mods but pointless posting if the group has dies havent seen many posts for ages
  12. Well done @Dayoyouve done some fab work on GL so your work on MWG should be just as good... looking forward to seeing your new updates 🙂
  13. Welcome back big lad nice to see you here again 🙂 you may remember me as Illusions...
  14. Get xampp or wamp its use is for offline only but will give you a better insight on how to develop and be creative with your scripts
  15. Anyone Using this mod that could give some feedback or ideas
  16. this is only being used on xampp but your right a better method is needed
  17. << WHATS IT DO >> This script was created with the intention of tracking MD5# passwords for many accounts. The idea is that, while IP addresses change, user habits do not, and they will always use the same password when playing a game, making it easier for players to remember the username because the password is always the same... So, even if IP and EMAIL are different, this short search will weed out users with the same password... From the image you can see a few results the drop down will allow you to search for usermame, userpass, userid and so on... searchpass.zip
  18. get a google spreadsheet set up list every ingame item, house and other ways the game gives or takes money this will take time to do but will be beneficial in the end
  19. this part is the image <img src='valid8/captcha_".$vtime.".php?bgcolor=$bg' /><br/> The $vtime for some reason is trying to find a php file with random numbers which i cant see how that would work Can you send me the valid8.php file
  20. your issue is your capture URL of >> valid8/captcha_700.php?bgcolor=94449 needs to be changed to valid8/captcha.php?bgcolor=94449 So change valid8.php and find mention of captcha_700.php and change to captcha.php and you should be good to go
  21. what is your site URL we could be going back and forth on this one all day trying to help
  22. I had this issue on Godaddy they had GD imaging turned off
  23. For your coding issue on line 261 and 262 change $get to $get1 as the $get is being used elsewhere
×
×
  • Create New...