• 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!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 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.

Help and Request Thread

Status
Not open for further replies.
im using rpg maker xp
oh and one more thing: how do you delete an autorun event permanently so that it doesnt run every time you enter the map?
 
Use switches/Self switches.
 
There's the 'Erase Event' command too.

But only if you're not going to use it anymore.
 
ok i figured out how to delete events (i needed to use some switch things)
and one last thing, i promise its the last [for now:)] how do you tint the screen in rmxp, i know hot to do it in 2k3 but not xp.
 
Last edited by a moderator:
ok i figured out how to delete events (i needed to use some switch things)
and one last thing, i promise its the last [for now:)] how do you tint the screen in rmxp, i know hot to do it in 2k3 but not xp.
There's a button on the second dab of the Event Commands list called "Change Screen Color Tone..."

It's the RMXP equilavent of the Tint Screen button in RM2K3.

A side note, I accidentally editted your post when I went to quote it, which is why you see "Editted by Dawson" at the bottom of your post.
 
Does anyone have the Battle animations... but not the pokemon-sprites,
i need the animations of the attacks like thunder etc...
 
Try pressing Print Screen only, then go to Paint and paste the image there.

For the font problem, what maker are you using?
There is a free screen capture program called MWSnap, which can be found here that I use to take screenshots of anything. It's really easy to use and it saves having to open up paint and messing around with it in there. Just line up the screenshot, take the screenshot and save it. Easy.


The Print Screen doesn't work, and I'm using RMXP Postality Knights Edition: Enhanced
Thanks, Dawson.
 
Last edited:
Does anyone have the Battle animations... but not the pokemon-sprites,
i need the animations of the attacks like thunder etc...

I got a bubble/stringshot animation, made by [NoLeafClover0987]
Credit him if used.
https://img159.imageshack.us/img159/1516/bubblestringshotiz4.png

Shadowburn, as Dash said, the version of RMXP that you are using is illegal. You'll find that a lot of people wont help you if you are using illegal software. I urge you to make a small investment and pay the relatively cheap price for the legal version.

What if in his country RMXP is not sold?
Always wondered about that.
 
Last edited by a moderator:
Hey guys, I need some help with my game, basically I'm wondering if someone could make me a script so that I can add the same character more than once?

Thanx in advance!

EDIT: Sorry, RMXP
 
You open script editor, go to Game_Party class.
Then search for the 'def add_actor' line... and change this:

Code:
# If the party has less than 4 members and this actor is not in the party
    if @actors.size < 4 and not @actors.include?(actor)
      # Add actor
      @actors.push(actor)
      # Refresh player
      $game_player.refresh
    end

for this:

Code:
      # Add actor
      @actors.push(actor)
      # Refresh player
      $game_player.refresh

That will work, I guess (haven't tested it out)
 
Ok, I'm VERY new to this, so don't bite my head off. (especially you, Dash. I've seen how rude you get o.0)

Anywho, I need all of the sprites of D/P. (Battlers, just the Pokémon, of all generations)
 
Status
Not open for further replies.
Back
Top