Jump to content

Cheshire

Super Contributor
  • Posts

    935
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Cheshire

  1. There is not, and I have no intention of updating it as is. People are free to use it as a base to try and make their own systems though.
  2. If I remember, you may have to compile one of the projects manually once before compiling the rest of the project. I'm not sure which that is. But it's looking for Intersect.Building
  3. I'm just going to quote myself again here, because you're not really providing any information to build off of with an answer.
  4. I think I've had to manually compile the Core and Networking libs before doing a full project before, but that is from memory of quite a while ago.
  5. Sorry but that sounds a little bit vague to me. What are you trying to do and what have you managed to do so far? And what are you stuck on exactly?
  6. Yes, although the visual aspect would have to be entirely custom made. Nothing in the event system would stop you from generating a random number and granting rewards based on that though. It just wouldn't be very visually appealing given that it is a primarily text based system.
  7. I think you may need to provide a little bit more information as that looks like it just shuts down the instant it loads up.
  8. I believe you should be able to change the font for the chat window somewhere. You'd have to search for how to import your own fonts though, there should be a tutorial on the forums somewhere.
  9. I don't know what denwer is, but the mysql server itself can be anywhere you want. I'd suggest keeping it close to your game server to reduce query latency though.
  10. By default the server uses sqlite which is a file based database system. That's why unless you switch to mysql you won't have to set anything up. If you run the migration command and give it a server to connect to it'll move the data over and import it automatically.
  11. It's not my hosting, Jc does that and it's entirely his system. But there should be a guide on the related site on how it works though. And the short of what to do to locally host a server is basically as follows: - have a computer on 24/7 - run intersect server.exe - If the server says it can't be reached from the internet, portforward the port you've configured for the server (may have to look up how to do this for your modem/router as it depends on the make and model) - point your client configuration to your Wan ip address. After that you'll have to package up your client and distribute it through some means again. Be it a website, itch.io, steam or whatever other platform you want to use.
  12. Server\resources\ playerdata.db gamedata.db Those are the sqlite files. I would highly suggest migrating to mysql for a live game however. (Check the server command migrate for more information)
  13. You use the same naming conventions for them as sprites. So paperdoll.png turns to paperdoll_attack.png for the attack frames.
  14. Regarding the server host, I don't think you're understanding what a server host is. It won't host your files but just your game server. Itch and steam can only host your game files. Regarding where the database goes.. It stays with you. A nything in the server folder will stay on the game server and players will never see any of those files. The client folder will go to the players and need some place to be updated from through a webserver or something.
  15. In that case, if hosting the server on your own system is out of the question the easiest way would be this: An alternative would be to set up your own VPS and configure, maintain and secure it though that will likely be more expensive and time consuming. Regarding distribution, you'll want some place to host the files and updates and configure a few things. The general concept is explained in the documentation: https://docs.freemmorpgmaker.com/en-US/deploy/distributing.html#preparing Depending on what you choose to use (website, itch.io, asset encryption or no) and what you intend to use to get your client across there might be some minor tweaks here and there you need to do yourself. If you have more specific questions we could give more specific answers.
  16. Both of these questions will depend heavily on where you intend to host the game as well as how you wish to distribute it. So what's your plan?
  17. Not the client configuration, but the hotbar json file will definitely need to be updated to encompass the new slots.
  18. Thanks for the work put in and good luck on your future work with your studio Kibblez!
  19. This is not a feature we support or intend to support officially at the moment given the amount of ways this could be implemented. Of course, you or anyone else is free to try to add it. Or even have people working on making it possible together.
  20. Could you post the full error? Because that doesn't really show us anything that's happening.
  21. This is not possible in a plugin because it's handled in areas plugins can not touch. (plugins can add code, they can't change existing code) You'd have to change the editor form inputs to allow higher values and the validation methods in the server.
  22. Unfortunately there's no real reliable way to filter damage from just one player. The engine does not support and isn't made for pet combat by default.
  23. I think that's the music folder. Did the sound and music work before this?
×
×
  • Create New...