ELECTRICALKAT'S PROFILE

Search

Filter

Pretentious Bullshit and Missing the Point: The Sequel to the Game to the Movie

I imagine that those kinds of games appeal to the same people who would play things like this little infamous H-game. There are just people out there who seriously get their jollies off of being a good little sociopath to defenseless pixels, because they would (hopefully...) never dare to do that in real life.

As far as how a creator could handle such controversial subjects... I guess it would depend on how good they are with dramatic writing. A lot of people can really tend to go nuts with making their stories as "grimdark" as possible (blood and dirt everywhere!, DEATH!, break that little boy!, rape that cutie!, kick that dog!, ...this list goes on) - thinking that if they can artificially increase the grittiness of their settings as far as they could, then their stories would somehow suddenly become more "interesting" to watch.

(RMXP) How do make a variable random?

Yay! =D

It's an interesting idea, too. Best of luck to you with that.

(RMXP) How do make a variable random?

Yeah... I hate to say it, but I'm not sure of what exactly is going wrong there. Could another event page be interfering with that one? Sorry about this. :(

Also to correct myself, RPG Maker XP bases its wait time on frames, not milliseconds. So 30 frames would be equal to 1 second in real-time.

(RMXP) How do make a variable random?

Could you post a screenshot of your event code, or write them down in detail?

(RMXP) How do make a variable random?

Uh, what do you mean? If you are trying to delay the time between Customer A's departure and Customer B's arrival, then Wait should be just fine for what you want.

(RMXP) How do make a variable random?

Well, RPG Maker processes commands at your CPU's speed. If you want to introduce an artificial delay, you have to use the "Wait" command (it operates in milliseconds, so 1000ms in Wait time would be equal to 1 second, 3000ms to 3s, etc.).

Sci-Fi Series'

"sfdebris" on YouTube pretty much represents most of my opinions on Voyager (and first/second-season Enterprise) episodes quite well. IMO both of those series had quite a lot of potential, but their executive producers' ideas about certain aspects of them really drove their overall quality down, and wasted it. At least in the case of Enterprise, it somehow managed to regain its spark at the end, before the suits finally decided cancel it.

DS9 was really good, yes, but I can't get over the fact that Paramount basically did steal their ideas from Babylon 5. (Originally, Joe Michael Straczynski pitched his idea as a separate series (B5) to Paramount before DS9 was conceived - Paramount then decided to "adapt" his ideas into a new Star Trek series, and then release it one year before B5's pilot.) I still enjoyed watching DS9 through most of its seasons, but that kind of executive thievery always opens a black hole of hatred in my heart, especially since I may have to deal with something like that in my future.

For the OP: Battlestar Galactica is a mostly good series, but I would recommend that you be careful as you reach the end of it... Just, be careful. :)

If you like to watch anime, two really good sci-fi series that you could see are Cowboy Bebop and Planetes. You could also watch the entire Macross saga if you wished, but that is a lot of material to cover. (And if you do, be wary of Macross 7... It has a rather interesting way of dealing with its villains.)

IT'S ALL ABOUT DEM MIND GAMES

For me, the kinds of boss fights that I really like are the ones with "gimmicks" incorporated into them, because those are just so much more interesting to play against than your standard "one enemy that is just 10x or 100x stronger than any other normal enemy, with the same exact dumb AI" kind of boss. In terms of RPGs with turn-based or ATB battles, I imagine coming up with different gimmicks may be a little harder than, say, doing so with MMO-games such as World of Warcraft, or adventure RPGs like Secret of Mana and Zelda, since you are limited to what you are able to do in order to make your battles less..."monotonous" (for the lack of a better word - such as no dimensional space for PCs to maneuver in for those systems).

Level grinding, maximizing your characters' equipment and stats, etc. can of course make those gimmicks somewhat less useful in the long term - nevertheless, I would still enjoy fighting bosses that require me to think about more than how well-prepared my characters are.

Best VG Soundtracks + overrated

I play many more RPGs than I do other genres (well, platformers come as a very close second :P), and most of my favorites have already been listed here. However, I would like to point your attention to Lufia 2 and Terranigma for a moment:





Lufia 2 probably has one of the most...emotional, ending themes that I have ever listened to (especially if you know the context behind it). :(


And of course, I must post this live orchestral Final Fantasy VI opera performance:



RPGM2K Game Save File Question

Provided that you made no major changes to your database, as Aten said (resetting your maximum switches, adding more battle animations, ...), then it is probably possible, since your save file (I believe) is just a "snapshot" of the states of your variables, switches, database items, character location, etc. The best way to approach this may be through an event that closes your Version 1, such as:

(events leading up to the end of Version 1)
- Message Box: "Hello, player! This is Dudesoft! Thank you for playing my game, and please stay tuned for Version 2 of _____!"
- Call Save Game Menu
- Return to Title Screen

In here, your closing is controlled, since your save game is set right before the Return to Title Screen command, and you know for certain where your players will be resuming their play. Thus, once you begin to work on Version 2 of your game, you could then replace that old Return to Title Screen command with something much more appropriate:

(events formerly leading up to the end of Version 1)
- Call Save Game Menu
(events that continue your game in Version 2)

I'm just theorizing here, though. I recall some 2K games long ago that took advantage of save file transplanting in a similar fashion, but you may need to do a little bit of experimenting with this. However, again, if you made significant changes to your game's information (outside of your maps), then I'm not sure of how the engine would react to these changes.