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

General Game Dev Help and Requests

Status
Not open for further replies.
rm2kdude said:
Sorry to double post Ok I got the cms up I just need the Location part then im done
here's a location window i found.
instruction at the bottom:
Code:
class Game_Map

def name
 $map_infos[@map_id]
end
end

class Scene_Title
$map_infos = load_data("Data/MapInfos.rxdata")
for key in $map_infos.keys
 $map_infos[key] = $map_infos[key].name
end
end


#==============================================================================
# ■ Window_Mapname
#------------------------------------------------------------------------------
#  show name of the map
#==============================================================================

class Window_Mapname < Window_Base
#--------------------------------------------------------------------------
# ● initialize
#--------------------------------------------------------------------------
def initialize
 super(0, 0, 160, 96)
 self.contents = Bitmap.new(width - 52, height - 32)
 self.contents.font.name = $defaultfonttype
 self.contents.font.size = $defaultfontsize
 refresh
end
#--------------------------------------------------------------------------
# ● refresh
#--------------------------------------------------------------------------
def refresh
 self.contents.clear
 # Map Name
 #map = $game_map.name
 self.contents.font.color = system_color
 self.contents.draw_text(4, 0, 220, 32, "Location")
 self.contents.font.color = normal_color
 self.contents.draw_text(30, 33, 80, 32, $game_map.name)
end
end
insert a new script above main.
go to scene menu and add:
Code:
@location = Window_MapName.new
@location.x = # x axis.
@location.y = # y axis.
then you need to dispose & update it like the rest of the windows:
Code:
@location.dispose
@location.update
i think this will help

if the font won't show up, go to main, and overwrite this:
Code:
  $fontface = "Arial"
  $fontsize = 24
to:
Code:
$fontface = $defaultfonttype = "Arial"
$fontsize = $defaultfontsize = 24
 
I got it now but instead of Location=window_mapname
it should be steps_windpw=window_mapname.new
and the dispose is
steps_window.dispose
and the active is
steps_window.active

Awesome now the menu things I need is the items part and the Pokemon party(its who is in your party)
and i want to know how do get text to show up when you at a seelection of your menu
thanks.
 
Last edited:
****, I was sure there was more. Battle Frontier stuff? Insides and out?

Eh, I'll just go get someone to rip the entire tilesets.
 
does anyone have fire emblem battlers for rmxp?
 
mattgcn said:
****, I was sure there was more. Battle Frontier stuff? Insides and out?

Eh, I'll just go get someone to rip the entire tilesets.
If ya do then you should post them in the resources thread, to help someone in your position.
I think the Battle Frontier has been ripped, but I am not very sure..
 
pokemonhackerforever said:
How do I make a Pokemon battle system, like in the real pokemon games?
that's not so easy as it looks.
what i'm doing is setting the "lay-out" first.
then the coding.
you might need to read some cbs toturials
 
(I hope I post this at the right place...)
I have a question, but first I have to tell a few facts:
Well, I have to say that I looked all over Google, all over Yahoo! and all over Altavista and many other search engines and I haven't had any luck finding any of these: RM2K, Sphere, RM2K3, etc. The sites probably were removed or fully deleted, that goes for the downloads too I guess; that's why they can't be even cached. I see that those sites have been made long, long ago, for ex.: 1, 2 years ago.
Then my question would be: Is there any way to download any of those Role Playing Game Makers or not? Does there still exist any links to any of them?
 
torkoal_7 said:
(I hope I post this at the right place...)
I have a question, but first I have to tell a few facts:
Well, I have to say that I looked all over Google, all over Yahoo! and all over Altavista and many other search engines and I haven't had any luck finding any of these: RM2K, Sphere, RM2K3, etc. The sites probably were removed or fully deleted, that goes for the downloads too I guess; that's why they can't be even cached. I see that those sites have been made long, long ago, for ex.: 1, 2 years ago.
Then my question would be: Is there any way to download any of those Role Playing Game Makers or not? Does there still exist any links to any of them?
here ya go:
rpg infinity
this is the only site i know.
but you have to register(free).

--edit--
site seems to be offline :\
 
Yes, they have been obiviously removed. I've been registered, but only recently so I couldn't download any of them. You should still try to look for a download, but I don't know any sites :(.

edit-
I didn't find any rpg makers either. it seems like there aren't any available.
 
Arbiter1024 said:
Yes, they have been obiviously removed. I've been registered, but only recently so I couldn't download any of them. You should still try to look for a download, but I don't know any sites :(.

That's odd... I can register. The site can't be removed then. Try accessing it with the Cache option on search.yahoo.com/.

edit: Huh?! My Web Browser keeps telling me that RM2K3.zip doesn't exist. What is happening there?
 
Mooshykris said:
How do I make game credits without making a picture for every name?
Use batte animations, that I what I always do. For RM2k(3) anyway.
 
Originally Posted by torkoal_7
(I hope I post this at the right place...)
I have a question, but first I have to tell a few facts:
Well, I have to say that I looked all over Google, all over Yahoo! and all over Altavista and many other search engines and I haven't had any luck finding any of these: RM2K, Sphere, RM2K3, etc. The sites probably were removed or fully deleted, that goes for the downloads too I guess; that's why they can't be even cached. I see that those sites have been made long, long ago, for ex.: 1, 2 years ago.
Then my question would be: Is there any way to download any of those Role Playing Game Makers or not? Does there still exist any links to any of them?
Just to let you guys know rmdownloads.com has every rpg maker from 95 to XP to download free.

Btw does anyone have character sets for rm2k3 of fire emblems:walt,ephraim,erikia,and lance?
credit will be given.
 
Last edited:
Mooshykris said:
How do you do that? I don't know what you mean.
Create a battle animation with the name of someone for the credit, let them scroll over the screen or something. then put an event in the middle of a black map and show the battle animation on the event. Mke more bettle animation for more names(or one very lone battle animation)

Hope it helps
 
Well, there's a whole bunch of them in the rescource thread. You should go check out those first.
 
Status
Not open for further replies.
Back
Top