Hi
I want to make a online game web site . i want to klnow , what do i need for now ? should i install any script ?

please give me some information about it

thanks

Dani AI

Generated

A concise, practical plan for a browser-based multiplayer game site, tied to the points already raised by and .

Start with architecture: a game client (HTML/CSS/JS or an engine), a networking layer (real-time transport), and an authoritative backend that runs the simulation, matchmaking and persistence. For browser transport, modern builds use WebSocket for simple bidirectional messaging or WebRTC DataChannels when peer-to-peer / UDP-like delivery is needed; both are standard browser APIs. WebSocket APIRTCDataChannel / WebRTC Data Channels. (developer.mozilla.org)

Pick an implementation path that matches scope: a lightweight Node.js + Socket.IO stack is fast for prototypes and handles reconnection/heartbeats, while a purpose-built multiplayer framework (room/state model) like Colyseus gives authoritative rooms, state sync and matchmaking out of the box. Example (very small) using Socket.IO style messaging:

const io = require('socket.io')(3000);
io.on('connection', socket => {
  socket.on('input', data => {
    // apply to authoritative state, then broadcast snapshot
    io.emit('snapshot', currentState);
  });
});

Docs: Socket.IOColyseus (authoritative rooms & sync). (socket.io)

Design rules that matter: keep the server authoritative (prevents easy cheating), simulate at a fixed tick rate, and use client-side prediction + server reconciliation for player control while interpolating other entities for smoothness. Buffering/interpolation and the right tick/buffer trade-offs are essential to hide jitter — a classic reference is Gaffer On Games’ snapshot/interpolation guidance. Snapshot interpolation and related techniques. (gafferongames.com)

Practical checklist: finish single-player physics first, add deterministic server tick, implement input messages + server snapshots, test with simulated latency, and plan scaling (room drivers / Redis for presence when needed). Frameworks above provide examples and production patterns to reuse rather than reinvent. (docs.colyseus.io)

Recommended Answers

All 4 Replies

You'll want to master XHTML and CSS
I think it's handy to know a little javascript too
http://www.w3schools.com
is a great FREE resource for learning these

Making websites isn't all that hard
Just be sure to draw it out on paper before you start coding anything
have fun ^_^

if you want a really customized forum on your website
then you'll likely need some PHP skills
(that is if you end up using something like phpBB)

i know php and javascript well .

how should I make a multiplay onlinegame web site ? should i use any script or other ?

make sure to include bop the whopper

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.