Jump to content

evandixon

Administrator
  • Posts

    5910
  • Joined

  • Last visited

  • Days Won

    84

Everything posted by evandixon

  1. Don't forget to set pkm equal to something. You cannot set item x of an array equal to something if the array is null. Try this: Dim pkm(900 - 1) As G5_PC_PKM What this does is make pkm an array with 900 items. (The -1 is because the number in the parentheses specifies the last index of the array, not the number of items.) But that code won't run unless you replace this: If DialogResult = Windows.Forms.DialogResult.OK Then with this: If SavLoadDialog.ShowDialog = Windows.Forms.DialogResult.OK Then DialogResult is short for Form1.DialogResult. Form1 isn't being treated as a dialog, so its dialog result will never be OK. ShowDialog displays the form, waits for it to exit, then returns the dialog result.
  2. It used to be where we find you, but lately that hasn't been the case. Ask Alpha, if you think you're qualified. You have potential to be a mod, but I don't think you're qualified. Yet. Be sure you beef up your searching skills to be able to answer your own questions, and the questions of others.
  3. Encryption = security. Break the encryption (which is actually illegal by US law, by the way), and you're in.
  4. What moves do each have?
  5. Most sites ban that kind of thing because it can easily lead to cheating, and they don't want to be a part of it. We have strict rules about cheating while allowing editing. And yes, there won't be an editor for Gen 6. At least until it's out.
  6. Use Pokegen to make a code that counteracts your problem.
  7. Posts are in order of the time they were posted. There's also about 10-15 posts per page. Newer posts are on different pages.
  8. We know. But I'm sure hackers will try anyway. Difficulty just makes the accomplishment more meaningful.
  9. How are you playing the game? Cartridge, flashcart, or emulator? If not cartridge, which flashcart or emulator?
  10. Hello JoPe! Since you're in a Pokémon forum, I presume you play Pokémon while partying all night long?
  11. Can you attach them to the post?
  12. Publish a few Pokemon editing related programs. So basically, finish Project Overload (at least so that it functions), and make one or two more programs. That, or make Project Overload very feature rich to the point people say "Wow, that's a great program!".
  13. SavFileDialog.DialogResult returns the result of the SavFileDialog. In order for it to do that, it has to show the dialog, which it does. Like I said before, it is better for manageability and your sanity if you use nested loops. In case you're not that familiar with it,
  14. The wondercard can specify whether or not a Pokemon can/will be shiny. Check the Celebi wondercards.
  15. "That"? Please be a little more specific.
  16. A few things to note: -In SaveFileToolStripMenuItem_Click, you're referencing DialogResult. That's the dialog result of Form1, not of the open file dialog. Use "If SavLoadDialog.ShowDialog() = Windows.Forms.DialogResult.OK Then" -Your images weren't uploaded to GitHub, so the solution can't find the images. -Why not put those images in a separate folder for easier navigation? -Don't be afraid to put different classes in different files, for easier management. -Try moving the code in the If statement in SaveFileToolStripMenuItem_Click to a separate function that returns a List(Of G5_PC_PKM). And as codemonkey85 pointed out, it will be easier on you if you use a nested loop. Right now, if you need to change the procedure, you'll have to replace it in 24 or 25 different places. If that doesn't take away your sanity, nothing will!
  17. Are you getting a window that says something like "Pokegen has stopped working", or is it simply closing? If it just closes, make sure the language files are in the same folder, then check to see if there's a *.dmp file.
  18. What do you do before it crashes?
  19. You don't. But you can change the ability after evolving using Pokegen.
  20. Moved to General Gaming since SSB isn't considered a Pokemon game.
  21. IRC term. In this case, it means nothing. [Edit] To clarify, some IRC networks require that a user has voice to post. PP's channel doesn't have that requirement, so having voice doesn't really have a benefit, except for looks.
  22. Uh oh. The leader of an evil organization is here! Oh, wait. I'm in the Evil League of Evil. Why am I panicking? Anyway, welcome to the forums! If you haven't already, you can post your ROM hacks in our ROM editing section. You might just earn our new ROM Hacker badge.
  23. PC anywhere (page 31): http://projectpokemon.org/forums/showthread.php?24541-B2-W2-AR-Codes&p=163746&viewfull=1#post163746
×
×
  • Create New...