Jump to content
MakeWebGames

Dayo

Administrators
  • Posts

    2,491
  • Joined

  • Last visited

  • Days Won

    196

Everything posted by Dayo

  1. Well before copying/pasting instructions you better check they work first, this can cause your customers issues going forward. That is true but as you are one of the members with a lot of mods on the market and you say you are not following the standards its not much of an assumption that atleast one of them could be your mods. Great that works for you but your potential customers may not know how to do this and buy it because it says it can easily be installed but when they go to try it dosent work. Please dont take this as a dig at you, Im just trying to teach the community how best to package mods, I spent a lot of time getting the module system and module installer working and want to see people using it to its full potential.
  2. That will be why they dont auto install ... you should probably test the auto install before selling it.
  3. GL applied 644 to all files by default, the zip archive should not contain a folder with the files inside it, they should be in the root of the zip file. Can you PM me one of the zip files and I'll check it out and give the author some advise
  4. are you using the master on GitHub? If so there are a few issues that im working to resolve now, if I remember ill push the changes I've made after I've finished work
  5. Its a bug when you are the max rank, for now make a rank with 2b exp and ill push a fix soon
  6. I would advise against this as money rank can fluctuate alot during game play.
  7. Google chrome dev console https://developers.google.com/web/tools/chrome-devtools/device-mode
  8. Dayo

    Developer

    Yeah my bad stupid auto correct 😛
  9. Dayo

    Developer

    What I said was not meant as a dig, I take my hot off to you for being able to work on a phone. Good to see you get a laptop it should up your productivity a lot.
  10. Dayo

    Developer

    Ive often fixed code on my phone, once walking up a mountain and another time on the side of the M1. But i would not choose to do it all day every day
  11. Without the cookie based login user accounts are automatically logged out after a few hours (dependant on your server settings)
  12. No it will redirect to the landing page that was set up in the ACP, it wouldn't be hard to change it though
  13. At the end of the day, you should use what every you are comfortable with. GL is still quite new and still developing (6 years old lol). All engines have their pros and cons and its working out what best fits your game.
  14. After looking at benniboiis response that is probably more efficient then what i did before.
  15. Ill post an updated fix for people later, im also chnaging the module a bit so you can have several crimes use the same timer. i.e. Crimes 1, 2, 4 and 6 share the same timer. if you do any of these they wioll stop you doing the others. But you can still do crimes 3 and 5. This allows you to have different types of crimes.
  16. Yeah but you can usually get them cheap 2nd hand, the would setup would be under $200 im guessing.
  17. Unless you need the portability have you though about a raspberry PI, For basic web development its actually not that bad. When i was between offices i used one for a few days to do some basic GL mods it was pretty good tbh plus a whole lot cheaper then a laptop/PC
  18. what do you mean by "GDRP"
  19. here is an example of how you can do this cronless, using my workout mod as an example. <?php // {module_name}.hooks.php new Hook("userInformation", function ($user) { global $page; if ($user) { $secondsBetweenGain = 60; // How often (in seconds) you want them to regen "ram" $timer = "ramRegen"; // Make sure you always change this if you have it in a different hooks file! $last = $user->getTimer($timer); // When was the last time the users ram regened $seconds = (time() - $last); // Calculates how many seconds ago that was $times = floor($seconds / $secondsBetweenGain); // Calculates how much ram to give to th user if ($times) { // Only run this if they have new ram to add $newRam = $times + $user->info->US_ram; $maxRam = $user->info->US_maxRam; if ($newRam > $maxRam) $newRam = $maxRam; // Cap the ram to maxRam $user->set("US_ram", $newRam); // Update the user $user->updateTimer($timer, $last + ($times * $secondsBetweenGain)); // Update the timer } // Add ram data to the global template $ramPerc = round($user->info->US_ram / $user->info->US_maxRam * 100, 2); $page->addToTemplate("ram", $user->info->US_ram); $page->addToTemplate("maxRam", $user->info->US_maxRam); $page->addToTemplate("ramPerc", number_format($ramPerc, 2)); } });
  20. Dayo

    Work Setups

    No I don't host anything publicly on there, I need one for work (Ive been working from home for 3+ years now) i use it to spin up VMs and customer databases (some are 400GB in size). My internet is 200 Down 20 Up in the new year i wasa thinking of upgrading to 1000 Down 100 Up Just some cheap ones from amazon, when i get my new office (and they are in stock) i plan on getting the mats from LTT as ill need 3/4 different sizes
  21. Dayo

    Work Setups

    Yeah I hate seeing cables, when the builders have finished converting my garage into my office i plan on doing it even better 😛
  22. If you disable the output of headers and go to the image link it should throw an error, I presume you are missing the GD library
  23. Dayo

    Work Setups

    After seeing SRBs setup i thought it would be cool to see others setups, here is mine. I'm not much of a fan boy I use intel, AMD, nvidia, windows, mac OS and linux. Each tool has its uses so why only use half a toolbox 😉 Main Development Setup 2x Dell 2560x1440 monitors Thunderbolt hub so only a single cable needed to charge my laptop/multiple displays 2019 Macbook Pro 6c/12t i7 CPU 16GB DDR4 Ram 512GB SSD 5300M Pro GPU Gaming PC/Windows Test Machine Ryzen 5 3600X 32GB DDR4 3200Mhz MSI 1660 Super 1Tb NVMe SSD RGB! Server Rack 1st Server - (mass file storage) 8Tb HDD Storage 4c/8t Xeon CPU 16GB Ram ESXi with various linux/windows VMs 2nd Server - (VM Server) 1.5Tb SSD storage 600GB HDD Storage 2x 6c/12t Xeon CPUs 64GB Ram ESXi with various linux/windows VMs
  24. When your reading a topic at 10pm at night on your phone white is too much, plus how does the preference on dark theme make it less professional? Great work looks awesome!
×
×
  • Create New...