Blah's Profile Picture

Blah

Free supporter

Community Supporter

Visitor Messages

1276 to 1290 of 1440
  1. karatekid552
    February 7th, 2013 2:48 PM
    karatekid552
    I didn't plan on it. I knew there was something up, but I assumed you knew what you were doing:)
  2. karatekid552
    February 7th, 2013 1:02 PM
    karatekid552
    Haven't we already discussed this?:p
  3. karatekid552
    February 7th, 2013 4:23 AM
    karatekid552
    7:22 here, you live right above me you know?
  4. karatekid552
    February 7th, 2013 4:10 AM
    karatekid552
    I thought I noticed that, but my reading of ASM isn't perfect so I thought I was just missing something.
  5. karatekid552
    February 7th, 2013 3:35 AM
    karatekid552
    It's not bad, it looks like it would work. Now it just loads the choice in a var and you just remove the Pokemon in the var.
  6. karatekid552
    February 6th, 2013 7:14 PM
    karatekid552
    Ahh, but if you manipulate his code and learn how each part of it works and extract only the parts you need, you are learning correct?
  7. karatekid552
    February 6th, 2013 6:37 PM
    karatekid552
    If you consider that cheating, then everything you have ever done with rom hacking is cheating. Who discovered the commands and their uses? Who made advance map? Who wrote the tut's that you learned ASM from? Here we build off of what others have learned. If we always try to do everything by ourselves, it takes too long and meanwhile everyone else is moving onto new discoveries and major changes.
  8. karatekid552
    February 6th, 2013 6:35 PM
    karatekid552
    It's not cheating, however, I do know how to at least pull out all of the levels for each of your Pokemon. The data isn't encrypted, so I know how to load it easy. Then, you could just store it in vars and through a bunch of compare commands end up with the lowest level Pokemon.
  9. karatekid552
    February 6th, 2013 6:16 PM
    karatekid552
    There is a few, I found one tut that did it with hackmew's and the day care script.
  10. karatekid552
    February 6th, 2013 6:15 PM
    karatekid552
    Oh, and I found the source... Download his engine, then navigate to source->wild hack->same_level_hack.txt

    It contains haw he got the lowest level, just to give you a head start.
  11. karatekid552
    February 6th, 2013 6:09 PM
    karatekid552
    I will look in his source code and see if I can find the routine. Have you seem HackMews take away Pokemon script?

    And I get the point, but let's be honest. I have been programming for a little over a month, I can wait a few years for that number to process, lol.
  12. karatekid552
    February 6th, 2013 5:54 PM
    karatekid552
    No, however in JPAN's engine you can use a var to determine the levels of wild Pokemon based upon the levels of your own Pokemon, and one of the options being your lowest leveled Pokemon. If you could get a hold of just this section of code, you could manipulate it for your own purposes.



    Considering I have no formal training, just a 1991 copy of programming in C? haha

    Now, what do you mean by order n^2? I may be smart, but I can't know what I haven't learned:p
  13. karatekid552
    February 6th, 2013 5:39 PM
    karatekid552
    Getchar= get characters- I used it to store the binary number in an array

    scanf= take user input and store in a variable:)

    This took all of my brain power, lol. With C I haven't been writing it as much as I have been just learning to read it to help with learning other languages.
  14. karatekid552
    February 6th, 2013 5:06 PM
    karatekid552
    It's is inefficient because yes, I am building from scratch and my knowledge is very basic. (I actually typed this in the notes app on my school ipad:)) I just got your message... After I finished.... I only have 1 precaution, and that is against different bases.

    Spoiler:
    convert_to_bin ()
    {
    do
    {
    converted_number[index] = number_to_convert % 2;
    ++index;
    number_to_convert = number_to_convert / 2;
    }
    while (number_to_convert != 0);

    printf ("Converted number is ");

    for ( --index; index >= 0; --index)
    {
    next_digit = converted_number[index];
    printf ("%c", base_digits[next_digit]);
    }
    printf ("\n");
    }




    convert_to_dec ()
    {
    char num[500], ch, number;
    int i = 0;
    int length;
    number = 0;

    while ((ch = getchar (number_to_convert)) != "\n") {
    do
    {
    num[i] = ch;
    ++i;
    length = i
    }
    }

    i = 0

    while ( i <= length)
    do
    {
    number = number * 2 + num[i];
    ++i;
    }

    printf ("Converted number is %d", number\n);
    }




    Main ()
    {
    static char base_digits[10] =
    { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
    int converted_number[64];
    long int number_to_convert;
    int next_digit, base, index = 0;

    printf ("Conversion between decimal and binary.\nNumber to be converted? ");
    scanf ("%ld", &number_to_convert);
    printf ("Which base is this number in? Please type the integer value: ");
    scanf ("%d", &base);

    if ( base == "10")
    convert_to_bin ();
    else if ( base == "2")
    convert_to_dec ();
    else
    printf ("Invalid Base, restarting program....\n\n\n");
    main ();
    }


    Because I'm on the ipad, I was unable to test it, so I'm hoping it is correct:p

    The only built in functions I used were getchar, scanf, and printf. Those really didn't do much for conversion anyways.
  15. karatekid552
    February 6th, 2013 3:47 PM
    karatekid552
    Spoiler:
    Main ()
    {
    static char base_digits[10] =
    { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
    int converted_number[64];
    long int number_to_convert;
    int next_digit, base, index = 0;

    printf ("Number to be converted? ");
    scanf ("%ld", &number_to_convert);
    printf ("What base number would you like? Please type the integer value: ");
    scanf ("%d", &base);



    do
    {
    converted_number[index] = number_to_convert % base;
    ++index;
    number_to_convert = number_to_convert / base;
    }
    while (number_to_convert != 0);

    printf ("Converted number is ");

    for ( --index; index >= 0; --index)
    {
    next_digit = converted_number[index];
    printf ("%c", base_digits[next_digit]);
    }
    printf ("\n");
    }
    It won't let me use code tags:(

    Here is how to convert from dec to binary. It has no precautions and boundarys yet. I just learned, as in 2 minutes ago:p, how to convert back. I will update this program with that conversion and boundaries soon.

About Me

  • About Blah
    Quick Self-Introduction
    Still not famous
    Biography
    Leet rom hacker
    Interests
    pretty avid shitposter
    Location
    Unknown Island
    Gender
    Male ♂
    Also Known As
    FBI
    Favorite Pokémon
    Charizard
    Typhlosion
    Snubbull
    Corphish
    Master Race Spinda
    Battle Server Name
    Definitely not FBI
    Discord Nickname
    Blah
  • Signature
    ...

Statistics

Total Posts
Activity by Forum
Visitor Messages
Blog
General Information
  • Join Date: January 19th, 2013
  • Referrals: 1

Badges

Badges

Emblems

Helping Hand
This member has done some kind of service to PC; Or maybe they help out other members whenever they get the chance.
Awarded: January 16th, 2015 2:41 PM
Level Up!
This member has really surpassed their newbie days and has become a wonderful asset to the community! Congratulations!
Awarded: April 9th, 2015 8:26 AM
Community Supporter
These helpful members donate their money to help make PC a better place.
Awarded: April 17th, 2016 9:01 AM
My Goodies
You manipulated me into giving you this, didn't you?
Awarded: September 20th, 2016 12:52 AM
#1 Scriptwriter!
This person came first in 2010's Get Together's Scriptwriting Competition! Awesome!
Awarded: September 28th, 2016 9:20 AM