Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
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.
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...
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))...
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...
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...