Thought I would make a post here about my Browser based RPG engine I am working on. Its somewhat like Eclipse or the standard Mirage style 2d mmorpg but through the browser and more browser game based.
It is still in the early phases but I have a lot of the big things finished
Map Designer
Collisions
Encounter system
Combat
Its much like eclipse but built in the browser. It will have less features per say but more adaptability to php and JS for far more feature options. Also no download and runs right in the browser.
you use WASD keys to move around

Each map has a 208 point database driven collision system.
Basically the database pulls the appropriate map depending on the players location then builds the collisions from the same table using a boolean process. Which means no iframe or crazy java app.
You walk to the edge of the map and go to the next map, any direction n,s,e,w.
Map builder and blocked blocks

for admin panel:
by clicking on the block it will change it to a 1 or 0, o means clear, 1 means blocked.
Working on real time moving creatures per map right now.
Will post progress.