Jump to content

Mighty Professional

Ascending Contributor
  • Posts

    231
  • Joined

  • Last visited

  • Days Won

    33

Everything posted by Mighty Professional

  1. Not bad, I have already bought some of those assets at full price
  2. Where is the API documentation located? I looked here "https://www.freemmorpgmaker.com/docs/en/Welcome.html" but could not find it.
  3. Im a basic bitch at heart.
  4. oh for SURE, I think panda should add it personally.
  5. what....the... FUCK. I mean I dont even know where to begin. Dissing pumpkin spice is bad enough, but eggnog. Da fuck wrong with this generation.
  6. Eggnog is available at last!!! Go get it now!! Why are you still here??????
  7. As someone who uses UMMORPG 2D, I feel like it is better for people who already know how to program. If you do not and have no interest in learning then intersect is probably a much better choice. Unity is the same way, its not meant to be a no coding solution. There is some drag and drop scripting languages that can help but its going to be tough and your going to have to learn a lot. But thats game development for you, you will have to evolve. Nothing will ever be 100% done for you.
  8. TeamCity! Getting all professional! New bug tracker looks nice, would have been cool to migrate the bugs but I guess a lot of them arent relevant anymore.
  9. Anyone watch 30 rock here?

  10. Nope sorry man, no one uses this site anymore.
  11. Sometimes you just need to look at it with fresh eyes. So many problems I struggle with all night then solve it in 5 minutes the next morning.
  12. "//this.dgMissingSystems.Rows[dgMissingSystems.Rows.Count].Cells[1].Style.BackColor = Color.Red;" That didnt work? It should have. Though you probably dont want count for the first index. What happens if you just put this.dgMissingSystems.Rows[1].Cells[1].Style.BackColor = Color.Red; Or how about this.dgMissingSystems[1, 1].Style.BackColor = System.Drawing.Color.Red;
  13. You just want to get all the stuff in a list? Underneath: IEnumerable < XElement > games = root.Elements(); put List<string> NameList = new List<string>(); List<string> RomList = new List<string>(); Then instead of MessageBox.Show("Parent: " + pName + " Rom: " + pRom); Change that line to NameList.Add(pName); RomList.Add(pRom); Then at the end your list will have all the values.
  14. I dont understand how the counting in this thread works anymore
  15. That sounds like a pretty cool setup! I might try this if I leave github. Good to see you to! Its nice to see some old names around
  16. Created the quest menu, made the create character menu more like the other UIS.
  17. Just thought id let you know that I am using some of these! Thanks!
  18. Ill do my best. No the ingame sprites and tiles are just what came with the addon. I will be swapping them out for sure.
  19. Thanks starlord! I think I know the issue with the music. I just need to disable it on server builds or not add that scene to the server project. Ill try to keep you updated!
×
×
  • Create New...