1st Feb 2016 ScreenShot
- MMORPG game based solely on HTML, CSS,JS+jQuery with turn based combat
- JRPG style, PVE (solo/group [max 3]/dungeons/bosses), PVP(casual — offline and livePVP/ranked/3v3/Total PVP Server “Chaos mode” — PVP combats randomly inserted between PVE encounters — lorewise: Players have gone mad under some kind curse in the realm, so everyone see each other as monsters)
- Main story line, side quests, each server will have unique and different map.
- Unique items dropped from enemies (random stats, all item stat effects will be percentual) overall character stats max cap.
- Possible microtransaction system — only visual items. Subscription (something like 5$ a month, just to support creators) — no waiting time after death and lower XP dept after dying?
- Probable support of all systems (basically all systems, that have modern web browser — WIN, OSX, Linux, IOS, Android + Consoles?)
- So far very good RAM usage, just the nwjs after logging in and rendering a sector, whole process takes only 25MB of RAM.
- “Pixel art” graphics, option to turn on “prettier” graphics — better weather effects and 3D world effect with perspective (not just from top down)
- Game contains one main html, which is affected and modulated by controlling javascripts, which can call each other and run functions.
- It will be basically impossible to cheat in the game, because user periodically reads a game state from the server every second (so far quite good TTFB speeds 30–50ms on PHP7 free hosting endora)
- Main controll algorithm will run once in a second (meaning the server will be “1tick”)
- Game has simple brute-force preventer + you need to authorize from each new IP address via email — unauthorized IPs will have query limit once in a five seconds (BruteForce part of script preventing attacks have not yet shown negative effect on TTFB)
- All information about players, partaken fights, trades and so on (basically all actions) will be zlib compressed and recorded, server will also periodally backup the DB once a day for possible rollbacks.
- DB is local based in json format, passwords are bcrypted, user after successfully logging in will receive an access token, valid only for logged one current IP. Token will be used for communication with server instead constant revalidating the password. Token will be used for periodical reading of “gamestate” and also for sending an action requests to server. With access from unauthorized IP — possible hacker could guess the right token to username (highly unprobable with possible frequency of 1 guess in 5 seconds — the token will be revoked and deleted from database and the real user will be asked to revalidate his login with new token.
- World map — with own PHP tool, the world is generated from an map image (png 2000x2000) -> 4M tiles into smaller sectors 50x50 -> 1600 smaller sectors (~7.33kB sector, ~11.7MB whole world). Player downloads and caches sectors he has visited even for future use.
- Free hosting like an Endora (PHP7, limit 3 simultaneous processes at once) could possibly take care of 60 players at once without any lag and issues. Estimated bandwidth per second is guessed to be 0.5–1kB/s per user.
Personal notes:
(most of the time just stuff that comes to my mind during a day and i “write it down” via my phone)
Levels:1–10 (to start with)
XP to level:8,12,18,27,40,60,90,135,200
killXP:25% +/- for each level difference
Trade double handshake — after agreeing to trade, you will have to agree once again to cancel out possible scams.
Weather,Day/Night Cycle, Light/Shadows (shadow inset), rain, clouds, storms, weather affecting combat, lowered visibility?