Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,657
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Uridium

  1. 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
  2. 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
  3. 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 🙂
  4. Welcome back big lad nice to see you here again 🙂 you may remember me as Illusions...
  5. 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
  6. Anyone Using this mod that could give some feedback or ideas
  7. this is only being used on xampp but your right a better method is needed
  8. << 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
  9. 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
  10. 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
  11. 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
  12. what is your site URL we could be going back and forth on this one all day trying to help
  13. I had this issue on Godaddy they had GD imaging turned off
  14. For your coding issue on line 261 and 262 change $get to $get1 as the $get is being used elsewhere
  15. have you tried without the ISSET ?
  16. Post or send me your attack.php Just because the line says its line 98 doesn't always mean its that line that is the cause ?? However $ns = !isset($_GET['nextstep']) ? 1 : $_GET['nextstep'] + 2; depending on whats above that line you could change to if ( !$_GET['nextstep'] ) { $ns = 1; } else { $ns = $_GET['nextstep'] + 2; } or if(!$_GET['nextstep']) { $ns=1; } else { $ns=$_GET['nextstep']+2; } But im just shooting in the dark here without seeing whats above or below
  17. accepted
  18. your Discord doesnt work > @alizharb#4796 or alizharb#4796
  19. Cheers Im regd now 🙂
  20. First URL just keeps loading your second URL alizharb.makewebgames.com Account Suspended This Account has been suspended. Contact your hosting provider for more information.
  21. Iv'e decided to start making mods again for MCCODES I'm sure there are people out there still using this fab engine I recently made a MAINTENANCE MODE mod which i kinda improved on abit during the last few months and will share the updated version which now has "months days hours minutes" I have a few ideas for other mods or upgrade on the mods ive already made.. Some mods will be FREE and some PAID I have to start putting food on the table after a horrible 2020/21....
  22. I know times change and as you get older you start creaking and looking uglier Am I the only person who wishes we could rewind the clock back ( I was going to say WIND BACK THE CLOCK but it looked to much like wind ) Cant remember when I joined this fab forum think it was 2009 or something like that could have been later. But back then the forums where a flurry of activity as soon as you posted anything new, there was 10 - 30 comments within the hour and I kind of miss all that. Its great that MWG is back but so many of my buddies didn't come back with it and thats kinda sad. Even during the days of Criminal Existence. I still remember writing my first ever script for MCCODES it was the Edit Itemtype and the feeling of pure satisfaction knowing it worked and that I'd written the script for others to use. I'm not sure how many Mods ive written since that time but I think its near on 40, Im 51 now getting an old fart but still missing the people that made CE / MWG a success.....
  23. behind every mod is an idea to begin with so if your wanting someone just for ingame ideas than im ya cat 😉
  24. I did manage to fix this issue but damn it took a long time to do...
×
×
  • Create New...