• 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.

Recent content by mimo-231

  1. M

    [Script✓] Adding Custom NPC Dialogue

    It's pretty simple. You need to use the command msgbox. If you have a small text u can put it in the braces like: msgbox("Hey there", MSGBOX_AUTOCLOSE) waitmessage If the text should be longer you need to make a text script like: msgbox(scriptname, MSGBOX_AUTOCLOSE) waitmessage text...
  2. M

    [Graphic✓] Emerald - Adding new overworld sprites

    Im following this tutorial and it works for me: https://github.com/pret/pokeemerald/wiki/Adding-new-event-object-or-overworld-sprites
  3. M

    [Script✓] [pokeemerald] Script for random Weather changes

    Yea that post/code was a mess haha sorry for that. Thank you for the input! I edited the post and changed the script, i hope both are better now
  4. M

    [Script✓] [pokeemerald] Script for random Weather changes

    Hey there! This Code changes the Weather randomly after the player accumulates a specific number of steps (5 Steps in this example). I added the script in src/overworld.c. void RandomWeather(void) { if (GetGameStat(GAME_STAT_STEPS) % 5 == 0 && IsMapTypeOutdoors(gMapHeader.mapType))...
  5. M

    [Other] Broken Mart & Movement

    Thanks a lot! The movement works now, i didnt thought that it would be so easy haha. Yea i changed some things to marts and items and even tried to undo the changes when the issue appeard but that didnt helped. But i guess ill just try that again maybe i missed something. Thanks again for your...
  6. M

    [Other] Broken Mart & Movement

    Hello everyone, while working at my Pokemon hack i discovered 2 Bugs/Problems, that i cant seem to fix. I am trying to fix this things for weeks and this Thread is my last hope. I hope i can describe them well enough. Im using the Pokeemerald-expansion as a base. MARTS So the first problem...
Back
Top