Jump to content
MakeWebGames

ags_cs4

Members
  • Posts

    544
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by ags_cs4

  1. yeah that goes without saying, plus lot of optimization on the db side, will need to read the code more to see what need to be remade but so far its a gread idea tbh how did i miss this gem 🤣
  2. The idea is great, it can be used on a JRPG game I might use the idea on my fantasy-RPG game, I got already 2D assets for castels, houses, decoration and materials just need to finish all the project i got on hand 🤣 I might try it today after i finish a module im working on
  3. Definitely
  4. 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 😄
  5. 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 ..)
  6. 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
  7. amazing install, looks good tbf
  8. tho i didnt see the code but it wasnt even ready to release back in 2012
  9. 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
  10. https://mccodes.com/viewmod.php?id=104 looks like this is what you want
  11. iv got this on hand tho i need the maker/dev, but from the look of it that would be imposible
  12. mcc is dropped altogether, tho v2 is still sold but no thing new on it
  13. Well done, it been a long time since i saw a browser Football game
  14. looks like you got no chance 😄
  15. @Lithium here is the discord server invite link [https://discord.gg/B5tbq24KQt] you can find us there
  16. 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
  17. 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
  18. 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
  19. you can get the version of MWG and get someone to check it up for you
  20. 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 )
  21. 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
  22. 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">';
  23. 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
  24. 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
×
×
  • Create New...