• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.
S
Reaction score
2

Profile posts Latest activity Postings About

  • Good job man, I am sure it will help a lot of people out! Well, I am not to sure about images, as I never bother to include things like that, as it would send the size of the download WAY up, think about it, 251 images added into the program. A lot of space... Thanks for the credit by the way, it's nice to get a shout lol! A wild pokemon editor for Crystal would be good, go for it, theres not much point making one for G/S though as GoldMap already changes this. But Crystal would be useful. You could be YoMama the Crystal developer eh?

    To make it universal, you have to read the header of the ROM, then tell the program what to d for each header. Basically, you can do it with ReadHEX, then store the returned value as a string...
    sure man. here it is -
    http://fs02n3.sendspace.com/dl/15294c47fde2c80f8c74b407d8b52964/485a7fe94f4a7367/wglj3k/Crystal%20Version%20Leader%20Editor.exe.zip

    also, one more question (i know, it seems like they never stop coming. lol) i was wondering if there is any way to dynamically change an image according to user input (e.g. the user chooses bulbasaur so a bulbasaur picture appears)

    i also credited you and darthatron in the program.

    i'm going to start on a wild pokemon editor for crystal, and try to make it universal. but to make it universal, i need to know what ROM the user chose (e.g. Pokemon Gold.gbc), and i'm not sure how to do this.
    No problem mate, I hope your thread is accepted soon! Could you send me a link to your program to download, I wouln't mind checking out you work, and I don't want to wait for ages lol. Just PM me it if you don't want others to download it yet... Thanks!
    Well, offsets are different so all the stuff you researched would have to be re-researched for the other games, so it would be a lot more work. Threads take quite a while to be approved, my toolbox took about 2 days!!! Well, just find a gap where a tool would be useful and see if you can make it! I can't really give away ideas I have come up with, as I want to keep releasing stuff too xD!
    lol i noticed that. i looked at your site a little while ago. however, this tool is not for g/s. it's just for c. for some reason when you load a g/s rom it enters crazy crap like level 93 Zapdos with Water Gun. i'll try to make a universal one though. do you have any idea why my thread hasn't been approved yet? also, can you give me some suggestions of tools to make? i could make some tools that other people have already made, but that wouldn't be too original. ;)
    Thats great! Well done for figuring out VB, in a pretty short amount of time, you know, I am working on a tool just like that but for G/S/C! Never mind!

    I hope to see more stuff from you soon!
    i messed around with it a LOT last night, and found out a lot of stuff. the reason it was greyed out is because i didn't click the registry thing. i understand the formulae thing now. and i now know how to add an icon. i made a tool last night that allows you to edit the gym leaders, elite four, and red in crystal version. you can edit the pokemon, the pokemon's level, and the pokemon's four attacks. i posted it in the toolbox board. waiting for it to be approved. it's in the thread yomama's Toolbox. thanks for all your help swampert. tell me what you think of my first "official" tool.
    Ok. When you say that the listindex = I, that is a formulae. It works for every one in the list, so if its 10 or 500 long it doesn't which one you click, you don't have to write code for every item in the list.

    If you want to read say 5 pokemon's data from a list, and each pokemon has 2 bytes then, the code would be

    If listbox.listindex = I Then
    ReadHEX, LoadedROM, ([offset of first pokemon] + I * 2), 2 'As I is zero in the first case, you only need put where the string of data begins...

    This obviously only works for data that follows each other. If there is something in between you cannot use formulae.

    I hope you understand, as I cannot simplyfy it much furthur (I'm rubbish at explaining xD)

    To add an icon, click on your form and go to 'Icon' in the editing box. Do the same for each form you have.

    I don't know why its greyed out, have you saved the project?
    so in your example of listbox.listindex = I, would i replace the 'I' with a number? wow i feel like such a newb. lol. hey can you give me an example project to work on? kinda as my first "official" tool?
    Hey thats great you got it going! Well done! I'll be expecting to see some stuff from you very soon...
    To create an exectuable in VB6, its under the file menu in 'make Project1.exe' or whatever your project is saved as...

    To get VB to read from a user click in a listbox, use IFs. and start it with this:

    Private Sub listbox_Click() 'Where 'listbox' is the name of your listbox, obviously...
    and then something like:

    Dim I as Integer

    listbox.listindex = I

    If listbox.listindex = I Then
    ReadHex LoadedRom, &H194403 + I

    Basically you have to make a formulae that works for reading all the data. Download my PokéEdit DP and look at it. I used this function in there, and because each Pokémon's data took up 44 Bytes and Bulbasaur starts at an offset, then the code would be for the first byte of the string of data, which I think is base HP,

    baseHP = CInt("&H" & ReadHEX(sLoadedRom, &H1C15A08 + 44 * L, 1))

    I hope you understand this 0_o
    hey man. i finally got it working! it's not much, all it does is change schoolboy joe's first pokemon, but it's a start. but i was wondering - how can i get the hex info and display it according to what the user clicks in a list box or combo box? also, i feel really stupid for not knowing this, but how do i compile my project into an executable file?
    @Mike: Thanks, I'm glad you think I'm good:nervous:, are you on working on anything at the moment? I LOVE startercat. The UI just kicks the arse of the other starter editors!!!

    @Reaper: Well what are your ideas, (nothing too unreasonable xD)
    Haha, well Reaper, I don;t think you appreciate how hard it would be to make a program like that. I don;t class myself as much of a programmer, and quite frankly it is just easier to follow the existing tutorials and use unLZ.GBA and other existing tools.

    I know it's a pain, but I don't feel that I could make anything that would work for this. Sorry...
  • Loading…
  • Loading…
  • Loading…
Back
Top