Skip to main content

All Questions

0 votes
0 answers
182 views

OSError: [Errno 98] Address already in use, Comes up only when running on a port forwarded connection

I am trying to create a multiplayer server and have successfully made it work when using it on the same computer and the same local WiFi. However, when I try and move it to my server (on AWS) I get a ...
Bozo United's user avatar
1 vote
1 answer
46 views

Why is the 'game' module running automatically when I am trying to run 'FootballSim_server' module?

MODULE I AM TRYING TO RUN - Football_sim module import socket from _thread import * import plyer import json class GameServer: def __init__(self): self.Server = '127.0.0.1' self....
Kelan Westwood's user avatar
0 votes
0 answers
185 views

Recieving information from sockets in multiplayer game without huge delay

I am working on a multiplayer game in python and pygame and am having issues with the information receiving part through sockets and its making my game extremely glitchy/laggy. Essentially I have a ...
Aayush's user avatar
  • 124
0 votes
1 answer
73 views

Messages cannot flow between client and server

I followed the youtube video and used python to make a multiplayer online game of rock-paper-scissors. When I execute the script, the console displays "Couldn't get game", which is generated ...
Martin's user avatar
  • 29
1 vote
2 answers
1k views

Turn Python turtle game into local LAN multiplayer game [closed]

I made a game called "Pong" in Python using the turtle module, and I want to make it a local LAN multiplayer game. Can someone tell me how I can do it? I want to make it a localhost-like ...
Unknown's user avatar
  • 21
0 votes
0 answers
505 views

Python TCP Socket is too slow for my multiplayer game on a real Network

I have coded a drawing & guessing game simular to skribble.io and I'm using a TCP Socketserver for providing the game information to all connected players. On the client side is a thread running ...
v e n t E c h's user avatar
2 votes
1 answer
4k views

Python Multiplayer Games

I have been trying to find a good tutorial for making multiplayer games with python, but have struggled to find one that covers more than multiplayer on the same wifi connection. If its even ...
user3530572's user avatar
2 votes
1 answer
4k views

Creating a 2 player game in Python

My friend challenged me to make a version of the popular game "Battleships" that we could play against each other. If you don't know the game, it's not really important because the hard part for me ...
Pazarito's user avatar
1 vote
1 answer
580 views

Twisted / Amp networking: Respond to all clients, not just one making a request

I'm trying to learn my way around these newfangled "factory" style network libraries. Twisted comes with much acclaim, but is an absolute nightmare for me, since I am not familiar with lambda and thus ...
John's user avatar
  • 173
7 votes
2 answers
4k views

Synchronizing time between simple python-socket-based server and clients

I have the beginnings of a small multiplayer game that I'm writing in python as a learning exercise. Currently the server runs at 10 fps, while the clients run at whatever rate they like. This works ...
Alex's user avatar
  • 73
2 votes
2 answers
722 views

Twisted Spread suitable for multiplayer racing sim?

Do you think that Twisted Spread may be suitable (in terms of performance) for a multiplayer racing simulator? The rest of the application is based on Python-Ogre. Can Perspective Broker run upon (...
Roberto Russo's user avatar