Search results

  1. D

    Bug Reports

    - I usually test features privately before having them live on the site, usually through local testing like XAMPP, although it can't be helped that bugs arise when making a feature public. I've never had to do it, but I'd only shut down a feature if it's causing a lot of users grief and/or it's...
  2. D

    Mysidia Deluxe

    Custom versions of the script is allowed, but I got his permission before making it since it would be located on a different site (github), this is what he sent me:    So I'm good to go ^^ I hope to get back to working on it soon. Earning money is my highest priority at the moment though...
  3. D

    Account Deletion

    While not there yet, I plan to allow account deletion on my sites. Basically it would delete only that user, and whatever pets they own would be sen to the pound. Private messages wouldn't be affected, since if a receiving user (or the sender) no longer exists then it would say "From: [deleted...
  4. D

    What are the percentages of these?

    It does, thank you!
  5. D

    What are the percentages of these?

    Oof, sorry. $survival is a random number between 1 and 100: $survival = mt_rand(1,100); However, health is it's own variable. I probably should've included it before, but this would be the whole thing:   //survival rate $survival = mt_rand(1,100); $highhp = mt_rand(80,100); $medhp =...
  6. D

    What are the percentages of these?

    My brains not working as well as it should be at the moment, and I can't figure out the percentages these equal to:   if($survival <= 100 && $survival >= 60){$code;} //high HP elseif($survival < 60 && $survival >= 20){$code;} //medium HP elseif($survival < 20...
  7. D

    Breeding System + Newborn Survival Mechanics + Tumblr!

    I think this would be the closest together I've had news posts for a while -- for the same site at least. The breeding system is now complete for player-to-npc. Player-to-player and npc-to-npc still needs to be worked on, but about 70% of the code would be the same so it's not that much more to...
  8. D

    Mysidia Deluxe

    I haven't really made any changes this week since I'm working on my site, but next week I should be able to spend some time on it.
  9. D

    Discord - Worth Having for Game Development?

    I currently use Discord to keep people updated on Wild Souls as I work on it. I find it great for talking to the community, and they definitely appreciate the transparency. Every time I work on the site I post constant updates in a dev blog channel so they can see how the game is progressing...
  10. D

    Explore system!

    Thank you ^-^ Yeah now I'm using a custom solution over twine. (since I always wanted a lioden-esque explore system for the site) I'll probably use Twine for something else though. I got it working on the site, but I decided it wasn't really what I wanted.
  11. D

    Game Economies? How to Stop Them From Getting Out of Hand?

    It's always a good idea to have a wide range of prices, rather than having everything expensive (or everything cheap). For example you might have 3 versions of pet food: a cheap one that fills about 10%, a moderate one that fills about halfway, and an expensive one that fills it completely. It...
  12. D

    Explore system!

    Thank you both!
  13. D

    Explore system!

    Throughout its development, Wild Souls has gone through a lot of explore system ideas that were scrapped. The biggest one being the Twine 2 explore system. However, with some help, the final version of the explore system is now functional! If you're in the official discord, you've probably seen...
  14. D

    Mysidia Deluxe

    There's actually another battle system made for mysidia using AJAX (and it allows players to battle other pets). It's not real-time, but it is an improvement. I'll have to ask permission to include it.
  15. D

    Mysidia Deluxe

    I merged it, also I sent you an invite as a collaborator. For the updates concerning composer and auto-loading, could you pull from the composer branch from now on? I'd like for any possible bugs caused by the change to be smoothed out and stuff first before anything is merged into the master...
  16. D

    Mysidia Deluxe

    Responded to your PR on github!
  17. D

    Mysidia Deluxe

    Actually I was working on restyling the installation screens and, well, it looks exactly like the mockup (colors and all) xD It's unfinished though, and I plan to add images/examples to help guide the process, especially the DB setup screen. The gif, png, and jpg folders were actually...
  18. D

    Mysidia Deluxe

    Oh that's what composer is for! I can include it, but I don't really think it'll be used in the first release. The only libraries being used at the moment are JQuery, Bootstrap 4 (which has it's own dependencies like popper.js), and Materialize (and FontAwesome, if that counts), and those are...
  19. D

    Mysidia Deluxe

    Could you explain more what that means? ^^; Is it basically just move all of the files into a subfolder called public and work from there? I don't have the paid version of github, so I can't make any parts private if that's what you mean. Never actually used composer, and looking at the...
  20. D

    Mysidia Deluxe

    Helping test features would help a lot! At the moment I test it with XAMPP, but several people are more likely to find bugs than one person. So if you ever find the time, it'd be helpful to clone/download it and test it out to help find any potential bugs. Then they could be reported in the...
Back
Top