• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • 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!
  • Which Pokémon Masters protagonist do you like most? Let us know by casting a vote in our Masters favorite protagonist poll 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.

[Archive] Pokemon Essentials: Starter Kit for RPG Maker XP

Status
Not open for further replies.
Somebody can say how I can do that in my game, You can find pokemon shiny how the original pokemon games?

Thanks
 
Sorry for the nub question, but I'm just learning this stuff.

I want there to be a item(So instead of a pokemon, I want it to be a boat, so let's just name the item boat for now.) that does what surf does(takes you across water) and to make surf a normal TM, also be a key item.

Help, please?
 
@thedudemister: I don't know what you're talking about. If you mean the font, well... just delete the font files.

@marfil92: Your question has already been answered, there ARE shiny Pokémon, you don't have to do anything.
 
Does anyone know if it is possible to make a wall animation
which in the wall crumbles and light shows up
 
@thedudemister: I don't know what you're talking about. If you mean the font, well... just delete the font files.

@marfil92: Your question has already been answered, there ARE shiny Pokémon, you don't have to do anything.

What I am asking, is there a way to make the text look more clear and not so pixelated when you are viewing the game 480x320? Just like the text that I am typing right now. Thank you.
 
480x320 is SUPPOSED to look pixelated, since the screen is double is normal size. There's no way to make it look good without making it look terrible in 240x160.
 
I'm not sure if this was stated. I could not find this information anywhere.

I'm not able to make the fishing animation work. In fact, not even the default animation (the lass) works. All the character does in the fishing animation is pretty much spin around slowly.

Where am I to edit this to fix it. Or how?

Thanks.
 
@Kaitsu-Gohan: I'm not sure why your trainer sprite is spinning, but the fishing animation is a bit of an issue. It's a five frame animation, which uses the whole of the top row and the first frame of the second row. Bacause of the five frame animation, the fishing sprite will only face one direction whilst fishing. It may be that your spritesheet has the frames in the wrong order, showing the player facing different directions. If this is the case it would need to be changed so that the animation went from left to right, rather than top to bottom or whatever other order it may be in.

The code COULD be changed so that it divides the width of the file by five rather than four. That way you would look like you were fishing in the direction your character was facing, rather than fishing 'down' all the time. I've not looked into it as it was something I was planning on doing much later in my project.

If your sprite has the frames in the right place, then the issue gets more confusing. Have you changed any code at all? If not, then the only explanation I can think of is a Munchlax eating away at your PC from the inside out.
 
I guess I need to explain this a bit better.
The sprite "does not" change to the corresponding file called, "fishing000.png".

He just spins, as if you were hitting the directional keys.
I guess I should ask, what file does the animation load from? Certainly it's not fishing000.png.

Also, no I have not edited any coding. I've actually redownloaded.

EDIT:
Ok, maybe it's not a spin.
It's more of:
Down Direction
Left Direction
Original position

EDIT:
Hmm, that sounds right.
First 5 frames.

Though, it does not load from "fishing000.png", just the regular trainersprite. (or at all)
 
Last edited:
I guess I need to explain this a bit better.
The sprite "does not" change to the corresponding file called, "fishing000.png".

He just spins, as if you were hitting the directional keys.
I guess I should ask, what file does the animation load from? Certainly it's not fishing000.png.

Also, no I have not edited any coding. I've actually redownloaded.

EDIT:
Ok, maybe it's not a spin.
It's more of:
Down Direction
Left Direction
Original position

EDIT:
Hmm, that sounds right.
First 5 frames.

Though, it does not load from "fishing000.png", just the regular trainersprite. (or at all)

It's a bug in the scripts, not anything wrong with the file. Find the setDefaultCharName method in Walk/Run, and replace it with this:
Code:
def setDefaultCharName(chname,pattern)
 return if pattern<0||pattern>=16
 @defaultCharacterName=chname
 @direction=[2,4,6,8][pattern/4]
 @pattern=pattern%4
end
 
It worked. Thanks a lot. =)
I also noticed you're on rmxp as well. I kinda asked there too. So you might just want to ignore me there....

Anyways, thanks a lot. I appreciated it.
 
Hi guys.

This is mainly a question for the scripters out there. As some of you know we've been attempting to add all of the D/P moves/abilities. Things are going well but there's now a problem. Our moves count has gone over 450 and when the debug 'teach moves' option is selected, entries higher than 450 aren't shown.

I've managed to make a workaround by having a move tutor event on the map that the testing takes place on, but it's adding to the workload and if anyone could tell me how to get the missing moves to show up then I'd be really appreciative.

Merry Christmas to everyone =)
 
When i deleted the lines that say that you can select the character as a girl. It shows a error message.Can someone help me.
 
I like your Starter Kit very much but but :cer_cry: Now there is a error :cer_cry: Unspected File maybe you can help me :cer_cry:
 
Scuse the layout, I've split the post into two to cover two different things.

@ross61: Could you post the error? Is the line 'Script: pbChangePlayer(0)' still in there? If not then you won't have a character at all as that was the 'boy'. If it is still there is it in a conditional branch that it's impossible to choose?

Ok, next up I think I've got a bug to report. In PokeBattle_Move, around line 360 there is a line of code that reads

if attacker.hp<=(attacker.hp/3).floor

I think this should say

if attacker.hp<=(attacker.totalhp/3).floor

This applies to damage multiplication with the abilities Overgrowth, Torrent, Blaze and Swarm.
 
i deleted this lines:
;["Are you a boy or a girl?;
;[ [ "
BOY" GIRLi
;[ i
;["#initializes player 0 (PlayerA);i;iqo;
and also can someone help me with this
[PokeCommunity.com] [Archive] Pokemon Essentials: Starter Kit for RPG Maker XP
 
Make sure those are the only lines you need to delete. As well, it may attempt to pull that info elsewhere in the script and wont be able to find it because a string isnt defined.
 
Status
Not open for further replies.
Back
Top