-
Content Count
16 -
Joined
-
Last visited
-
Days Won
1
ramza1337 last won the day on April 14 2012
ramza1337 had the most liked content!
About ramza1337
-
Rank
Newbie
- Birthday 09/12/1989
Other
-
Referer
google
Profile Information
-
Gender
Male
-
Interests
Piano, drawing, Music, GAMES LOTS OF THEM. Bein creative.
Engines
-
Prefered Engine
RPG Maker XP
-
Engine Level
Good
-
Class Title
Eventer
-
Project(s)
Pokemon Abridged
-
Jon Bon reacted to an answer to a question: Voice Acting??? >.<
-
ramza1337 started following Eventing a tactical game, few questions, Voice Acting??? >.<, Random Walking Civilians and and 2 others
-
I love voice acting, if the pace is right. It definitely is no a neccessity for me, I have always been an avid reader, and as such I tend to read quickly. Most of the time, I get impatient with voice acting when it moves so much slower then the subtitles. I often skip through. However, if the effect is cinematic and the acting interesting it adds alot. I want to use voice acting in my game, yet, I'm not sure whether its worth the file size (otherwise i certainly would.) But even still, it kinda loses its edge when every character has a voice, and they repeat. With Disgaea, there wasn't alot of wandering around, the story development relied on the scenes between characters, which were entertaining, but also gained some potency simply because it was all the dialouge you really had. Its the difference between an ice cream cone, or ten ice cream cones. the last cone you kinda just wanna hurry up and finish.
-
Personally I think random looks messy and lazy, like me. I don't like to be reminded of that, so it's doubly ugly. I think in some circumstances, inside a shack its fine. Otherwise your npcs ought to have a purpose or a function. It just looks bad, and thats enough. Patterns are great, just look at elderscrolls, they look like they are up to something, rather then just loitering.
-
Hey good job, might I ask what you are using this for specifically, like, a transformation scene?
-
I have this issue where Paradogs Diagnol Movement Script adds to the speed of diagnol movement when combined with the pixel movement script. All I really want out of his script is the ability to show quarter angle graphics. So all I need to know is how to disable the movement part and keep that, I tried...and kept getting syntax errors lol, I have no idea what I'm doing. Thankyou, and if you need me to post the scripts I will happily oblige. : )
-
Hey that's pretty nice! Did you script it?
-
I understood most of that I think. I've always wondered what the terrain tag was for. To be honest, I will have to investigate the options in my conditional branches further, as I am using Postality Knights version. I intend to purchase the standard version eventually....But yeah, that would work I think, if each terrain number equaled an elevation. Is that what you mean? But I would have to duplicate the same graphics several times, and would be limited to an elevation of 7. Anyways, in the mean time I have a pretty decent system worked out I think, haven't fully fleshed it out yet. But it goes like this: Completed part: A common event in which you set 2 variables. Elevation and Area. You put it in the top left corner of the square you want to flesh out. It subtracts the player coords from its coords to see if its within the area. And if it is, sets a variable: player elevation. Incomplete part: When you jump, a variable: Jump height is set to 1 and then added to player elevation. You then have a conditional branch which acts as gravity. If jump height is greater then player elevation subtract 1 and move down. (Lock facing etc.) So, if you jump right from say 555 to 333 you are jumping from one imaginary square to another, the jump height will equal 6 555 333 555 333 and when you cross into the area with 3 elevation while jumping you will move down until jump height = 3, that is twice, giving the illusion of a z axis. After I get this worked out I'll just copy paste these tiles everywhere. the only issue is I don't think you can localize variables, so I have to make a common event for every imaginary square.
-
I have no idea how to script. But you could have an another event, that always changes its location to the first event. So make a common event that changes a variablex, and variabley, to event1s sprite x and y tiles and then have event 2 change location based on variablexy. You would have 2 events always in the same spot..
-
Actually, I think that using an event for manipulating an elevation variable would work...It would construct and imaginary square over multiple tiles based on its location, and if the player walks into that region it changes your elevation, depending on the value you give it. It could vary in the area it covers, and I wouldn't have to make dozens of touch events on every map. What do you think? I could make ones that cover the entire y1 region, or x(1-?) region. Or possibly it could cover the entire map, but is overruled by another event. and I could layer them. It would be some much easier then calculating xy's all the time, you just copy paste these events and it does it for you! Whats your opinion? I guess all this would do is keep track of elevation, but that's a start.
-
Yeah, I have to test play every two lines! Lol Anyways, I'm trying to develop a jumping system. Essentially I have it set so you push jump and right, you can jump from one ledge to another. the event is layered on to the tiles so when you move there it turns on a switch: Ledge, which cancels the normal jump common event, and replaces it with a customized consequence. If you are near the ledge, and you jump, it moves you right, locks facing move down move down. To imitate a 3d miss and fall. The problem is, I either put an event on each ledge tile, or determine it by xy. A software engineer thought I might just use one or to events to construct a closed region, by comparing xy's. Or best yet, I could create a gravity variable, and an elevation variable....ugh. Which is going to puzzle me for awhile. Ideally, what I seek is sort of a topdown semiplatformer, where you can jump from cliff to cliff, get to hidden places in this manner... I may be ignorant (or not)thinking this would be easier in 3d (because elevation is automatically determined by a z coordinate.) which is why I might ultimately have to learn to script. Yeah, rmxp is ideal for a tile system. But the player is not moving by tile, so it kind of removes some of my options for depleting ap. I cant just use an arrow press, I have to go a roundabout way using xy coords..
-
So I solved the face graphic problem. I had this: If cursorxy equals unit xy display picture001 else: Erase Pic001 however, this would only work for one unit, as it would erase pic 1 if cursorxy didnt equal unit(1)xy, so if I hovered over unit2xy the else handler would erase it anyways. The answer was hilariously simple. if cursorxy equals unitxy show pic1 condbranch: Arrow key pressed Erase pic 1. Lol
-
Hey thanks again. Actually I would prefer to do tile movement. I just would like to be able to turn off pixel movement for the duration of the action. Also, to move the event rather then have the player take on the events graphic. (not a big deal though really.) I figured some things out. But it may be that I will have to learn to script, I mean, what is the difficulty level and the timespan for being able to create these things? You see, I am enjoying making the event engine, I am learning alot, I enjoy the riddles. I don't entirely understand what I'm doing though, or all the event commands in general. which is why I suspect that ruby will be that much more difficult. So for now I mean to event everything. But I plan on learning ruby, basic, etc. in the future. I have another question. I have been trying to event a jumping system. (I don't want to use the jumping script.) However, I get this annoying repeating jump. I've tried to use the wait commands, but it wont stop. Simply, I want him to jump once, even if the key is held down. Then if it is released you can press it again...Do I need a script for this?
-
Haha! Good to hear! I appreciate the warm welcome.
-
Now my other question is this. I have the variables Cursor X, CursorY= Players XY, I also keep track of the Pokemons XY. When Cursorxy=pokemonxy I want to display a face graphic the else handler would delete the picture (2) now my problem is, I want this to occur for every unit on the map, but the else handler always deletes the picture, excepting one. (the last one in the list, at the end of the cond branches.) Do i really need to have a separate picture number for each, or a switch for each. Or is there a less tedious, and more flexible option?
-
Hey thanks for replying Jon Bon. I didn't even get a response on the other site, so I guess it may be a little nonsensical? My system is simple, I'm just trying to create a rudimentary placeholder for now. It is a pokemon Tbs. (Don't worry, It's a parody, I almost wonder if pokemon is a cussword in the rmxp community by now, I intend to do things differently.) The initial commands are simple. You hold the cursor over your unit, it displays the graphic, if you push C, the menu opens. Attack Move Wait Status Cancel. I'm using an action point system. The higher a pokemons speed rating, the more action points you have availabe. I.e. Moving 5 tiles costs 5AP, Moving 3 Costs 3AP. Attacking might cost 1 or more depending on the strength of the attack. Waiting without performing any other actions would add a little AP to the units pool for next turn. Now, with movement I am wondering what would be the most effective way to handle the AP variable. Because I have a pixel movement script, I cannot program the Ap to be depleted by arrow presses. Because I want the player to move the character manually, rather then clicking on a destination. During the duration of the movement, the units graphic opacity turns 0 and is set to always exist at the players coordinates. Afterwards, it turns back. Likewise, the player takes on the Units graphic for the duration. (It had to be this way, because I could control the unit without all the graphical fuss, but the Scroll Map function isn't ideal for locking on to the unit being moved.) I thought I might use variables for recording and comparing.... This I almost consider to be the least of my challenges.
-
I've tinkered around with rpg maker for years. I got started on the PSX Version. I am really intent on completing a game finally, and aim for simple (My idea of simple) but professional. I always got way too complicated before. So I thought, hey, it would be a breeze to make a pokemon game...lol Then I decided, wait a minute, I hate random battles, I hate front view battles. Lets make a Pokemon TBS, and hmm...make it medieval. And hmm...make it a hilarious parody. So, it is not set in the dark ages of the pokemon world, but rather an alternate world. Through, cliches (I intend to pervert the cliches, because I hate cliches, and make fun of them when I am forced to use them.) our character happens on the means to weave together alternate realities, and so BOOM! Pokemon suddenly exist in his world, and only he seems to be aware that it was ever any different. A cliche sure, but it presents the opportunity to have other random realites to pop in. I have the opportunity to make fun of any anime or game I please. But I'm not here to give you a summary of my game. Just saying hello.