ERYNDEN'S PROFILE

Erynden
Gamers don't die, they respawn.
1702
I've been messing around with RPG Maker programs since 2005, but haven't released a single game yet. Been reworking on the same old idea I had for years now while getting distracted by new ones.

Search

Filter

Rpg Maker game tear-jerkers.

I don't want to mention any spoilers, but in a certain scene or two from Notes of the Second Mellynd War while it was RM2k3, I felt a tear swell up in one of my eyes. Also, near & in the end of Dhu'x Scar, I got an actually tear strolling down my cheek. Although I never wanted to cry a river for an RM games, the closest I got were those two games.

You are stranded on a deserted chipset (island) with 1 RMN member

post=199730
I can't stand any of you so...


XD orly

What are you working on now?

Realizing that working on two projects at the same time is a dumb idea on my part...
Here's a pic of the town that is taking over a week for me to finish(RMXP):


Here is a map of the town I am working on for the second game I am working on(RMVX):


Also, I know this isn't a screenshot topic, but anyone got any advice for me on my mapping?

What are you jammin' too?

This song over, and over, and over, and over..... Man, this video makes me wished I had the money to go see it in theaters at the time! (T_T)

What are you working on now?

Still mapping a town I have been working on for a week now and it is only half way done at best. It's not even that big of a map!

Shinan's 'What the hell' 3 day gamemaking contest!

Silly Question, but does it HAVE to be called, "The Room: *insert title*?"

How to share to people without RPG Maker XP?

post=155762
Edit:Jakester!! You got it all wrong! :S
EditEdit:Hang on we both were right! Do what i said first then compress the game :)


Well, I assumed that compressing the game project would automatically do everything for you to make it run for those who do not have RMXP.

Yay for being half correct!

How to share to people without RPG Maker XP?

Go to your project, click on "File" in the upper left corner and select "Compress Game Data" and that might do you. I've never done it before, so if there is an extra step or two, it should be easy to figure out.

Back from obscurity: Onyx 2 gets a (small) update

I wasn't put off by the facesets to play this game before, but I'll admit that it does look better. (b^_^)b

(RMXP)Exp Problem

Ok, here is the problem: I go into the script (mind you, when it comes to scripting I am a pure amateur) and tried to create my own EXP curve, but when I reach the designated level I want to be the maximum it continues to go pass that level. I tested this with both lvl 20 and lvl 99 as max and when it continues to do this and I get errors. Oh, I tried google, but it didn't help me find my solution this time.

The only part of the script I change is this:
#--------------------------------------------------------------------------
# * Calculate EXP
#--------------------------------------------------------------------------
def make_exp_list
actor = $data_actors[@actor_id]
@exp_list[1] = 0 <---------------------------------------------------This fella here.
pow_i = 2.4 + actor.exp_inflation / 100.0
for i in 2..100 <---------------------------------------------------And here.
if i > actor.final_level
@exp_list[i] = 0
else
n = actor.exp_basis * ((i + 3) ** pow_i) / (5 ** pow_i)
@exp_list[i] = @exp_list[i-1] + Integer(n)
end
end
end

All I do is set the @exp_list with the levels (1,2,3, etc), and change the for i in 2..100 into for i in 101..102. So, what did I do wrong?