Jump to content
MakeWebGames

ags_cs4

Members
  • Posts

    545
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by ags_cs4

  1. lol they come from time to time, at least this reply looks like a solid answer tho, the link looks sus but ther than that i think what is said is right 😄
  2. what i mean is a way to install or add new modules (ex: homes, educations...) to the current engine without any core edit GL: GL achived that but v2 was perfect, Tho i still sometime you edit something here and there but that just to make the core more easy to work with my ideas example of the module folder that contain any thing related to the mod so you wont need any edit and one thing is you can activate or disable any mod from acp with ease you can even upload a mod and let it sit in installing till you want to install that EZ RPG: ezRPG tried that but it wasnt that good as the files tpl (smarty), logic (modules) , hooks each was in a diffrent place wich will make it hard to work on with no easy way to move a mod files in one go even tho the module tree exist but its not geting used much than storing the logic file (index.php) after looking around on my files i found another engine with some modularity called NWE (New World Engine), this engine tho ididnt play with much but i think have some potential (languages, modular, themes(templates), menus ..)
  3. i dont think its worth it any more, the code need to be modular like GL/ezRPG with hooks and a good template framework maybe smarty or handlebar like GL or any other so that the tpl is dont have any logics
  4. amazing install, looks good tbf
  5. tho i didnt see the code but it wasnt even ready to release back in 2012
  6. Here, i uploaded it here, while we here thanks @sniko for your amazing codes over the years it was a real learning resource for me and many other devs that started on MCC. Advanced Property System Version 1.2.1.zip
  7. https://mccodes.com/viewmod.php?id=104 looks like this is what you want
  8. iv got this on hand tho i need the maker/dev, but from the look of it that would be imposible
  9. mcc is dropped altogether, tho v2 is still sold but no thing new on it
  10. Well done, it been a long time since i saw a browser Football game
  11. looks like you got no chance 😄
  12. @Lithium here is the discord server invite link [https://discord.gg/B5tbq24KQt] you can find us there
  13. I havent said its gonna be a 100% secure hens why i said to some point You can set the accepted types of sql input on PDO like int or str, And edit the form inputs and add to them your filter function it depend on who want to take on the task
  14. hmm i dont i saw one but even tho if it is its not 100% secure as the way the sql library is old school so one of the main thing im sure you need to do is rebuild the sql query to use PDO that will add layer to protect from sql injection to some point and on top of that you will need a filter for all your inputs
  15. you add that to the cronjob on your cpanel, as for the how see on youtube you will find tutorials on how to do that
  16. you can get the version of MWG and get someone to check it up for you
  17. nice idea, it can be simplified to just an image path ex: theme/NAME/thumbnail.png and posted directly with out any edit to the theme.json (to make it easy to upgrade the core) oh while we on the topic @Dayo the view dont have any function (i removed the button as i see no need to see the theme details that dont exist xD )
  18. hello all i got contacted today about a bug on the hospital mod that @Dayo released and its wierd that no one take note on, while fixing that bug i found an even bigger bug than just that can be exploited by players for money any way the bug it only triggred if the Health is under 0% as it can give the player money if the health is negative (DMG is over the Rank Max Health) so to fix it you have to add a simple code find $healthPerc = round(($rank->R_health - $health) / $rank->R_health * 100, 2); under it add this if($healthPerc < 0) $healthPerc = 0; And to fix other bug that show 0 time unstead of 2h (default setting) find $time = 0; $money = 0; Replace it with $time = $timeToFull; $money = $moneyToFull; and that should fix that all
  19. you echo is not closed and you cant have the string opening tags like that, you should have that like like this echo '<hr />Your Personal Notepad:<form id="notepad" method="POST">';
  20. tbh iv never used this engine but i was checking on it from time to time i will get localhost version and toy with it and see so far i like it tho i was confused at how some things are made but it make sense in some cases the engine is solid good module managment, with hooks, crons and some other candies here and there if the engine can be modernized i can therow a default theme to make the experience more enjoyable :D
  21. Amazing well done, is that made on figma or adobe XD? i understood and told my self that i suck at theme designs long time ago and i see that it was right mindset 😂😂😂 Great word was keeping an eye on it but as always i have the same complain for the color scheme and the red on green is not right too, but other than that i like the old school
  22. hey there welcome back glad to see ppl coming back to the community i would say check @Dayo game its interesting and out of the box 😄
  23. lol IBP have a spam filter but still they bypassed that xD
  24. thats so true, what i found to be so facinating in GL engine is the hook system i recently did some work with personal Stats using hooks and it was amazing so i this idea might be good if you can make it but one thing is that you have to write each formule manulay and add it as a hook but that way it will be parsed the right way but what i think is best in this way is its more flexible you can make a calculation and pass that to the formula not just static data from the Database new hook('crimes_formulas', function () { return [ 'name' => 'bank haking formula', // can pass more data not just userdata to the function "formula" => function ($user, $data) { // example of MCC formula ((IQ*0.8)/2.5)+(LEVEL/4) // converted to GL $value = (($user->info->US_iq * 0.8) / 2.5) + ($user->info->US_level / 4); return round($value); }, ]; });
×
×
  • Create New...