Stickers 09/28/11 (Wed) 23:10:30 No. 194
I guess i'll just re direct my question here. I'm confused about random events, say I want a sprite to be standing or sleeping every time the character enters the room. I've looked up tutorials and looked in the old help thread, but I can't find what I'm looking for? (I'm used RPG Maker XP)
Anonymous 09/29/11 (Thu) 06:35:08 No. 226
>>194 Well, I think you'll need to set a switch or a variable to change randomly each time your char enters the room first. Then you tie sprite animation to a certain variable counter or a switch position.
Anonymous 09/30/11 (Fri) 04:38:15 No. 260
hello. i posted this in another thread but didn't quite get the answer that i was looking for. can anyone help with getting effects to work in RPG maker XP? i understand that most of them come down to common event -> change character graphic / speed / etc, but what about things like a lamp effect or something that changes to or back when a button is pressed? what about weapons? this is all laid out pretty clearly for those who use RPG maker 2000 and 2003, but not for those using XP. any help on this from anyone, especially using xp would be greatly appreciated.
Owl 09/30/11 (Fri) 09:57:21 No. 266
>>260 The way to do this is as you said with common events.
For stuff that requires a button to be pressed, it gets a bit more complicated.
First things first, make sure that when you put on any effect, a variable is set as 1. Also make sure that it is set to 0 when you wake up/put on another effect/turn off the effect/during cutscenes or whenever you don't wan't it.
Next, start by making a common event that is made to always be on (put a event that activates a switch at the start of the game).
In the common event, put a "conditional branch: X button pressed". X can be any button supported by RPGMaker XP (the buttons you can choose from here are not the ones that you actually get in game, for example A button corresponds to Z in game, don't ask me why).
Inside the branch, put a call for another common event (Call common event: blabla).
Now make the event (originally called blabla by me).
Inside this event, make conditional branches for each effect that you want something to happen when you press a button (for example: Conditional branch: Variable for Effect=1)
Put whatever you want to happen inside the conditional branch.
If my explanation was a bit rushed, check this quick demo i made using a old game of mine, specifically check in common events, the 8th and 9th ones.
http://www.mediafire.com/file/dfa3h1ek21o7rgf/Merula.zip Anonymous 09/30/11 (Fri) 19:15:02 No. 275
>>266 thank you. so much.
this is immensely helpful. now i can finally get effects working. again, thanks so much, this is exactly what i needed. i can't go wrong with an example, too. i appreciate it a lot.
Anonymous 09/30/11 (Fri) 23:59:30 No. 284
I'm trying to import a chipset, but it keeps giving me an "Unsupported PNG image" error. (The image is indexed and 32-bit, by the way) It works just fine with an older version of it with the exact same settings though, so I don't know what the problem is.
Anonymous 10/01/11 (Sat) 00:01:51 No. 285
>>284 Disregard that, it was a problem with the art program I use not converting the image to indexed.
Stickers 10/01/11 (Sat) 01:21:49 No. 287
>>226 could you explain that in more detail i guess? i still haven't gotten the hang of rpg maker and the variables really are the main trouble for me.
Anonymous 10/01/11 (Sat) 13:20:01 No. 297
Could anybody help me? I'm trying to make a Medamaude-like effect, that makes you return to the Nexus when you press a certain key… How do I do that?
Silver 10/01/11 (Sat) 21:58:45 No. 362
How to make a weapon effect (like the Knife, Steel Pipe)? Because I'm new to this kind of stuff
Doodle 10/02/11 (Sun) 01:38:19 No. 367
>>362 You make a common event and an item (which is an effect). Set the item to be a switch. Then make a common event that is activated by the switch (trigger switch). Make another switch which is the item name with the word 'on' or 'activate' or 'switch'. This is the switch which will say if your effect is on or not.
Next, in the common event do a branch and say 'branch if 'effect -on' is ON. Then show a battle animation and then change the sprite back to normal. Then turn the 'effect -on' switch OFF and the 'effect' switch OFF. This is how you change back to normal if the effect is ON.
Then after the 'end', you place a battle animation and then change the sprite to the effect's sprite and faceset. Turn the 'effect -on' switch ON and the 'effect' switch OFF (the one that triggered the event, otherwise the event will go on forever).
Then, if you have other effects already set up, just set the 'other effects' switch to OFF. If you have multiple effects, you have to do it multiple times with each 'effect -on' switch.
Sorry if this doesn't make any sense, it's kinda complicated, at least when I try to explain things. This is how I make my effects.
Silver 10/02/11 (Sun) 03:18:06 No. 375
Oh my god, I am getting SO annoyed at this problem I have. Whenever I attempt to test my game, the program yells at me, "INVALID IMAGE FILE" (in the actual program they couldn't spell invalid right, wtf). Even though ALL of my imported images are PNG and don't show up in the program as empty black squares. Need help on this BADLY. It's driving me insane!
Anonymous 10/02/11 (Sun) 05:41:15 No. 386
Can RPGMaker games be two player?
Anonymous 10/02/11 (Sun) 13:38:09 No. 387
>>386 Short answer, no.
Long answer, yes, but it blows, it's only local, you have to use the keyboard for player two, events are a pain in the ass to trigger, if both players are using the keyboard it might get too much input, only player 1 can use the default menu, it's even more difficult to do on certain versions of RPG Maker, etc. etc.
If you want multiplayer, I'd recommend using Game Maker. RPG Maker is aimed at single-player games. Now, if that new tile engine thing being made supports multiplayer, I'm all for it.
Anonymous 10/02/11 (Sun) 15:52:47 No. 388
>>375 Read-only? Renamed to .png manually?
Anonymous 10/03/11 (Mon) 16:21:36 No. 419
Is it possible to make a switch to automatically make a room darker, or do I have to manually make a darker version of the room and have the switch change the tileset? Also, with the same switch, I can make it go one way, but I don't know how to make it switch back to normal.
Anonymous 10/05/11 (Wed) 00:55:32 No. 469
>>400 Thank you so much :)
Anonymous 10/05/11 (Wed) 17:01:09 No. 477
>>421 I tried working with the tint screen at first, and it made it darker, but it also made it monochrome. I'd rather have it "darker" as in when you switch off a light.
Of course, I could just be doing something completely wrong with it.
Striker 10/05/11 (Wed) 18:45:32 No. 481
Tint Screen also plays with screen saturation. If you do want to make the screen just darker, don't mess with saturation bar.
Anonymous 10/16/11 (Sun) 09:31:00 No. 821
>>819 Oh, just google "rm2k3 character template", you should be fine.
Anonymous 10/16/11 (Sun) 16:43:53 No. 833
>>821 ah, i was just using the wrong scaled image, thanks!
Silver 10/23/11 (Sun) 04:46:27 No. 1157
>>389 I tried this (using Paint.Net) and it didn't work - the program still rejected it - I'm using RPGmaker 2003, btw.
Anonymous 10/23/11 (Sun) 05:31:22 No. 1158
>>1157 I've used the "sabituki" CharSet and the "my" ChipSet from .flow as templates. I just copied and pasted my sprites into these 'templates' (using paint.NET), saved it as a .png, and they imported fine into RPG Maker2k3. I'm pretty sure you could use any of .flow's Char/Chip/whateverSets to do this.
The 'run time package' sets SHOULD work as templates, but I could swear one of them wouldn't import after I edited it.
Anonymous 11/11/11 (Fri) 04:37:38 No. 1568
how do i make areas loop? it must be obvious or something, but when i look it up i get nothing
Anonymous 11/11/11 (Fri) 16:00:53 No. 1575
>>1569 You should at least ask which rpg maker version he/she is using xD xp doesnt have the loop option and vx probably doesnt either. For those, you need to google some script to do so (I think Ive found some before but I havent actually saved them)
Anonymous 11/13/11 (Sun) 02:09:40 No. 1588
When making tilsets, do we have to deal with color restrictions?
Neimu !ktuYKaNFzg 11/13/11 (Sun) 02:42:14 No. 1589
>>1588 No, not really. You can choose your own colors, but you need to set the picture edit mode to "RGB Color" while editing. Afterward, set it to "Indexed Color."
Mick !!89Dvd74WOo 11/14/11 (Mon) 04:57:36 No. 1590
I'm having trouble getting off to a start. I'm barely into creating the first few maps, and I can't even get things to start right. I'm using RPG Maker 2003, and I have trouble getting my sprite to move right, as a fast-paced world map speed. I tried creating an event to slow him down, but it just made him too slow. Sluggishly slow. It's the first bit of programming I've had to do, and it's already frustrating, and I feel like an idiot for not being able to fix something so simple. Help a bro out?
Anonymous 11/17/11 (Thu) 17:44:43 No. 1649
>>1589 this has been working fine so far with tilesets, but when i do it with charsets, is there some different requirement?
Anonymous 11/25/11 (Fri) 02:54:07 No. 1892
I'm having a problem, I hope this question is not too stupid. I want an event to happen when an enemy walks in the screen, and I want it to happen once per enemy (At least until you exit the game) the problem is that I don't know exactly what to do, I tried using a variable for the enemy when the enemy is in screen, but it keeps freaking out on my and the event repeats over and over, I was thinking of binding it to the particular screen, but that's hard since the game scrolls the screen. Other solution was just conveniently place enemies and activate the event on a certain tile, but that's really unflexible. I'd love some help, please? Thanks.
Societal Plague 11/27/11 (Sun) 16:53:30 No. 1965
This is prolly a stupid question but i cant get it to work for me: Im trying to make an 'attract' effect like the Cat effect in Yume Nikki. Ive tried multiple things but i honestly have no idea how to get this to work.
S !/.dmlqLL1I 11/27/11 (Sun) 21:55:04 No. 1968
>>1965 Add a new event page to every moving NPC, that is only activated when your effect is on (make it so when the effect is equipped, a switch is turned on). Once having done taht, make the movement type "Toward Hero".
I'm not sure if that's very clear, I can give you pics if you need more help.
Societal Plague 11/28/11 (Mon) 01:16:23 No. 1983
I actually tried that. I must have done something wrong Ill fiddle around with it some more. Thanks for replying!
Anonymous 11/29/11 (Tue) 23:49:17 No. 2035
One of my common events has an auto-start trigger and stops everything from moving when it activates when it should only affect the main character. Is there a way to keep other animations on the map moving?
Doodle 11/30/11 (Wed) 00:56:08 No. 2036
>>2035 It should then be a parallel process. But if that doesn't work then I don't know.
Anonymous 11/30/11 (Wed) 01:26:01 No. 2037
>>2036 Tried that, sadly. It's a sitting animation and if put on parallel process (or even when trying to call it from another event) it still has issues, though the other animations on the map at least function. I guess I'll keep trying.
Thank you, though.
Doodle 11/30/11 (Wed) 01:32:52 No. 2038
Oh it's a sitting animation? I know how to do that! You have to set it as auto start then put in the event commands *as a common event*, key input processing *store the info in a variable such as 'Shift' and bubble in only the shift option in the bottom section of key input processing*, then do 'branch if Variable Shift=7'. Then you can do the animation for sitting! Then after the animation do 'key input processing' again and another cond. branch for the same thing and do the animation for standing up! 8D
Anonymous 11/30/11 (Wed) 02:39:09 No. 2040
>>2038 I have all that, actually! It works just fine but it makes other animations on the same map stop whenever my character sits down, and they continue only once she's up again.
Doodle 11/30/11 (Wed) 02:54:58 No. 2041
Oh, well, then I don't know how to help because I don't know exactly how you programmed it. But I managed to get it to work in my game *shrug*
Anonymous 11/30/11 (Wed) 05:29:34 No. 2046
Let's try this issue, then: I'm trying to make music play on my save screen, and that works just fine. But whenever I load from the main menu, it'll play one note from the song and then stop. (When ideally, it shouldn't play at all after the load.)
DR75 12/03/11 (Sat) 20:15:38 No. 2102
Now, I have a few questions, using RPG Maker 2003. Namely, the following. How would you go about changing the movement controls? Specifically, swapping them? I want to do something for an event that, say, inverts your up and down, or left and right keys. Is there any way to do that? Also I can't seem to get teleporting right. Like in .flow or LcdDem when you go through a specific gate, it gives a smooth transition to wherever you went. Like in the green flowery world of LcdDem. Mine always seems to give a black flicker or something when I teleport. I don't have mine set to a specific common event or anything though so yeah. Also a minor thing is trying to fix how some sprites clip through yours when walking alongside them. Say if the door sprite was 24 pixels wide and you walked past it. It just looks odd. Anddd a bit of advice for anyone having color problems, I think I found some solutions. For unsupported png images, either you have to make sure they're indexed, and that they have the right amount of colors. I've tried with a palette of six or less colors and it won't work, but by using extra space to add several more colors, it works. No idea why that is.
Anonymous 12/03/11 (Sat) 22:28:37 No. 2103
How can you get an event to follow you behind, wherever you go? (Using RPG Maker 2003 here.)
DR75 12/03/11 (Sat) 22:45:06 No. 2104
>>2102 Also, uh, scratch that about movement. I figured it out. Ugh silly new system where I can't edit posts. Apparently Key Input plus move events do wonders. Huh.
DR75 12/03/11 (Sat) 23:19:15 No. 2106
>>2103 I haven't tested this, but have you tried making two pages for the event, one where it's stationary, and one where it follows you? First page, make it like a normal NPC. When you interact with it, have a Switch or Variable turn on. On the second page, have a Precondition saying that, when the aforementioned Switch/Variable is on, the Movement Type in the bottom left corner is Custom. Define it as "Toward Hero". Not sure if it needs to be repeated or not.
That's all I can think of, at least. Hope it helps.
Anonymous 12/04/11 (Sun) 21:11:26 No. 2124
This is a really dumb and simple issue I'm having with RPG maker 2003. Basically, only the world map tileset works. No other one will switch out or work (on the small list if I click on them and say yes nothing happens, it stays as the world map tileset) unless it's set to world map. And switching the world map to another chipset ruins the whole map. I've tried importing directly but it didnt work. It doesn't even work with the generic rpgmaker tilesets. As lame as it is, I've been stumped on how to do this for months, and I don't know how to fix it.
Anonymous 12/05/11 (Mon) 19:48:47 No. 2143
>>2129 Uninstalling it and reinstalling it worked like a charm, thank you so much.
Anonymous 12/06/11 (Tue) 06:34:13 No. 2154
OK, so I made an image, saved it in Paint.Net as a 32 bit PNG image. I tried to import it to RPG Maker 2003, but the program says "Unsupported PNG file." Am I doing something wrong?
Anonymous 12/06/11 (Tue) 18:02:18 No. 2157
>>2154 Oh yes you do. You need index-colored PNGs.
Anonymous 12/07/11 (Wed) 02:26:59 No. 2162
>>2157 Paint.net doesn't have seem to have that option there…
Anonymous 12/07/11 (Wed) 05:45:11 No. 2166
>>2162 Use Photoshop, Luke.
Anonymous 12/14/11 (Wed) 20:25:24 No. 2272
Does anybody have any map looping scripts for rpg maker xp? I found one on some site but it messes up the saves so that loading wont work.
Anonymous 12/15/11 (Thu) 02:03:11 No. 2279
>>2272 >>2272 Switch to VX while you still can.
Anonymous 12/15/11 (Thu) 02:20:38 No. 2280
>>2279 Sorry but i'm quite happy with xp, i find vx to be alot more restricting in the mapping department. So about that script… anyone? I can't script myself or obviously i would do it.
Anonymous 12/17/11 (Sat) 22:54:33 No. 2320
How to make PNG indexed??
Mishka 12/17/11 (Sat) 23:00:23 No. 2321
>>2320 Open it in Photoshop, select "mode" in the image menu, and select indexed (the colour depth has to be 8 bits per channel).
Anonymous 12/18/11 (Sun) 02:57:16 No. 2323
>>2321 PHOTOSHOP?! You're kidding, right?
Mishka 12/18/11 (Sun) 06:01:30 No. 2326
>>2323 Not at all; that's what I use for all my image processing, since a lot of programs don't seem to have a lot of advanced file features or plugins.
Anonymous 12/18/11 (Sun) 06:36:43 No. 2327
>>2326 Does GIMP or Paint.Net have that option? Those are all I have (besides MS Paint of course)
Mishka 12/18/11 (Sun) 06:48:45 No. 2329
Honestly, I don't know. I never deal with that freeware stuff (Especially gimp)
Mishka 01/04/12 (Wed) 04:33:28 No. 2750
>>2749 It looks to me as if the problem lies in the variable processing… since you're hitting shift (which sets the var to 7), it looks like there's nothing to set the variable to something else so that it can get processed again. In essence, what I'm saying is that it looks as if the SHIFT key is held down the entire time (to the engine).
Silver 01/04/12 (Wed) 06:27:22 No. 2753
>>2750 So, basically I have to set the variable to 0 afterwards, so that the SHIFT variable can be processed again? Is that what you're saying?
Mishka 01/04/12 (Wed) 06:34:20 No. 2754
Yeah, pretty much.
Silver 01/04/12 (Wed) 06:48:13 No. 2755
>>2754 OK, thanks for that!
Silver 01/04/12 (Wed) 07:02:47 No. 2756
Wait, screw that, I put in a variable operation to set the variable to 0 again, but it didn't work? Night didn't come off her broom when I pressed SHIFT… (I put the operation all over the code and it STILL didn't work. I'm probably missing something here.)
N !IKlc0w/AJw 01/04/12 (Wed) 09:16:22 No. 2762
>>2320 >>2327 In Paint.NET, you get the option to change the Bit Depth when you save the PNG; if you don't get it, try selecting "Save As" (or pressing Ctrl+Shift+S) and save the file with any name, then you should get the option.
>>2749 >>2756 I don't know if this will help, but .flow appears to have the Key Input Processing in a Parallel Process Common Event, with the actual sprite/speed changing happening in a separate Auto-Start Common Event.
I couldn't find the part where the variable is set back to 0.
The Auto-Start Event is activated when a switch is turned on by the Parallel Process Event, and the Key Proc. is set to "Wait Until Key Pressed" (maybe this is why it doesn't need to set the variable to 0).
Silver 01/04/12 (Wed) 09:21:13 No. 2764
>>2762 Hmm… I guess I could give that a try.
Anonymous 01/04/12 (Wed) 09:47:11 No. 2766
question if I wanted to make an effect that makes my character huge, how would I go about doing that? I'm currently using RPG Maker 2003, and I'm talking huger than the charset template in there. If it's not possible in 2003, is there another version that allows that?
Anonymous 01/04/12 (Wed) 16:24:24 No. 2769
>>2766 Not sure about 2k3 but in xp it's allowed.
Mishka 01/04/12 (Wed) 18:22:57 No. 2770
>>2766 You can do it in 2k/3. Just use several sprites at the same time (Yume 2kki did this).
Anonymous 01/05/12 (Thu) 02:38:27 No. 2792
>>2770 Explain?
I know it's also done in .flow, with the giant red demons.
Mishka 01/05/12 (Thu) 03:04:59 No. 2793
>huge sprites Pretty much exactly how I said. Use 16-pixel wide sprites on the character sheet and use several events, each with a piece of the character sheet, and have it move and act as one character.
N !IKlc0w/AJw 01/05/12 (Thu) 03:32:13 No. 2794
>>2793 I've tried this sort of thing before, but I couldn't seem to get them all to move as one entity; some pieces get left behind, even when they have the same movement speed. I think it had something to do with how I used Key Input Processing. And the MC was one of the parts, so that might have something to do with it too.
Not that I
really need help with it like
>>2792 does, but if I can find out how it works here then that's something I (and others) can use later.
Stream Read Errors: Gotta Love Em' Anonymous 01/12/12 (Thu) 00:48:02 No. 2953
I've recently been getting "stream read errors" when trying to import assets into RPG Maker 2003. It's kind of annoying. I'd like to know what is causing these and how to fix them.
N !IKlc0w/AJw 01/13/12 (Fri) 09:34:42 No. 3003
>>2863 >>1649 Shouldn't it be the same as tilesets/chipsets?; make sure it's the right size and that the Bit Depth is set to 8-bit. Charsets are 288x256.
>>2953 I haven't seen "Stream Read Error" before, so I'm not sure what it is or how to solve it.
I found this though>
http://rpgmaker.net/forums/topics/1440/ Main prob-solving post says: "Apparently RM cannot read if my project is interlaced. So for anyone having a similar problem, be sure to set de-interlacing on".
I have no idea what that means or if it helps.
Mishka 01/13/12 (Fri) 09:37:45 No. 3004
>>3003 Interlacing is a type of display method optimised for Cathode Ray Tube displays. It requires special encoding that tells the image display controller how to draw the image.
In photoshop, you can control this by selecting the "none" option in the dialogue that asks whether or not you want the image interlaced.
jazuchan !35zF62VcUQ 01/21/12 (Sat) 03:50:36 No. 3180
ok im going to be a retard and ask a stupid question. how do i go about importing a image to move in the back ground like yume nikki?
N !IKlc0w/AJw 01/21/12 (Sat) 17:06:49 No. 3186
>>3180 There are no stupid questions; just one's that have been asked before. xP
Anyways, if importing is your only concern, you just need to import the picture to the "Panorama" folder.
If you don't know how to make the picture move in the background: You need to set it as the parallax background in the Map Properties of the map you want the picture to appear in. Then you have to change the horizontal and/or vertical scrolling options.
Picture is for visual aid; and is edited (you can't open that many windows at once in RPG maker).
Anonymous 01/24/12 (Tue) 03:49:10 No. 3338
I'm trying to add footsteps in my game, but only the first step will make a sound. How do I get it to keep playing as my character walks? To add, How do I change the sound with different tiles?
Anonymous 01/24/12 (Tue) 05:21:34 No. 3340
>>3338 In the Terrain tab, you can create different "items" of terrain and add a sound to each different item.
Then in the Tileset tab, in Terrain mode there should be a list of all your terrain items next to the tileset - pick the terrain and pick the tile you want to set it to.
Mishka 01/24/12 (Tue) 23:01:36 No. 3356
>>3355 For the event stack on the right, make absolutely sure that you set the variables back to 0 after the move event occurs.
Anonymous 01/28/12 (Sat) 08:55:29 No. 3481
I read what
>>226 said about random events, playing around with the switches and variables, but I cant seem to get it to work. What I'm trying to do is have a sprite change randomly every time you enter the area.
Anonymous 01/30/12 (Mon) 05:10:46 No. 3541
>>3481 Never mind. I managed to figure out a way.
Confuzzled 02/06/12 (Mon) 11:53:43 No. 3852
Could someone extrapolate on the exact event sequence necessary to create the weapon effect? I appreciate the previously description but I find it confusing. I'm using XP.
Weapon Effect N !IKlc0w/AJw 02/12/12 (Sun) 10:21:16 No. 3977
>>3852 I don't know if this will work for RPG Maker XP, but here's something from the archives:
http://archive.uboachan.net/fg/res/4116.xhtml#5480 Knife:
Every event has a page set to trigger when the "You have knife equipped" switch is on. (Kikiyama usually used page 3)
It's generally set to act just like the event would normally (though not always).
When the player presses the action key while next to the event:
1) Stabbing animation is shown
2) Event is faded out via Move Event- Increase Transparency
3) Random number is generated to see if player gets money
4) Event is erased
Mishka 03/04/12 (Sun) 13:36:57 No. 4279
>>4278 It's pretty complicated, but it's a problem you can approach from multiple angles. I'll probably post a small tutorial for complex eventing on my site in the "For Developers" series.
UnbekanntP 03/04/12 (Sun) 14:42:35 No. 4281
>>4279 and what is your website?
"For Developers" sounds kinda like help with programming on some things.. I would want to see that site :U
Anonymous 03/04/12 (Sun) 15:24:25 No. 4283
>>4278 I know how. It's a bit more lacking than the Y2k one, but it is a bit easier.
1- Create a common event. Name it something like "music".
2- Make a separate variable.
3- On the common event, make a bunch of conditional branchs, one for each music in the game. Set 0 for the No sound/off.
4- For more customization, you can put different parallaxes/ pictures/character changes.
5- On the sound test map, make two buttons. One for foward and one backwards.
6- On the foward button, add more to the separate variable and make a conditional branch that, if the variable goes past the number of musics, it loops back.
7- On the backwards button, add less to the separate variable and make a conditional branch that, if the variable goes less than the number of musics, it loops back.
You can add new music by making the values higher on the buttons and adding more conditional branches.
I hope this helps.
Anonymous 03/04/12 (Sun) 15:44:02 No. 4284
And… Here's a tutorial for the PC and backgrounds.
–––PC––––
You'll need:
A separate charset of the mouse and buttons.
Some nice parallaxes.
Understanding of eventing.
First, we assume you have a map for the PC. If you don't, do it.
When you teleport the MC (We'll call it Josh), you'll have to do the following:
Increase Josh's move speed
Disable sitting animation
Change Josh's sprite animation to Cursor
Forbid the Main Menu acess.
On the PC, you may add some icons, for the backgrounds/wallpapers, the save and the Sound player (tutorial on
>>4283 ).
Make all of the icons, ALL OF THEM action key/BELOW hero.
The Save button is self explanatory.
The Sound player teleports you to the Sound test.
And the Wallpaper button changes your wallpaper.
The exit button exits the PC.
You need to undo all the changes done to Josh, e.g:
Decrease Josh's move speed
Enable sitting animation
Change Josh's sprite animation to his own.
Allow the Main Menu acess.
That's pretty much it.
–––Wallpaper––––-
The rather fun part.
To make the wallpaper changable, on the wallpaper button, give an option if the player wants to change wallpaper. Then use the "Show Choices" to display a list. If there is (And certainly there will be) more than 4 wallpapers, then make one option on the box for more.
Upon choosing said wall paper, assign a switches for it and turn all of the other wallpaper switches down. (Tip:
Switch range is very useful on this case.)
To make unlockable wallpapers (the fun ones!), make a switch for finding said wallpaper, and an option that will enable the wallpaper, when you got the switch for it on.
I hope this helps,
F-16 (Me's creator)
UnbekanntP 03/04/12 (Sun) 16:35:35 No. 4285
>>4283 >>4284 THank you very much!
I think about to upload an Seamless loop tutorial, cause the most fangames ( like Me) have good ideas and graphics, but not nice looped music.
The music is good, but the looping by some is not so good D:
Anonymous 03/04/12 (Sun) 17:03:33 No. 4287
>>4285 Good. I look foward to that tutorial for updating Me.
UnbekanntP 03/04/12 (Sun) 18:12:32 No. 4288
>>4287 doing it right now , the looping tut thread is in music.
(lol I think its in the wrong place lol)
I will use now a bit google translate, then I continue.
Anonymous 04/12/12 (Thu) 02:34:35 No. 5031
Question, is it possible to rig RPG maker to have an isometric camera style or is there an isometric styled RPG maker? If that's not the case I guess I'll have to try a flash engine, and I really don't wanna…
Anonymous 04/12/12 (Thu) 20:58:01 No. 5056
>>3340 Do you think you could post an image? I feel a bit dumb for saying this but I'm not sure what you're talking about…
Anonymous 04/15/12 (Sun) 06:10:52 No. 5142
I'm using XP. How do I remove the party member slots on the menu screen?
Anonymous 04/28/12 (Sat) 20:50:53 No. 5377
>>5142 It requires you changing the menu script in a number of ways, i wouldn't recommend it unless you know what you are doing. There is also the option of finding a tutorial and following that of course.
Anonymous 04/29/12 (Sun) 20:52:28 No. 5395
Is there a way to make an RPG Maker 2003 game playable without having to install the 2003 RTP? I believe I heard about there being a way to do this before, but I'm a bit clueless…
Moga 05/01/12 (Tue) 01:07:41 No. 5418
>>5395 go into your .ini file for your rpgmaker2k3 game and add in the line at the bottom
fullpackageflag=true
magic
Mishka 05/22/12 (Tue) 01:39:36 No. 5542
That's debug mode, Rindre.
Rindre !bl6ZE9uvAk 05/22/12 (Tue) 21:02:44 No. 5555
>>5542 Thanks. I've never seen it before;;
Jojogape 05/23/12 (Wed) 10:05:39 No. 5567
>>5541 Oh,I discovered that accidentally by pressing F9 during playtesting.
It even changes to fit your menu scheme, the dev team thinks of everything!
Anonymous 05/29/12 (Tue) 04:58:13 No. 5631
i am terrible at spriting how do
Anonymous 05/29/12 (Tue) 20:59:45 No. 5640
Hello! i know a lot of other people have probably had issues with effects and its been explained a million times or something, but I really am having a hard time understanding practically all the explanations. None of them seem to work for me. I also wanted to say that i wanted to make it so the effect I am making can allow saving if the shift key is pressed, but only in one room. That, and I can get the effect to activate but not turn off, it just loops the activation animation when I try to turn it off through the menu.
Anonymous 06/09/12 (Sat) 01:24:23 No. 5726
Having a bit of trouble with an event. I want the sprite to move randomly in every direction, but while remaining stationary. Pretty much, I want to be able to use all 12 pieces of movement. Leaving it on 'Random' and 'Spin Around' is closest I can get, but that only uses the four main directions without the walking animation bits. I thought I came up with a solution by placing the event on an area it can't move (an X tile), then having it's movement type set to Custom > Move Randomly (ignoring possible moves). That works at first, but after a few seconds, the sprite starts spazzing out freakishly fast. I also want the player to be able to move around every block of this sprite, so trapping it in a box of Xs won't work. Any advice? Using RPG Maker 2k3.
Anonymous 07/04/12 (Wed) 02:22:32 No. 5880
Goddammit, I simply don't understand RPG Maker 2003 autotiles, anybody knows a good tutorial, generator, or explain them to me?
person 07/09/12 (Mon) 08:36:26 No. 5918
>>5917 Wait. Ok, let me make this shorter…how to you make sprite(the one used here is also a test) sheets correctly? How far apart should they be from eachother? This one still moves around like crazy.
Yiiikes, I'm just not sure what to do…
person 07/11/12 (Wed) 03:43:57 No. 5932
>>5918 >>5917 ALRIGHT, DISREGARD THESE. I've figured everything out and am a few maps into my game.
Pic related, a screenshot.
Anonymous 07/11/12 (Wed) 03:45:15 No. 5933
>>5932 I wouldn't trust that chair if I were you
Mishka 07/11/12 (Wed) 17:51:30 No. 5940
>>5939 Well, your problem is the "move event" command says to move "this event, face down". It's a common event, so it doesn't have a facing. It should move the "hero".
Anonymous 07/11/12 (Wed) 18:57:21 No. 5941
Doh'! Thank you, Mishka.
person 07/11/12 (Wed) 21:34:27 No. 5942
Using RPG maker 2003 here. How do I make maps loop? There was discussion on the topic in the thread, but never an answer.
PSI !qEHfojWLFQ 07/11/12 (Wed) 21:44:41 No. 5943
>>5942 -Right click on a map name
-Click "Map properties"
-See picture
person 07/11/12 (Wed) 22:06:51 No. 5944
>>5943 Wow, I feel kind of retarded now, that was super simple. Thanks man!
Mishka 07/11/12 (Wed) 22:28:38 No. 5945
NOOOOOOOOOOOOOO!
Owl 07/11/12 (Wed) 22:39:35 No. 5946
>>5945 Looping maps are cool. Everyone should have at least ten.
Mishka 07/12/12 (Thu) 18:42:56 No. 5962
>>5961 It looks like you have "this event" changing direction instead of the Hero (which is the player character). Since this is an auto-start event with a transparent graphic, I don't think this is the event you want to change the facing of :>
Mishka 07/12/12 (Thu) 18:57:38 No. 5965
You should have probably kept the unlock facing command.
person 07/12/12 (Thu) 19:05:05 No. 5966
>>5965 Ah yes, of course. Yet, even in adding that, my dude still refuses to face different directions! It's really weird. And in another event, when I have an NPC move over once and get something out of a drawer, the NPC doesn't move. Seeing as you have a lot of experience, you probably know what I'm doing wrong, and that I'm making a super simple mistake. Oops.
Anonymous 07/23/12 (Mon) 21:07:44 No. 6178
I've lost the use of the "X" button completely in all RPG Maker 2000-2k3 games, and I don't know why.
Anonymous 07/24/12 (Tue) 12:33:39 No. 6184
Anon from
>>6178 , please disregard that post. It can be fixed by restarting your computer.
Anonymous 07/26/12 (Thu) 13:03:29 No. 6207
A simple question. How do I make the map size smaller than 20x15. It's driving me crazy. Is it by making areas on the 20x15 map? I'm using RPG Maker 2003. Thanks.
Anonymous 07/30/12 (Mon) 02:25:33 No. 6259
>>6207 You can't go lower than that, because that's the default screensize. You could make it all black, but other than that it's impossible (unless you somehow rewrite the code of the game to make the game screen smaller or something)
Anonymous 08/02/12 (Thu) 06:38:32 No. 6288
>>6283 Open it in gimp and resize it by 200 percent?
Seisatsu !h/0s4cu6Oo 08/02/12 (Thu) 07:33:12 No. 6290
>>6288 >>6283 If you want to see the pixels, make sure to turn off interpolation during the resize.
Anonymous 08/02/12 (Thu) 10:31:39 No. 6291
>>6288 >>6290 Yeah, I figured this would be a faster way other than exchanging each pixel manually.
But the problem is that the charset won't be 1x1 pixel(like in other games).
I don't mind using a 2x2 pixel charset and maybe its just me being picky, but still!
Anonymous 08/02/12 (Thu) 18:23:52 No. 6293
hey guys so uh I'll cut to the point. You know when effects are supposed to be like: >No effect>use Effect >-equip Effect- >using the equipped effect will unequipped it, using another effect will unequipped it and change to the newly selected effect. Well for me its:>No effect >Use Effect >-equip effect- >sing the equipped effect will unequipped it, using another effect will unequip it. It must have something to do with my common events, but I don't know where, I tried a lot of different things (from switches to chains of conditional branches) but this is the best result so far, so uh, helppls?
409 08/19/12 (Sun) 21:12:47 No. 6381
None of the .wav files I import work. Why is this and how do I fix it?
Anonymous 08/22/12 (Wed) 12:02:34 No. 6407
>>6381 It could be that the .WAV settings you use aren't compatible with your RPG Maker version. Try making them 16-bit, mono and 44.1kHz? This works for me personally.
Anonymous 08/22/12 (Wed) 12:04:54 No. 6408
I have a question: Is it possible to make Japanese kana and kanji appear correctly in RPG Maker 2003? I've been trying to make a Japanese translation of my own fangame, but when I run my game all the Japanese writing doesn't display correctly at all (the game functions fine otherwise). Has anyone ever managed to make Japanese show correctly in RM2003?
Anonymous 08/22/12 (Wed) 12:09:45 No. 6409
>>6408 How about you complete your game before you make our reputation with the japanese even worse.
Anonymous 08/22/12 (Wed) 12:37:30 No. 6410
>>6409 How about you getting some manners before you make Uboachan's reputation even worse.
Anonymous 08/22/12 (Wed) 13:30:59 No. 6411
>>6410 I'll get some manners when you start making a game worth playing.
Anonymous 08/22/12 (Wed) 14:09:46 No. 6412
>>6409 Oh no! The japanese! Whatever shall we do if they say they don't love us anymore ;-;
Anonymous 08/22/12 (Wed) 14:38:39 No. 6413
>>6412 Nothing, because they are the only ones that actually make games in this community, shitty as they may be. Compare the amount of finished fangames from japan to the amount of finished fangames from the rest fo the world.
Anonymous 08/22/12 (Wed) 16:35:31 No. 6414
>>6413 1- Get proxy
2- Take what you want
3- Stop bending down for your beloved asiatic overlords
Anonymous 08/22/12 (Wed) 17:01:15 No. 6415
>>6414 I have no idea what you are trying to say. Why would I need a proxy?
What do I need to take?
Is me telling the truth about nobody around here completing their games, ever, bending over for the japs?
Anonymous 08/22/12 (Wed) 17:12:15 No. 6416
>>6415 I can think of at least two japanese game making communities that filters out non-japanese IPs, which is why you'd need a proxy
And about no-one ever completing their games, it's most definitely true. But surely you don't think the reason that's a problem is because of what the fucking japanese game-making community thinks about us?
They can love or hate uboachan/the western world. It doesn't matter, we can get what they make either way. And in any case, it's not like they'd make their games more accessible to us if they had a better opinion
Anonymous 08/22/12 (Wed) 17:30:25 No. 6417
>>6416 Obviously that's not the reason.
I don't see why we need to make our reputation worse just because we can, though.
To the person asking the original question, finish the game and THEN think about shipping it somewhere.
Anonymous 08/22/12 (Wed) 18:35:09 No. 6418
>>6417 The guy just made a question concerning RPG Maker on an RPG Maker programming help thread. He's trying someone who knows how to deal with a particular problem he came across
I'm sorry, but I just can't see how uboachan's reputation/the japanese community's opinion would even come into play here
Back on topic though
>>6408 Have you tried using Applocale? If using it is a must for japanese fangames to display their text correctly, I think it's safe to assume you'll need to use it to see any japanese characters you include in your game
Anonymous 08/23/12 (Thu) 22:01:11 No. 6420
>>6417 Just so you know: There actually ARE western people that finish their games. Just look at Owl and Moga, for example. Still, I'm more interested in making games accessible to people than to worry about the reputation about the west as a whole - the main problem is that the western fandom uses placeholder sprites from other games without permission and that's not even remotely related to my question. Oh, and I was asking if it was possible just for future reference, since it seems to be a subject that not a lot of people know about. I don't plan on translating my game unless there's enough interested from the Japanese fandom, but I still want to know whether it's possible and see if I can translate other fangames for practice.
>>6418 I actually run my OS in Japanese locale all the time due to using many Japanese software that doesn't work without it. I also have Japanese keyboard options installed and I tried various ways to get my Japanese typing to show up, but the only characters that seem to display correctly are the narrow Katakana, oddly enough. It makes me believe that Japanese is possible, but I'm not overly hopeful…
If 64-bit Windows wasn't so annoying I'd definitely make my game in 2000 for language compatibility, but since the Japanese seem to be able to navigate games in English fairly well I think I value OS compatibility too much to switch. (I'd also lose a ton of eventing already done, which helps in this decision too, ehe.)
Tl;dr: Half-width Katakana shows, the rest looks weird. I have no idea why.
Msa 09/16/12 (Sun) 15:26:10 No. 6477
Hey, guys, I have no clue if this has been asked before, but whenever I try to play my game,it's always zoomed out. Whenever I play other games, though, it's normal and zoomed in. Can someone help me? :(
Anonymous 09/16/12 (Sun) 16:18:11 No. 6478
>>6477 Post a pic
I don't really know what you mean
Try f5?
Jojogape 09/16/12 (Sun) 17:34:35 No. 6479
>>6477 Try not playing it from RPG Maker. It should open on fullscreen mode by default. On RPG Maker, your game will always open at 2x resolution, which is usually 640x480.
Msa 09/16/12 (Sun) 22:53:13 No. 6480
>>6479 Thanks Jojo. It works. ^-^
sofi 10/10/12 (Wed) 05:39:39 No. 6586
could someone explain to me their system for going to the dream world and saving (including like changing sprites when in the bed, etc)
ayakashi 11/16/12 (Fri) 17:03:27 No. 6732
Okay, dumb question; when importing images, MUST there be some kind of transparency? I've been trying to import the instructions for a while now and it forces me to make something transparent, and it looks like crap. Any way to import an image without making a colour transparent?
ayakashi 11/16/12 (Fri) 17:21:13 No. 6733
Never mind, I figured it out. For some reason or other RPGmaker automatically turns on the transparency selection if anything of value 0 is in the picture; there were a few stray black pixels on the edge. It's stupid that you can't use black in any of the pictures though.
ayakashi 11/16/12 (Fri) 17:46:18 No. 6734
@sofi My game does not have a dream system, but I can tell you how to disable effects. Okay for example, you have a weapon effect, let's call it Knife. In your items, you should have two copies of the item, Knife for the dream world and (Knife) for being awake. The (Knife) should be set so it can't be used in the field. Make an event on your bedroom, in the top left is the popular place. Trigger condition is auto-start. Set a conditional branch. The condition is Item: Knife is held. Change item: Knife 1 remove Change item: (Knife) 1 add End This will change the effect to an unusable effect in the real world. Go to the dream bedroom and do the same thing except the condition is Item: (Knife) possessed. Change item: (Knife) 1 remove Change item: Knife 1 add End Now with the (Knife) as the placeholder, it gives you a new one that works. Do this for all the items you want to disable (ie all effects except instructions) I believe that should be enough, though sometimes people make a switch with the same name as the event to keep it from doing it every time you enter the room, but I don't THINK that's necessary, as you shouldn't have any items it can replace if it was programmed correctly.
QueenKami 11/19/12 (Mon) 02:58:57 No. 6740
I know everyone keeps saying it but is there a way to make .PNGs color indexed or whatever? I'm trying to make a chipset and it errors when i try to add it to the game. Also, the files you extract from RPG2003 are .bmp so do i have to save my stuff in .bmp for it to work? ((I'm searching this stuff on my own as well…sorry for any dumb questions. :c ))
Anonymous 11/19/12 (Mon) 03:00:30 No. 6741
Use irfanview to set it to indexed, or photoshop (nobody buys photoshop, so there's a lead if you don't have it…) You can also use a tool that supports native palette editing, such as aseprite or EDGE instead of MS Piss.
QueenKami 11/19/12 (Mon) 03:55:42 No. 6742
>>6741 Is there a way to edit a prexisiting file to that?
((I've made my first character sprite, guys. :D )
M-256 11/19/12 (Mon) 11:32:08 No. 6744
>>6743 When starting the game, set an Auto-start event using Decrease move speed. Then turn on a switch. On the next page of the event, use action key/below hero and make it so it does nothing when said switch is on.
Pic related.
QueenKami 11/19/12 (Mon) 19:24:01 No. 6745
>>6744 Wow, thank you very much. c:
I really appreciate your help.
(I'm sure I'll be back here later on…This is my first time trying a YN style of game.)
ayakashi 11/20/12 (Tue) 00:47:58 No. 6746
Okay, I've been trying to program a save event similar to the one in .flow where the protag gets in bed and then the save screen comes up, but I have literally tried everything I can think of to get her to get into the bed and the move event just fails to work, every time. Even with "ignore impossible moves" and phasing mode on, she just stands next to the bed and doesn't do what I inputted. The event is programmed as such: Conditional branch: branch if hero sprite is facing left forbid menu access [move event: phasing mode ON decrease move speed move right phasing mode OFF increase move speed] Proceed with movement Sprite transparency: transparent Switch operation: bed animation ON Wait .5s Show save screen The event does all that but she just stands there instead, making it impossible for me to push enter on the tile she is supposed to move on to render her visible again and allow the menu access. The trigger is standing on the tile immediately left of the bed and hitting ENTER. Event layer is below hero.
Anonymous 11/20/12 (Tue) 02:45:44 No. 6747
>>6746 If the bed is to the right, wouldn't your sprite be facing RIGHT, and not left?
ayakashi 11/20/12 (Tue) 02:51:56 No. 6748
>>6747 I mistyped there; the bed is to the left. Either way, it still doesn't work. I tried running other move events in her bedroom to make sure the other coding didn't interfere and they all failed to activate.
ayakashi 11/20/12 (Tue) 03:00:23 No. 6749
AHA! I have found it! I had a speed guard event that constantly ran a decrease/increase move speed in the background. I guess it didn't like me running two different move events on the protag at the same time.
ayakashi 11/22/12 (Thu) 02:05:01 No. 6754
What is the television's event code?
QueenKami 11/22/12 (Thu) 20:53:38 No. 6755
>>6754 Actually, I've gotten it to work~ So I think I can do the saving journal thing as well.
Anonymous 12/14/12 (Fri) 10:15:49 No. 6830
Hey guys I'm in desperate need of help! I'm making a fangame and I cannot for the life of me get effects to work. I've looked up a few tutorials online and followed them step by step; did not work. It would never appear in the effects list, I'm not sure if I did something wrong or what. I'm using rpgmaker 2003 by the way!
Dyssomnia Ottur 12/21/12 (Fri) 00:34:49 No. 6897
I'm not certain this is the correct thread, but I did not see another thread dedicated to game ideas or partial games. I apologize if this post should have been placed elsewhere.
Recently, I created a Yume Nikki inspired game named 'Dyssomnia' for the Halloween 'Game in a Week' contest on the RMRK forum. I have slowly been gearing up to continue with the project and further flesh everything out since then. But, as there are some changes to the typical Yume Nikki style game, and I have not gotten too much feedback, I thought that I would post the game here to gather more opinions.
One change in particular is that I am using small areas (typically one or two screens in size) which have puzzles or other tasks instead of lobbing large, sprawling maps at the player. This also allows me to focus on the quality of each area. I am also using a slightly different writing style for the few times where there is dialog or interactions, mimicking a short-story feel.
The game engine used is RPG Maker VX Ace, but you will not need to install the RTP for the game to properly function. Credits for third-party scripts, graphics and music is available within the root directory of the game in the 'readme' text file. At the moment, the game is extremely sparse due to the amount of time I had at my disposal (one week), but it can be completed and there is an ending (of sorts).
Download -
http://dl.dropbox.com/u/34748352/Dyssomnia/Depository/dyssomnia.exe Konan 12/25/12 (Tue) 03:09:11 No. 6902
>>6897 Most people just post their own threads usually.
I like it, reminds me of those old Wario games on the Gameboy. My only problem is that it's confusing to play. I didn't know if what any of my button presses were really doing. I'd see save and load screens but I had no idea what was going on. Because it's only in black and white, it can be hard to tell what is going on in the surroundings.
I found myself stumped after finding one of them and a key and dieing(?) a lot to that tree.
Anonymous 12/29/12 (Sat) 18:27:17 No. 6927
>>6897 You didn't see another thread dedicated to partial games? That's all /fg/ is filled with pretty much (along with the help threads and the occasional thread by some massive faggot bawwing about games that don't play like Yume Nikki).
Lurk the fuck more before posting, why on earth would you post in this thread, apart from advertising to the new devs and the successful ones that help them?
Ottur 12/31/12 (Mon) 17:07:34 No. 6935
>>6902 Thank you for offering your feedback! I do agree, the gameplay is somewhat jumbled and confusing, at the moment. Hopefully as I get more time to tinker, this will not be the case.
>>6927 http://uboachan.net/fg/res/5392.html#q5392 The rules in the above thread state that games are to go through 'considerable developmental progress' before being posted to their own thread. I do not consider the meager amount of time that I have worked on this project to qualify as considerable, and I certainly do not think the game is worthy of its own thread.
Therefore, I tried to locate the 'idea' thread which is also mentioned in the above post. Failing that, I posted here in search of feedback.
Owl 12/31/12 (Mon) 18:18:44 No. 6936
>>6935 If only everyone was like you.
That's pretty much all I wanted to say…
Haven't played the game, but from the screenshot it looks like it's in black and white?
I would add some more grayscale, not only black and white. The strong contrast is kinda hard on the eyes.
Anonymous 01/01/13 (Tue) 01:19:17 No. 6939
>>6902 >>6935 >>6936 Hey, idiots, this is a help thread for programming. Ottur, quit being a retard and make your own thread for this game instead of hijacking this thread. As for Owl and Konan, quit filling the thread with discussion bullshit, this isn't what this thread is for. Get the fuck out of the thread with that stuff.
Anonymous 01/01/13 (Tue) 01:26:26 No. 6940
>>6935 Well this isn't the place to post, either. Go make a devblog on tumblr or something.
Anonymous 01/01/13 (Tue) 08:06:59 No. 6943
>>6935 > do not consider the meager amount of time that I have worked on this project to qualify as considerable, and I certainly do not think the game is worthy of its own thread. Then don't post it at all, dipshit.
ayakashi 01/01/13 (Tue) 21:17:25 No. 6949
>>6830 Effects need to be Items and they need to be switches. If you don't have them in the effects list you probably haven't picked them up. You can set up a debug room to test them.
Anonymous 01/02/13 (Wed) 01:00:17 No. 6951
>>6949 You don't even need a debug room. There's a debug menu you can call with F9 while playtesting that can be used to operate switches and set up variables, negating the need to waste time and create possible bugs by making a "debug" room.
Cheesums 01/04/13 (Fri) 20:16:34 No. 6954
Hey, I'm going to start a fangame soon. Should I use rm2k3? I have more experience w/ VX ACE , and rm2k3 confuses me— but I was told it would be more authentic to use rm2k3. Any advice?
Owl 01/04/13 (Fri) 20:36:11 No. 6955
>>6954 Don't use rm2k, especially if you've got experience with ace.
It limits what you can do so much compared to vx ace.
You can make any YN game in vx ace that you could do in rm2k in half the time.
Anonymous 01/04/13 (Fri) 21:34:14 No. 6957
>>6956 But be sure to include the VX Ace RTP in your fangame! Fangame players usually have only the 2003 RTP, most VX games go wildly unnoticed because people are too lazy to download another RTP, yet their quality is very high!
Anonymous 01/04/13 (Fri) 21:44:02 No. 6958
>>6955 How about XP, or just VX?
I'm currently using XP myself, is the grass greener on the other side?
Owl 01/04/13 (Fri) 23:51:04 No. 6959
>>6958 A strong reason to not use XP is that newer versions of windows sometimes have trouble running games made in XP. That's pretty much the only reason I'm not using XP still, since I've been using it for a long time. I got quite a few complaints that people couldn't run Miserere. It was too late to change by then though, so I completed it in XP.
I don't really have any solid numbers on how large the percent is that can't run it, but it's there at least. Something to consider I guess.
Otherwise XP is equally good (perhaps better in my opinion) for making these types of games.
If you're interested in knowing specifically what the differences are between RPGMakers, I'd suggest googling a bit. There are literally hundreds of discussions about this topic.
My personal opinion though, is that rm2k3 and VX is crap.
VX because it is basically a watered down version of VX Ace, and Rm2k3 because it's so fucking tedious to make tilesets and a number of other stuff that you just can't do that you can do in the newer RPGMakers.
Anonymous 01/05/13 (Sat) 00:37:25 No. 6960
>>6959 Damn, the game not working for others is a pretty big issue, that's darn unfortunate.
I'd like to continue making my game in XP since I'm pretty comfortable with most things on XP and haven't touched later makers.
VX Ace does look interesting however, and there're a few features which are pretty tempting when reading all the reviews and comparisons.
Owl 01/05/13 (Sat) 05:29:26 No. 6961
>>6960 It is truly unfortunate, I would still be using XP myself if it wasn't for this. I'm just so used to XP and it's a real pain to change to Ace.
I still feel slightly uncomfortable after several months.
So I can kinda understand people still using 2k3.
But starting to use 2k3 now just because it's somehow more "authentic" than the other makers is just stupid (it's not).
Cheesums 01/07/13 (Mon) 02:12:54 No. 6968
So, I'm going to make the first world soon, any advice? ;v;
Anonymous 01/07/13 (Mon) 03:22:57 No. 6969
>>6968 Don't fall into the bad YN fangame habits of just having a weird world which loops, try and add a person spin on it.
Anonymous 01/12/13 (Sat) 01:37:20 No. 6977
Hey guys, so I went into the debug menu and turned my effect on but nothing happened. I'm clueless as to what to do now…
Anonymous 01/12/13 (Sat) 02:01:58 No. 6978
>>6977 What does the effect do and how're you eventing it? Can't really help otherwise.
Card Shark 01/13/13 (Sun) 03:32:52 No. 6987
Hello, I'm sorry for my lack of knowledge in this field of development but this is my first time posting here and I was thinking of making a fan game as a rainy-day project- But I don't have any clue where to even start. I've used RPG Maker 2003 before when I was like 12 and sort of know my way around the menus and things, but I don't really know how to turn a generic rpg generator to something similar to Yume. Apologies for the poor english, I'm quite tired tonight.
Anonymous 01/14/13 (Mon) 06:12:59 No. 6989
>>6987 Suggestion: Read all of RPGmaker's instructions (if they're missing you can find them as .pdfs online), then go watch bleet's intro videos hosted at bleetdev.tumblr.com, then come back.
While bleet isn't my favourite game developer she does handle the basics pretty well.
wah Cola1 02/03/13 (Sun) 11:30:37 No. 7084
So I'm having troubles with the Shift action, I can't get it to make my character unable to move while the animation is going, can anyone help me? :c
M-256 02/03/13 (Sun) 13:55:52 No. 7085
>>7084 Use the script as autorun and use proceed with movement. When the movement ends, turn the switch that turns the script on off.
Cola1 02/03/13 (Sun) 22:29:45 No. 7087
>>7085 Well, I'm not quite sure what you mean, the script is a Parallel Process with no trigger switch.
Anonymous 03/07/13 (Thu) 17:09:26 No. 7316
>>7313 Don't index with Paint. Use Photoshop or Gimp to choose your indexing colors.
Anonymous 03/28/13 (Thu) 10:24:43 No. 7435
>>7316 I went by your advice and everything worked out but I have this character I want to put in and I keep making new files with her spritesheet and different colors used as the background but even if I index it, it keeps saying unsupported png image and I feel like crying. How can I fix this?
Anonymous 04/23/13 (Tue) 08:24:31 No. 7704
Okay, not sure where to put this but this seems the best place. I'm using RPG2003 and I need the RTP mainly for placeholder and testing purposes, and though the folders and files and everything is in order and there are no errors, the RTP files don't work with newly-made projects. Though I can alleviate this by copy-pasting the RTP files into the project's own, this is still rather annoying and I'd like to fix it. Anyone have any ideas?
Anonymous 04/23/13 (Tue) 09:51:45 No. 7705
>>7435 Are you sure the size is all right?
Anonymous 09/04/13 (Wed) 21:43:50 No. 8390
Still cannot for the life of me figure out effects. -_-"
I tried following bleetdev's little tutorial on tumblr, didn't work. Am I doing something wrong? Am I really just too stupid to comprehend game coding?
Here's a screen shots of what I did:
<a href="
http://tinypic.com?ref=2isfsiv " target="_blank"><img src="
http://i40.tinypic.com/2isfsiv.jpg " border="0" alt="Image and video hosting by TinyPic"></a>
<a href="
http://tinypic.com?ref=yj94x " target="_blank"><img src="
http://i43.tinypic.com/yj94x.jpg " border="0" alt="Image and video hosting by TinyPic"></a>
I'm using rpgmaker 2003, in case that wasn't obvious.
Anonymous 09/04/13 (Wed) 23:13:55 No. 8392
>>8390 >>8391 are you guys seriously trying to embed images
Anonymous 09/05/13 (Thu) 00:16:22 No. 8393
>>8392 that's jcute as fuck
Anonymous 09/05/13 (Thu) 23:29:00 No. 8396
Yeah, I need to not go on the computer at 3 in the morning… I try to do things, but fail. It's sad. But I thought I just posted links to the images? I don't know what happened really. Can I still get help? I really want to get my effects to work.
Anonymous 09/13/13 (Fri) 14:50:27 No. 8412
Guys is it even possible to make chasers with rpg maker vx ace?? If not then is there an alternative way to make one?
Anonymous 09/13/13 (Fri) 16:22:09 No. 8413
>>8412 lol it's almost the same as the other engines, here's a very generic chaser page.
Or maybe you mean something else?
Anonymous 09/13/13 (Fri) 17:53:51 No. 8414
>>8412 It's literally the same as 2k3 with a different layout and better image sizing. It even has scripting so duh of course you can do it in vx.
Shnubs 11/04/13 (Mon) 07:31:57 No. 8660
>>8659 Whats behind the red don't matter, btw. Just the name of my project.
Shnubs 11/11/13 (Mon) 08:46:06 No. 8710
>>8688 i got it no thanks to uboachan damn this board is slow
Anonymous 11/11/13 (Mon) 08:48:35 No. 8711
>>8710 What was the problem? I think I've seen that error before (but only just now, your post about it.)
Shnubs 11/23/13 (Sat) 23:51:25 No. 8741
>>8711 I ended up having to start a new project completely and just move all my files. I still dont know why it wouldn't let me import with that one project but eh what are ya gonna do
M-256 03/13/14 (Thu) 13:55:13 No. 9126
Separate common events by usage: For instance, separate a section for field/general usage (terrains, speed setting and removing of events), and the effects/whatever (They generally take 3 per separate common events. Maybe more if you want to make mixes). Switches also go the same way.
Anonymous 03/28/14 (Fri) 10:23:53 No. 9180
>>9176 yes but the tile will only animate if stepped on…
Anonymous 03/28/14 (Fri) 16:39:14 No. 9181
>>9180 Your tile or Ultra Violet's tile?
Anonymous 03/29/14 (Sat) 00:10:50 No. 9183
>>9181 Ultra violet's but I want to do the same in my game
Anonymous 03/29/14 (Sat) 00:18:06 No. 9184
I'm using RPG Maker VX Ace, I can't figure out how to make an effect! What do I do?? Common Event? Items? Help!
Anonymous 03/29/14 (Sat) 10:19:58 No. 9185
>>9184 learn how to use switches.
http://finalbossblues.com/rmvx-ace-switches-and-variables-p1/ Effects are actually items. Set the items effect to turn on a common event.
In the common event, set a switch that would determine if the player is wearing the effect or not so that the player can remove it if selected the item again
the rest follows…
Anonymous 04/02/14 (Wed) 20:54:53 No. 9205
>>9185 this is >>9184… now I have some other concerns.
1. say i'm making the vehicle for example. How would I go about doing that?
2. you mentioned a way for the player to remove the effect, how?
Anonymous 04/03/14 (Thu) 03:22:23 No. 9207
>>9205 1.I'm not learning how to use a vehicle yet so I can't help you. Unless it's the speed effect or something
2.For the removing of the effect see picture
Anonymous 07/30/14 (Wed) 21:24:59 No. 9450
>>6744 Is there any way that someone can explain this in more detail? I feel stupid but I don't know what op means by "set the switch so it does nothing."
Anonymous 08/29/14 (Fri) 20:11:27 No. 9508
So is black really transparent? Surely there must be a way to make the transparent not be white and have the black stay black. It's driving me up the wall.
Anonymous 08/29/14 (Fri) 20:22:27 No. 9509
>>9508 Just select from the resource manager the 16-bit transparency color you want and click it. Done.
Anonymous 10/12/14 (Sun) 22:42:03 No. 9582
>>9451 If you are using RPGmXP, you can double click an autotile and use the window that pops up to place the tiles directly. If you are using VX or VX ACE you'll have to put your tiles on B, C, D, or E so they don't overwrite ground tiles.
fangames Michael 06/26/15 (Fri) 12:52:38 No. 10681
Oh my godness This makes no sense Im trying to do effects but Its no use can some one help :(
Michael 06/26/15 (Fri) 12:53:27 No. 10682
Also im using rpg 2003
Anonymous 06/27/15 (Sat) 00:18:59 No. 10691
>>10681 Effects are done the same way in every version of RPGmaker, by using common events. This has been answered here in this thread already:
>>266 >>367 >>1968 >>3977 >>6734 >>6949 >>9185 Anonymous 02/13/16 (Sat) 23:17:31 No. 11339
I don't know if this was already answered, but…how to you have a chaser in the game, like the toriningen? Where they run around at random, but when you are nearby they chase you?
Anonymous 02/14/16 (Sun) 01:00:17 No. 11340
>>11339 They never run "at random", they're constantly following the hero, and also the event trigger is at collision rather than touch.
Anonymous 02/17/16 (Wed) 02:09:17 No. 11346
Sorry if it was already answered, but how to you do effects on RPG Maker VX Ace? Items don't have the options to be switches
Anonymous 02/17/16 (Wed) 02:23:28 No. 11347
>>11346 use integers then, switches are just bool.
Anonymous 02/17/16 (Wed) 02:53:03 No. 11349
>>11348 In the event code page.
Anonymous 02/17/16 (Wed) 03:18:32 No. 11350
>>11349 Not finding it….do you have screenshots?
Anonymous 02/17/16 (Wed) 04:44:51 No. 11352
>>11351 Ahh, okay. I've almost got it. But when I equip the effect, it disappears from my inventory. How do I keep it from disappearing?
Anonymous 02/17/16 (Wed) 04:55:55 No. 11354
>>11351 Wait, I figured it out, nevermind! :)
Anonymous 02/17/16 (Wed) 05:47:30 No. 11355
How do you make it where you can't use effects while the character is awake?
riki-xenon !YgYVTMNqk2 04/08/16 (Fri) 21:34:07 No. 11505
>>11355 You would want the game to keep track of whether or not the player is dreaming, and to somehow disable the Effects while the player is awake. In FOG, I use status ailments, but a switch will work just fine.
Seisatsu ## Owner 05/09/16 (Mon) 18:32:48 No. 11528
We can move this kind of discussion to /ig/ now.