Brent Murray
May 12 2011, 11:36 PM
Good god, there's a demo out -- already!?
Fuking eh! I'm gonna go try this out tomorrow, Vanit.
minimog
May 13 2011, 12:05 AM
How do the demo in time gameplay goes? And it did not seem to ... I want more!
Vanit
May 13 2011, 01:26 AM
QUOTE (dragonheartman @ May 13 2011, 01:11 PM)

I had issues downloading, so I bought a premium RS account just so I could play this.
If anyone else is having download issues, I've
mirrored the file. (Vanit, if you don't want me hosting this by all means let me know and I'll remove it.)
Here are my results from my black box testing.
- You can call the menu when the red battle swirl appears, effectively canceling the encounter.
- Sometimes when you press enter while the exp bar is filling up after battle, the bar disappears.
- If you walk onto a teleport event but call the menu before you teleport, when you exit the menu you will be standing on the teleport event. (You can exploit this to bypass teleport events and walk past the allowed boundaries of maps.) I had this same issue with my running system in my own project. To fix this, I changed my 'on hero touch' events to 'collision with hero'
All in all really wonderful work. I was pleasantly surprised to find I could use Braver on myself.

Whew! That was some intense bug fixing. It turns out the root of the problem was a matter of race conditions between the menu, impending battle encounters and teleporting tiles. I fixed the conflict between the menu and impending encounter by putting their calls in the same loop so its impossible for them to conflict. If someone manages to time a menu call just before a battle triggers the impending battle will trigger an interupt that invalidates that call. I was also eventually able to make it nigh impossible to stagger a menu call through a teleport by a combination of making it collision with hero and same level as hero, and upping the responsiveness of my parallel process that freezes the hero in place while they use the menu. However, I still found if i timed it right I could call the menu before I ported and it would appear just after I came out the otherside (unless I disabled the menu for an event, then it waits till after the event). Unfortunately it seems its impossible prevent this as rm2k3 is just too high level when it comes to tiles. I attempted checking the Map ID, X and Y coordinates of the player when the menu is called and then again when it is rendered and the values are the same until its too late. Its not a game breaking bug but its frustrating that its not my fault! There is one way I think I could get around it but its probably overkill; instead of events teleporting the player around directly they could poll the event thats doing the menu/encounter calculations for a teleport request with coordinates, that way it could send an interupt to the menu call. But yeah, overkill I think (although its tempting because then it'd be super robust).
Rob_Riv
May 13 2011, 03:44 AM
Brent Murray, rather than posting to say you're going to play the demo, perhaps you should just post after you've played it, with your comments.
Vanit, I noticed that if you left the screen just before a battle started (during the transition screen), the battle didn't happen. Not sure if that's the same or a similar issue to being able to call the menu to cancel a battle.
Vanit
May 13 2011, 03:54 AM
Its a similar issue, but I fixed it while I was taking care of the other stuff (fortunately it was one of the easier ones). Thanks for trying it out!
Kazesui
May 13 2011, 04:29 AM
QUOTE (Vanit @ May 13 2011, 11:26 AM)

QUOTE (dragonheartman @ May 13 2011, 01:11 PM)

I had issues downloading, so I bought a premium RS account just so I could play this.
If anyone else is having download issues, I've
mirrored the file. (Vanit, if you don't want me hosting this by all means let me know and I'll remove it.)
Here are my results from my black box testing.
- You can call the menu when the red battle swirl appears, effectively canceling the encounter.
- Sometimes when you press enter while the exp bar is filling up after battle, the bar disappears.
- If you walk onto a teleport event but call the menu before you teleport, when you exit the menu you will be standing on the teleport event. (You can exploit this to bypass teleport events and walk past the allowed boundaries of maps.) I had this same issue with my running system in my own project. To fix this, I changed my 'on hero touch' events to 'collision with hero'
All in all really wonderful work. I was pleasantly surprised to find I could use Braver on myself.

Whew! That was some intense bug fixing. It turns out the root of the problem was a matter of race conditions between the menu, impending battle encounters and teleporting tiles. I fixed the conflict between the menu and impending encounter by putting their calls in the same loop so its impossible for them to conflict. If someone manages to time a menu call just before a battle triggers the impending battle will trigger an interupt that invalidates that call. I was also eventually able to make it nigh impossible to stagger a menu call through a teleport by a combination of making it collision with hero and same level as hero, and upping the responsiveness of my parallel process that freezes the hero in place while they use the menu. However, I still found if i timed it right I could call the menu before I ported and it would appear just after I came out the otherside (unless I disabled the menu for an event, then it waits till after the event). Unfortunately it seems its impossible prevent this as rm2k3 is just too high level when it comes to tiles. I attempted checking the Map ID, X and Y coordinates of the player when the menu is called and then again when it is rendered and the values are the same until its too late. Its not a game breaking bug but its frustrating that its not my fault! There is one way I think I could get around it but its probably overkill; instead of events teleporting the player around directly they could poll the event thats doing the menu/encounter calculations for a teleport request with coordinates, that way it could send an interupt to the menu call. But yeah, overkill I think (although its tempting because then it'd be super robust).

You couldn't just get the "event ID" at the position of the hero as you close the menu window and then trigger the first page of that event (the teleport one) if the ID belongs to a teleport event?
Vanit
May 13 2011, 05:55 AM
QUOTE (Kazesui @ May 13 2011, 10:29 PM)

You couldn't just get the "event ID" at the position of the hero as you close the menu window and then trigger the first page of that event (the teleport one) if the ID belongs to a teleport event?
I wasn't proposing doing away with the on-collision trigger for the teleport, thats not the issue. The issue is stopping the menu from loading while someones trying to teleport. This is tricky because rm2k3 is executing the menu concurrently so fast by the time I detect it shouldn't have loaded its already too late (its already visible). The only way I can stop it is if I can guarantee the interupt (tells the menu not to load) will get there before it reaches the point of no return. I've already done this with the battle system and the menu, such that if the menu is being loading and a battle is impending, it will cancel the menu request before it gets there, it basically looks like this in a parallel process:
>Key Input (Without Wait)
>IF Input is 6
>>Calling Menu SWITCH On
>End IF
>//calculate if there's a random battle (there's a huge section here)
>IF Random Battle
>>Interupt SWITCH On
>>Load Battle
>End IF
>IF Interupt is On
>>Calling Menu SWITCH Off
>>Interupt SWITCH Off
>End IF
>IF Calling Menu is On
>>Load Menu
>>Calling Menu Switch Off
>End IF
I've oversimplified it, but thats the jist of it. It will guarantee that if someone tried to open the menu and a battle occured afterwards, it has no chance to load before the battle (because battles are launched immediately), and the interupt will invalidate the lingering Call Menu request once the battle has finishhed. This is the exact conditions I need for teleporting not be messed up by randomly appearing menu and battle calls too, but the problem is in its current state I've tried to generate the interupts in a separate event, which doesn't work because 99.99% of the time this event is up to the wrong line so the interupt is bypassed.
To get around this instead of teleport events doing the teleporting directly, I can poll the parallel process event like this:
//teleport event trigger on hero touch
//set up my destination coordinates
Map ID = 1
X = 20
Y = 10
Poll Teleport Switch On
Then modify my parallel process to do this:
>Key Input (Without Wait)
>IF Input is 6
>>Calling Menu SWITCH On
>End IF
>IF Poll Teleport is On
>>Return Memorized Position (MapID, X, Y)
>>Interupt Switch On
>>Poll Teleport Switch Off
>End IF
>//calculate if there's a random battle (there's a huge section here), there's a condition here that resets the movement detection when
>//interupted, such that after an interupt they have to move an additional tile to trigger a battle (only happens on map change so can't be exploited
>IF Random Battle
>>Interupt SWITCH On
>>Load Battle
>End IF
>IF Interupt is On
>>Calling Menu SWITCH Off
>>Interupt SWITCH Off
>End IF
>IF Calling Menu is On
>>Load Menu
>>Calling Menu Switch Off
>End IF
Its a pretty elegant solution I think.
dragonheartman
May 13 2011, 09:37 AM
For calling the menu on teleport tiles, this probably isn't as elegant, but you could also do some sort of timer that increments every 0.1s, but resets when your hero's x or y coord changes. Then just make a prerequisite for calling the menu that the timer must be at least some value (maybe 3 for 0.3s).
You do definitely lose some responsiveness though. I don't know if it's worthwhile, but an interesting alternative.
Another clever way to avoid battles when you land on a teleport event is to just use a different terrain value for your teleport tiles. Then, you can ensure the player is not standing on that particular terrain ID when you call the random encounter. You might save a few variables that way. (Plus, it's a global solution rather than one that's map-specific.)
Brent Murray
May 13 2011, 02:07 PM
QUOTE (Rob_Riv @ May 13 2011, 04:44 AM)

Brent Murray, rather than posting to say you'reg going to play the demo, perhaps you should just post after you've played it, with your comments.
Done.
Vanit, I played the demo for about 10 min's last night and I was quite impressed with what you had thus far. Everything felt like I was playing the real thing, and reeks of professionalism that almost like Square had a hand in making this game with you; that's how awesome this game this is. I also liked how you had the battle animations down to every single little detail like the actual characters perform in the actual game -- that was a nice touch. Mapping was good, and everything felt like it should be. The menus were a little slow, but I got used to it after awhile and I didn't care after a few call-up's, and the battles flowed very nicely; excellent job, thus far. My only complaint is the walking speed, but since the maps were a bit on the short side, it didn't matter that much.
Can't wait for more! Excellent work, thus far. ^^
It’s been awhile since I’ve played FF7, so it was nice to revisit this game in 2D form, which, frankly, I think is much better.
Vanit
May 13 2011, 07:30 PM
QUOTE (dragonheartman @ May 14 2011, 03:37 AM)

For calling the menu on teleport tiles, this probably isn't as elegant, but you could also do some sort of timer that increments every 0.1s, but resets when your hero's x or y coord changes. Then just make a prerequisite for calling the menu that the timer must be at least some value (maybe 3 for 0.3s).
You do definitely lose some responsiveness though. I don't know if it's worthwhile, but an interesting alternative.
Another clever way to avoid battles when you land on a teleport event is to just use a different terrain value for your teleport tiles. Then, you can ensure the player is not standing on that particular terrain ID when you call the random encounter. You might save a few variables that way. (Plus, it's a global solution rather than one that's map-specific.)
I tried the first way already and sadly it still allows them to stagger it through the teleport if they time it right. The terrain ID though! I didn't think of that, I will definitely give that a try! As you say, it'd be a global fix if it worked.
QUOTE (Brent Murray @ May 14 2011, 08:07 AM)

Vanit, I played the demo for about 10 min's last night and I was quite impressed with what you had thus far. Everything felt like I was playing the real thing, and reeks of professionalism that almost like Square had a hand in making this game with you; that's how awesome this game this is. I also liked how you had the battle animations down to every single little detail like the actual characters perform in the actual game -- that was a nice touch. Mapping was good, and everything felt like it should be. The menus were a little slow, but I got used to it after awhile and I didn't care after a few call-up's, and the battles flowed very nicely; excellent job, thus far. My only complaint is the walking speed, but since the maps were a bit on the short side, it didn't matter that much.
Can't wait for more! Excellent work, thus far. ^^
It’s been awhile since I’ve played FF7, so it was nice to revisit this game in 2D form, which, frankly, I think is much better.

I'm glad you liked it!

You're not the only one to mention Cloud's walking speed, and I think this is simply because people are used to zooming around really large maps in rpg maker games. I've drawn the maps to scale with Cloud's height and walking speed from the original, if he walked any faster it'd be too fast! The menu is due for an overhaul at some point, after which it should be just as responsive as the menu in the battle system (before my next demo release hopefully).
Thiamor
May 18 2011, 02:11 PM
I've played this, but I saw it firstly in the locked and moved topic in RMN if I said the name right.
Now, this is great but lagged for me.
One thing I know you'll need is a command that will access a restart of the game when pressing like L+R+Select (Shift can be Select) so it adds more of the original game to this one.
I cannot wait to see summons and cut scenes, It'd be cool if you get an artist and do say, anime based cut scenes.
Thiamor
May 23 2011, 05:47 PM
Hello? Anyone out there? Sorry for the double post but it's been a little while with no reply from anyone.... -_-
amerk
May 23 2011, 07:20 PM
Tested out the demo. I'm guessing it's very short, because both times when I played and you joined up with the others (where Barret first tells you he doesn't trust you), when I attempted to follow the others to the next screen, it wouldn't let me (although there is a red arrow indicator as if I should). Is that as far as the demo currently goes?
Anyways, pretty solid game, so far. One thing to note, I don't think it's a necessity to copy the dialogue word for word, but perhaps that is what everybody prefers. I agree, the walking speed could be increased. I thought it was funny that when you follow Barret after the train, Barret just walks past the guards as they are coming for you. I know it was that way in the PS game, but seeing it here in 2D, just seemed more obvious.
Overall, it really captures the spirit of FFVII. Until such a time as a real remake comes about (as if), this could very well satisfy the appetite.
Thiamor
May 24 2011, 07:52 AM
Hell I'm one of the many FF fans who would love it to be actual dialog. Word for word. It defeats the purpose if he doesn't, then it isn't a good remake to me. It brings out the most of the nostalgic factors of the game if it is an exact remake, and it adds it even more being in the old, classic style of 2D.
Vanit
May 24 2011, 08:56 AM
Hey Thiamor! I've been swamped with assignments at uni the last few days so I've been keeping a low profile (or trying to). I saw your post originally but I forgot about it as I worked. I appreciate you took your time to track down this thread and tell me your thoughts and I wish I was able to have got back to you sooner!
About the restart, I could potentially do something like that, I'll probably make it L+R+a number so its harder to do by accident though. Fortunately I can embed something like this in the event thats incrementing my clock so it should be without incident.

This is low priority though as you can do this already by pressing F12.
I won't be doing anime cut scenes. My intent is to make this game feel like if Square released FF7 on snes and not PSX/PC, and I think going with anime cutscenes would pull people out of that. I'll be remaking the cutscenes all in the bird's eye perspective, but I will be cheating a bit with the picture functions so I can zoom and the like. I'm working on the intro right now and I think you guys are going to love it - it will be hauntingly familiar, as it'll be following the cues from the original with every detail preserved, but in a different perspective!
Lastly, when exactly did the lag occur? There are some optimizations I've yet to make in the battle system. Was it anything to do with when the damage numbers popped up?
@amerk: I really should've put a sign there! Thats where the demo ends for now I'm afraid. I'm still on the fence about if I should preserve the grammatical errors in the dialogue - people who don't remember them or didn't play the original will be taken out of the game because of glaring grammatical errors, but similarly people might find it even more nostalgic if the errors are there too. A few people have mentioned the errors now and I'm starting to think fixing them is the lesser evil. Alternatively I will provide an option to term them on and off I think.
Also you mentioned the fact that Barret running through the guards making even less sense in 2D. This is very true, and is actually reveals one of the "artistic" goals of this project - to provide a new perspective in a game by seeing it a different way. I'm glad you noticed!

Thanks again for the feedback everyone!
Amon
May 24 2011, 09:06 AM
Oh I really wanted to post a reply to this on my main but still banned lol

Anyways, not all FF remakes are bad! only 95% really, I thought FF dark cloud wasnt to bad at all. But back to your remake, I LOVE it, you actually made the background envirment of FF7 and I know that takes ALOT of work, you have put some serious time and skill into this so dont stop now no matter what anyone says cause this is the best looking FF remake/fangame ive ever seen, it makes me want to play FF7 again, im not going to of course no time but this does give me that spark of the good old days when there wasnt a better rpg for PS1. This is very impressive but I think that when you make your own game with your skill its gonna be even better.
Twin Matrix
May 24 2011, 09:12 AM
^
Totally off-topic, but should you even have a second account if you're banned? Those don't happen without a reason.
Anyhow, I love how this project looks.

Excuse me if this has been asked before, but is RTP required for the demo? I haven't got RM2k3 installed anymore.
Vanit
May 24 2011, 09:19 AM
Thanks for the support Amon!

And, RTP is not required at all!
Twin Matrix
May 24 2011, 09:42 AM
Really? Wow, such a small project filesize. Great. *downloads*
Vanit
May 24 2011, 09:49 AM
And here I was thinking it was large! Sadly the complexity of custom systems compounded with some of the shortcomings of rm2k3 means that the current total of pictures the game is using is... 4238 (yeah you read right). The sound effects are also bumping up the filesize quite a bit. I expect by the time I release a sizeable version of the game it'll be well over 200mb - pretty high for an rm2k3 game that isn't using an mp3 soundtrack if you ask me!
Cozzer
May 24 2011, 10:02 AM
QUOTE
@amerk: I really should've put a sign there! Thats where the demo ends for now I'm afraid. I'm still on the fence about if I should preserve the grammatical errors in the dialogue - people who don't remember them or didn't play the original will be taken out of the game because of glaring grammatical errors, but similarly people might find it even more nostalgic if the errors are there too. A few people have mentioned the errors now and I'm starting to think fixing them is the lesser evil. Alternatively I will provide an option to term them on and off I think.
For what's worth, my advice is to correct them. I understand wanting to keep every "quirk" of the original game, but.. errors are just errors.
I agree with you about doing all the cutscenes in the "normal rpgmk style", though. If you take the time to make a lot of sprites for the characters (which you are doing), they'll feel way more natural and expressive than some slide show.
Anyway, it's really impressive just imagining how much programming went into this.
kaz
May 24 2011, 10:05 AM
QUOTE (Amon @ May 24 2011, 06:06 PM)

Oh I really wanted to post a reply to this on my main but still banned lol

Anyways, not all FF remakes are bad! only 95% really, I thought FF dark cloud wasnt to bad at all. But back to your remake, I LOVE it, you actually made the background envirment of FF7 and I know that takes ALOT of work, you have put some serious time and skill into this so dont stop now no matter what anyone says cause this is the best looking FF remake/fangame ive ever seen, it makes me want to play FF7 again, im not going to of course no time but this does give me that spark of the good old days when there wasnt a better rpg for PS1. This is very impressive but I think that when you make your own game with your skill its gonna be even better.
Well if your main is banned and you are posting here that is ban evasion- so goodbye
Thiamor
May 24 2011, 12:13 PM
I think the music should be in MP3 if it isn't. I just feel that midi music takes away from gameplay as to how fake it sounds.
Also I LOVE the idea to be able to turn on and off the error text. Do that XD
Even if all the sound effect and music are actual rips from the game, it'll still be like 100 times smaller in file size than all of FF7 as a whole.
Each disk, file size speaking, is like 500 through maybe 700 MB (each). The highest yours would most likely be, I'd say, is 300-400 MB as a whole. Which for this type of game, on RPG Maker, isn't bad and worth it. Doing it on RPG Maker will be able to release the game to a more, wider variety of people who aren't able to play Roms, or the PS1 version of the PS Store Version.
Vanit
May 24 2011, 12:56 PM
I've been considering implementing an MP3 option where I fill the Music folder with dummy MP3 files and people can optionally overwrite them with whatever they want and then enable it in the menu (infact if you check the config menu in the demo you'll see I've had that idea for a while). But the bottom line is that MIDI's will give the superior experience for two reasons - 1) they are the official MIDI's that I ripped from the pc version of FF7 so they do sound pretty accurate, 2) I've edited them to have the rm2k3 looping tags so they loop properly and naturally as they would in the original game.
If I were to make MP3's the default or only option there would be rampant problems such as the battle theme will loop the intro bit, the fanfare theme looping on the fanfare rather than just the loot menu music, the bombing mission would replay the intro music as they are 1 track in the ost, and it goes on. There are things I could do to mitigate this such as preparing an optional MP3 addon you can download with the music formatted in separate files, but it would still sound choppy when they transitioned. Ultimately its just not really a workable thing and I think attempting to do it or force it would lower the quality of the remake.
Lato
May 24 2011, 01:02 PM
Ah i see this and I just fall in love, it has been a LONG time since I seen someone kicking this much ass on gamemaking. Makes me really wanna step it up and learn to custom some stuff to. This game has such a FF7 feel to it, its good to see someone keeping the all time favs alive cause the rpgs of today are just sad. BTW you should tell ppl where/how you learned to do this stuff cause its really somthing, you just read the tuts or what?
Vanit
May 24 2011, 01:31 PM
Thanks!
Haha no, the programming principles I've used are far beyond anything you'll see in any tutorial. In terms of languages you can code anything logically in rm2k3 that you could in C, people just really underestimate whats possible with it. I'm a Software Engineer by trade so I just applied my knowledge in that area to rm2k3.
Thiamor
May 24 2011, 02:07 PM
So any update as to how far the game is along? For example, on the demo it stops after like the second or third map. How far ahead are you in terms of plot?
Vanit
May 24 2011, 07:21 PM
In terms of plot progression I'm not further than where it goes at the moment. I've doubled back to do the intro so I'm drawing all the sprites I need for that currently, which could take a few weeks (full time uni ftl).
Thiamor
May 24 2011, 07:26 PM
How long do you think it'd take you to do that and to get a demo made where you get out of Midgar after fighting that weird machine?
If it takes you a few weeks to do the intro, then a rough guess would be 4 to 5 months, right?
Vanit
May 24 2011, 07:38 PM
I'm not sure how far exactly I'll get, but I'll have a sizeable demo out by the end of the year. Chances are it'll be somewhere around that point though, I'm hoping.
Thiamor
May 24 2011, 08:25 PM
Do you have MSN? I may need to have you added as this strikes my interest more than anything has recently.
Vanit
May 24 2011, 10:53 PM
I think it might be more beneficial for everyone if you ask your questions here and then everyone can see my replies to them.
Thiamor
May 25 2011, 08:41 AM
It wasn't really for questions about this, more than to get updates, and most likely help via RPG Maker; but over all to get people like you who know what they are doing, on my contact list. I've already got a few who are good at it on there XD
Vanit
May 25 2011, 10:19 AM
I suppose it couldn't hurt. If anyone else wanted to speak to me directly about rpg maker they can also add me at burningferret (a) hotmail . com. If the questions are specifically about FF7 please keep them to this thread though!
UPRC
May 25 2011, 01:15 PM
I'm still impressed that you're really serious about taking on such a huge project, Vanit. You deserve props alone just for your enthusiasm.
Vanit
May 25 2011, 07:31 PM
Thanks, UPRC! I'm nothing if not relentless.
ranmaster
May 25 2011, 09:30 PM
Gosh, software engineers are like, god tier at Rpg Maker. =D
SorcererRaiden
May 29 2011, 03:12 AM
You got to be the best spriter around :3 Your animations are so FF7-like!
I'm surprised FF8 didn't get a 2D SDK yet xD
Vanit
May 29 2011, 10:27 AM
I'm glad you like the sprites, I put a lot of effort into getting them just right! I can't hold a candle to seasoned spriters like Oceans Dream and Nessiah though.
On the note of FF8, the reason that I went with FF7, although its my favourite, is its also the most documented. I think accurately remaking FF8/FF9 would be impossible with the current information out there.
felipe_9595
May 29 2011, 11:28 AM
QUOTE (Vanit @ May 29 2011, 03:27 PM)

I'm glad you like the sprites, I put a lot of effort into getting them just right! I can't hold a candle to seasoned spriters like Oceans Dream and Nessiah though.
On the note of FF8, the reason that I went with FF7, although its my favourite, is its also the most documented. I think accurately remaking FF8/FF9 would be impossible with the current information out there.
A Final Fantasy 9 Remake would be amazing xD (But for FF8.... ugh, no, thanks, is horrible :S)
Vanit
May 29 2011, 02:11 PM
I should add that another thing that would make issue for a 2D remake of FF9 especially is that the director had a greater appreciation for 3D space and camera angles. I don't know if you've noticed, but if you look back at the prerendered backgrounds in FF7 you can tell that they were still thinking 2 dimensionally with almost all the shots being top down with an isometric camera angle. However, if you look at the prendered backgrounds in FF9 a fair portion of them are almost side-on, or are pointing up, such that the necessary detail for making topdown versions of these scenes in certainty is missing.
Thiamor
Jun 1 2011, 10:30 AM
Dude, I can see, from what I've seen, why you've not posted much on RMN.
They denied a game profile I did (accepted it first) because of the resources I used. I used a lot of the stuff from Exit Fate, but 95% of that game is a knock off. Copied from other games. They said 'it is denied until you remove every single resource from Exit Fate. Seriously tacky, dude!" and most of that site's games are cheesy, lame rip offs from other games, and that goes for Exit Fate. There may be a very few bits that are of his own creation, but they don't have a right to allow these other, worse games, and then deny me my right when even that game I used, used more from other games.
Sailerius
Jun 1 2011, 10:49 AM
QUOTE (Thiamor @ Jun 1 2011, 10:30 AM)

Dude, I can see, from what I've seen, why you've not posted much on RMN.
They denied a game profile I did (accepted it first) because of the resources I used. I used a lot of the stuff from Exit Fate, but 95% of that game is a knock off. Copied from other games. They said 'it is denied until you remove every single resource from Exit Fate. Seriously tacky, dude!" and most of that site's games are cheesy, lame rip offs from other games, and that goes for Exit Fate. There may be a very few bits that are of his own creation, but they don't have a right to allow these other, worse games, and then deny me my right when even that game I used, used more from other games.
Stealing art is never okay, whether it be from Exit Fate or FF7.
Thiamor
Jun 1 2011, 11:56 AM
Not a lesson learned when I was given permission, and you're saying that...on this topic. A remake of FF7

But on a serious note, I was given an okay by the creator. Which should have been enough, given most of their member's games are copied resources, and most of Exit Fate's is as well.
But enough.

Any updates, Vanit?
Vanit
Jun 1 2011, 12:17 PM
QUOTE (Thiamor @ Jun 2 2011, 04:30 AM)

Dude, I can see, from what I've seen, why you've not posted much on RMN.
They denied a game profile I did (accepted it first) because of the resources I used. I used a lot of the stuff from Exit Fate, but 95% of that game is a knock off. Copied from other games. They said 'it is denied until you remove every single resource from Exit Fate. Seriously tacky, dude!" and most of that site's games are cheesy, lame rip offs from other games, and that goes for Exit Fate. There may be a very few bits that are of his own creation, but they don't have a right to allow these other, worse games, and then deny me my right when even that game I used, used more from other games.
I really don't see why you posted this here. RRR is where I post most and has a really good community; infact its my favourite RM community at the moment. I don't know the details of your situation, but even though I'm borrowing FF7's style, all the artwork is drawn by me.
As for updates, none at the moment. Its towards the end of the uni semester and I'm very busy with other things.
Thiamor
Jun 1 2011, 01:25 PM
I was joking about your stuff, as seen by the

.
I did notice a little while ago that you had like only a few posts on RMN, unless I'm wrong and saw less digits XD
But good luck as I'm a big fan of 7. Well of 7-9. I'm wishing 8 would be made like you're doing, too. Someday.
SorcererRaiden
Jun 1 2011, 02:21 PM
QUOTE (felipe_9595 @ May 29 2011, 08:28 PM)

FF8.... ugh, no, thanks, is horrible :S)
That's your opinion. It isn't horrible, you just don't like it. However, let's not get into a what's-the-best-final-fantasy war now.
Thiamor
Jun 1 2011, 03:35 PM
Yeah, because in 'my opinion' 9 was pretty bad. But it isn't like it is smart to argue over it as opinions cannot, and never will be facts.
Vanit
Jun 1 2011, 03:42 PM
Please keep it on topic guys! I can handle a bit of offtopic banter, but please don't derail my thread!

To that end I'll release a VERY early shot of my work on the FF7 intro. I'm in the colouring phase at the moment, but in terms of design its mostly finished:
felipe_9595
Jun 1 2011, 06:53 PM
Last off topic please XDDD
http://psx.ign.com/articles/162/162190p1.html FF IX Review : 9.2
http://psx.ign.com/articles/153/153847p1.html FF VII Review: 9.0
8 is not bad (is just too...... emo for me XD) but 9 is far best than 8. (btw i prefer FF VIII than any other FF that came after 10 so XDDDDD)
=====================================================
Vanit, how many time have you been working on this???????
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.