Game Tester Projects
Looking for freelance Game Tester jobs and project work? PeoplePerHour has you covered.
Payment systems tester from India
Valid for India residents only! The development team is looking for a payment systems tester from India to test how our service works with peso and Indian payment solutions. Task: make several test payments (we provide the funds for them) and send a report so that we can analyze whether the system is working correctly. Experience: not required Requirements: availability of a Indian bank card and the ability to make test payments. Availability of an usdt-wallet for receiving funds for test payments.
4 days ago14 proposalsRemoteopportunity
Looking for a experienced penetration tester
Looking for a experienced penetration tester to exploit (gain usernames and passwords ) of three servers in a sandbox environment using Kali Linux
23 days ago9 proposalsRemoteProgram to devlope offline game
import pygame import random import time # Initialize pygame pygame.init() # Game Constants SCREEN_WIDTH = 600 SCREEN_HEIGHT = 400 FPS = 60 # Colors WHITE = (255, 255, 255) RED = (255, 0, 0) GREEN = (0, 255, 0) BLACK = (0, 0, 0) # Initialize the screen screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT)) pygame.display.set_caption("Dodge the Falling Objects") # Clock object to control game speed clock = pygame.time.Clock() # Game variables player_width = 50 player_height = 50 player_x = SCREEN_WIDTH // 2 player_y = SCREEN_HEIGHT - player_height - 10 player_speed = 5 obstacle_width = 30 obstacle_height = 30 obstacle_speed = 5 obstacles = [] score = 0 # Fonts font = pygame.font.SysFont('Arial', 30) # Function to draw the player def draw_player(x, y): pygame.draw.rect(screen, GREEN, (x, y, player_width, player_height)) # Function to draw obstacles def draw_obstacles(obstacles): for obstacle in obstacles: pygame.draw.rect(screen, RED, obstacle) # Function to handle collisions def check_collision(player_rect, obstacles): for obstacle in obstacles: if player_rect.colliderect(obstacle): return True return False # Main game loop def game_loop(): global player_x, score running = True player_rect = pygame.Rect(player_x, player_y, player_width, player_height) while running: screen.fill(WHITE) # Event handling for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Get the keys pressed keys = pygame.key.get_pressed() # Move the player if keys[pygame.K_LEFT] and player_x > 0: player_x -= player_speed if keys[pygame.K_RIGHT] and player_x SCREEN_HEIGHT: obstacles.remove(obstacle) score += 1 # Check for collisions if check_collision(player_rect, obstacles): running = False # End the game if there is a collision # Draw everything draw_player(player_x, player_y) draw_obstacles(obstacles) # Display the score score_text = font.render(f"Score: {score}", True, BLACK) screen.blit(score_text, (10, 10)) # Update the display pygame.display.update() # Frame rate clock.tick(FPS) # Game Over Screen game_over_text = font.render("Game Over", True, BLACK) screen.blit(game_over_text, (SCREEN_WIDTH // 2 - 100, SCREEN_HEIGHT // 2 - 30)) pygame.display.update() time.sleep(2) # Pause before quitting pygame.quit() # Run the game game_loop()
8 days ago8 proposalsRemotePayment systems tester from Chile
Valid for Chile residents only! The development team is looking for a payment systems tester from Chile to test how our service works with peso and Chilean payment solutions. Task: make several test payments (we provide the funds for them) and send a report so that we can analyze whether the system is working correctly. Experience: not required Requirements: availability of a Chilean bank card and the ability to make test payments. Availability of an usdt-wallet for receiving funds for test payments.
25 days ago2 proposalsRemoteA 2D Shooter game
Project: "Space Invader Clone" – A Simple 2D Shooter Game in Python Overview: The project is a basic 2D space shooter game inspired by the classic Space Invaders. Using Python and the Pygame library, the game will allow players to control a spaceship at the bottom of the screen, shooting at alien invaders falling from the top. The goal is to eliminate all the aliens while avoiding their projectiles. The game will feature simple mechanics, including shooting, moving left and right, and dodging enemy attacks. Key Features: Player Movement: The player controls a spaceship at the bottom of the screen that can move left and right using the keyboard (e.g., arrow keys or 'A' and 'D'). Shooting Mechanism: The player can shoot bullets upwards to destroy enemies by pressing a key (e.g., spacebar). The bullets travel vertically until they hit an alien or move off the screen. Enemy Movement: Aliens move horizontally across the screen. When they reach the edge, they drop down and reverse direction, gradually getting closer to the player's spaceship. Collisions: The game detects collisions between player bullets and aliens as well as between alien bullets and the player's spaceship. Game Over and Scoring: The game ends when the player’s spaceship is hit by an alien's projectile or if the aliens reach the bottom of the screen. The player earns points by destroying aliens, and the score is displayed at the top of the screen. Levels of Difficulty: # Initialize Pygame pygame.init() # Game window setup screen_width = 800 screen_height = 600 screen = pygame.display.set_mode((screen_width, screen_height)) pygame.display.set_caption("Space Invader Clone") # Colors WHITE = (255, 255, 255) GREEN = (0, 255, 0) RED = (255, 0, 0) # Game clock clock = pygame.time.Clock() # Game Objects class Player(pygame.sprite.Sprite): def __init__(self): super().__init__() self.image = pygame.Surface((50, 50)) self.image.fill(GREEN) self.rect = self.image.get_rect() self.rect.center = (screen_width // 2, screen_height - 50) self.speed = 5 def update(self): keys = pygame.key.get_pressed() if keys[pygame.K_LEFT]: self.rect.x -= self.speed if keys[pygame.K_RIGHT]: self.rect.x += self.speed if self.rect.left screen_width or self.rect.left < 0: self.rect.y += 20 self.rect.x *= -1 class Bullet(pygame.sprite.Sprite): def __init__(self, x, y, direction): super().__init__() self.image = pygame.Surface((5, 10)) self.image.fill(WHITE) self.rect = self.image.get_rect() self.rect.center = (x, y) self.direction = direction def update(self): if self.direction == "up": self.rect.y -= 10 elif self.direction == "down": self.rect.y += 10 if self.rect.bottom screen_height: self.kill() # Initialize game objects player = Player() all_sprites = pygame.sprite.Group() all_sprites.add(player) aliens = pygame.sprite.Group() for i in range(5): for j in range(5): alien = Alien(100 + i*60, 50 + j*50) aliens.add(alien) all_sprites.add(alien) # Main Game Loop running = True while running: clock.tick(60) # 60 FPS for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Update game objects all_sprites.update() # Check for bullet-alien collisions for bullet in all_sprites: if isinstance(bullet, Bullet): if pygame.sprite.spritecollide(bullet, aliens, True): bullet.kill() # Destroy bullet and alien score += 10 # Draw everything screen.fill((0, 0, 0)) all_sprites.draw(screen) pygame.display.flip() pygame.quit()
15 days ago11 proposalsRemoteopportunity
Wager Shake
Build an App that lets users create games, invite friends and complete friendly wager without the need for CASH. Create an onboarding process. User profile - Settings that lets you set a limit that you can spend each month Games - This will include a set selection of games and free creation Friends - List of friends on the App. Invite option trough a link or contacts Chat - Account - This will allow you to add funds using Apple Pay, google Pay or debit card. Withdrawal options and transaction history. Once a user has created their account they will be able to create a game. Either from the pre-populated section or create their own game. They can then set the 'Stake' that ever user playing the game will need to pay. They can then invite players that are already in their friends list, phone contacts (this will send them a link vis whatsapp or via a link that can be shared. Each player that enters the game will need to have the amount of the 'Stake' in their account balance. This amount will then be frozen from their balance so it cannot be used for another stake. Once the game has ended. The user that created the game selects the winner and then each player confirm their 'Stake' can be transferred into the winners account. Each games that's created will have a chat section. The chat section will also show the audit trial for that game. Ie players that have added their stake, winner(s) and payouts. Once a game has ended players can leave the game.
12 days ago18 proposalsRemoteSmart TV App Testers Needed
We’re looking for people to test our Smart TV app and share their feedback. What you need to do: Install the app on your TV. Use it and see how it works. Let us know what you liked and what could be improved. Your feedback will help us make the app better! If you’re interested, just contact us, and we’ll explain how to get started.
25 days ago16 proposalsRemoteLooking For A Penetration Tester for Websites & Web Applications
Freelancer Opportunity: Penetration Tester for Websites & Web Applications We’re on the hunt for a highly experienced Penetration Tester to collaborate with us in developing an exciting new service offering focused on website and web application security. If you’re passionate about uncovering vulnerabilities, testing the limits of digital security, and creating safe and secure web environments, we’d love to hear from you. About the Role: We’re a white-label design and development agency looking to expand our services into the cybersecurity space. We want to partner with a skilled freelancer who can not only conduct comprehensive penetration testing but also help us shape and refine this service to take to market. This is more than just a testing role — it’s an opportunity to showcase your expertise and collaborate with us on creating a standout offering for agencies and their clients. What We’re Looking For: - Specialist in Penetration Testing: Expertise in identifying vulnerabilities in websites and web applications, including OWASP standards and methodologies. - Experience in Web Security Tools: Knowledge of tools other industry-standard platforms for scanning and reporting. - Proven Track Record: Demonstrable experience in penetration testing, including examples of previous projects, reports, or case studies (where confidentiality permits). - Collaborative Problem-Solver: Ability to provide actionable recommendations to improve security and work closely with our team to refine the service. - Strong Communication Skills: Ability to explain technical vulnerabilities in clear, client-friendly terms. What You’ll Be Doing - Conducting penetration tests on websites and web applications for vulnerabilities. - Creating detailed reports outlining findings, risks, and actionable solutions. - Advising on best practices and strategies for ongoing web security. - Helping to develop and refine the structure of our new service, ensuring it meets market demands. - Providing input on how to market and position this service for our target audience. How to Apply: If this sounds like the perfect fit for you, please share: - A brief introduction to your experience in penetration testing. - Examples or case studies of previous penetration testing projects (where confidentiality allows). - Your rates and availability for an initial project with potential for ongoing work. Thanks Warren
25 days ago25 proposalsRemoteI need no code game builder desktop software
I seek an expert Godot game engine programmer to develop a desktop application for building games without code. The software should leverage the Godot engine for game development fundamentals and incorporate open source modules under the MIT license to handle graphical design, asset management, scenario authoring and gameplay logic configuration. Developers will be able to visually construct games by dragging and dropping elements with no scripting required. The finished application must produce standalone games that can be packaged and distributed from the Godot engine. Candidates should have extensive experience with the Godot ecosystem, related third-party plugins and open source licensing best practices. Proficiency in C++ and JSON is preferred for this challenging technical project.
12 days ago4 proposalsRemoteopportunity
Campaign Management for Game development
We need a campaign ran for our game titled civil disobedience. It' is a game inspired by def jam fight for new york one of the greatest titles to ever release on playstation. Here is the game trailer https://www.youtube.com/watch?v=JaTfo5TeX-E Like DJFFNY We would love to have music artist play real roles in our game or at least sign on to be fighters. We believe one of the reasons DJFFNY never made another matching sequel may have been due to the extremely poor payouts to the artist. Now that the industry has changed, we can definitely fill those gaps and make better deals. DMX speaks on why he never accepted another game offer from def jam https://www.youtube.com/watch?v=mLg_NuSUMxg&t=13s We'd also like to pull in politicians, ufc fighters, boxers, basketball players, and anyone with a public opinion DEM or REP or INbetween to join the fight. We would like to have T-pain as an influencer for this game https://www.youtube.com/@NappyBoyGaming
17 days ago9 proposalsRemoteAndroid Casino APK and web with Slots & Multiplayer
I'm seeking a skilled developer to create an Android-based casino APK for me. This app should include engaging slot games as well as several popular multiplayer games. Key Features: - Slot Games: The APK should have a multitude of slot games, appealing to a wide range of players. - Multiplayer Games: The APK should include classic casino multiplayer games such as Poker, Blackjack, and Roulette. Ideal Skills: - Extensive knowledge of Android app development. - Previous experience in developing gaming apps, especially casino games. - Proficiency in implementing slot and multiplayer games in an APK. I'm looking for a professional who can deliver a high-quality, engaging APK that can capture the essence of a real casino experience. Please provide examples of your previous work in your bid.
16 days ago12 proposalsRemoteopportunity
Blackjack playes
to develope a web based game of blackjack, allowing members to login in, create accounts keeping data of any data required, multiple groups to be created and invite others to group, play and track all groups . accounts to be created, program must pass as secure by a gaming certified company to enable a gaming lience to be issued
13 days ago25 proposalsRemoteGraphic designer wanted
we require the services of an experienced graphic designer to produce a series of vector assets for a game we are producing
8 days ago34 proposalsRemoteGame Lift Server Developer
About the Role: We're seeking a seasoned GameLift Server Developer to join our team and play a crucial role in developing and deploying our real-time multiplayer game. You'll be responsible for designing, implementing, and optimizing server-side systems that power our game's multiplayer features, leveraging Amazon GameLift and WebSocket technology. Responsibilities: Design and develop custom game servers using C# and .NET, integrating with Amazon GameLift. Implement robust WebSocket-based communication protocols for real-time gameplay. Optimize server performance and scalability to handle large numbers of concurrent users. Collaborate with the game development team to implement gameplay features and address technical issues. Deploy and manage game servers on Amazon GameLift, ensuring high availability and low latency. Write clean, maintainable, and well-documented code. Stay up-to-date with the latest game development technologies and industry trends. Required Skills and Experience: Strong proficiency in C# and .NET development. In-depth knowledge of Amazon GameLift and its features. Experience with WebSocket technology for real-time communication. Understanding of game server architecture and networking concepts. Experience with cloud-based development and deployment, especially AWS. Solid problem-solving and debugging skills. Ability to work independently and as part of a team. Bonus Skills: Experience with the Photon Pun multiplayer engine. Knowledge of Unity. Understanding of game security best practices.
21 days ago8 proposalsRemote2 UK/Irish testers to test mobile sign up of online service
Project Summary: Join us in enhancing user experience by conducting a quick mobile sign-up and usability test for an online service. Project Description: We're a dynamic team dedicated to reviewing and improving the accessibility of online products and services through mobile interfaces. We are currently seeking 2 diligent testers based in the UK or Ireland to help us evaluate the user experience of a mobile sign-up process. This task involves: - Signing up and placing an order via mobile. - Completing a brief questionnaire post-interaction, which will take about one minute. The entire process will require no more than 5 minutes of your time. We value your input and effort, which is why we offer: - An upfront payment to cover the cost of testing the service. - A £/€20 reward upon successful completion of the task.
19 days ago8 proposalsRemoteGaming Profile View Boosting Tool Development
I need a developer to create a tool that increases views for gaming profiles on a stats-tracking platform. The tool must bypass advanced security measures like Cloudflare and bot protection while delivering views gradually and naturally to avoid detection. It should handle Single Page Applications (SPA) efficiently, allowing interaction with dynamically loaded content. Reporting features are required to track successful and failed requests. Preferred skills include experience with web automation tools (e.g., Puppeteer, Playwright, or Selenium) and expertise in bypassing bot protections. Proficiency in Python, Node.js, or similar is ideal, but any effective method is welcome. Deliverables include a functional, user-friendly tool (CLI or GUI), clear documentation, and support for testing. Please share relevant experience, your proposed approach, and an estimated timeline. This is for gaming profiles, not social media platforms.
15 days ago15 proposalsRemote10 accounts on 10 devices to sign as testers for my Android app
Hi, (Under advisement from PPH support, I posting for the same reason but little adjusted...) I'm looking for people willing to install my white noise app from Google Play. It doesn't require any special permission and it doesn't have to be installed on your daily driver. Any Android device from 8 to 14 can be used as long as you have two different gmail accounts on two different devices. The requirements are simple: 1) You need to send me your two gmail addresses so I can sign you as tester on Google Play Console and the name of the country you are in (I made this app for my local area in my native language, hence it's not shared with the entire world) 2) After that, I'll send you link to access my white noise app that's currently in closed testing 3 You'll need to install the app into two Android device (one per gmail account you have sent me by then) (Google will ask for ~$1 payment to download the app), open it once, and keep it in your phone for 21 day 4) Preferably, leave a great review on Google Play 5) I'll accept your proposal and pay you $10 for both installs after these requirements are fulfilled. Please, keep in mind that this is 2 min job when you are sending your proposals. Any questions? Best, Boris
25 days ago17 proposalsRemoteopportunity
Build a Mobile App Game
I need a mobile app game designer with some experience that can help me build a mobile app. The app descriptions are below A mobile app where users can create their own games and share them with others users to play. I can't say more about the game due to it being a future project, so if you think you're the right candidate let me know, I rather work with someone that has experience. Miguel
a month ago19 proposalsRemoteScraper for social media
I have a good project that you might be interested in. We are looking for a skilled developer to build and maintain a social media scraper for Twitch, Reddit, Twitter, TikTok, and Facebook. This tool will enable us to extract real-time and historical data on game mentions.
11 days ago3 proposalsRemoteopportunity
IOS swift developer to continue work on a Mobile Application
I'm looking for a iOS mobile developer to continue the development of an existing sports app. The developer is required to: 1. fix some bugs and improvements in the current application (data loading from firebase, icon colors, alignments) 2. fix the news section (introduce formatting to the text in the article view) and also to display 2 languages at the same time (English and Arabic) 3. Optimize the loading of the app from the background to foreground 3. Create 3 new views for the application (Team info, Roster View, Bracket View, Game preview, H2H) 3.1 Create the Team Info View 3.2 Redesign the Roster view 3.3 Create the Bracket View, and make it available when it should be displayed 3.4 Create the Game Preview view 3.5. Develop the head to head view 4. Make Small UI changes on the Game Info View (Display Time, Location and odds) All API request are already developed and ready for all the views We are looking for a pixel perfect design, so the developer should be very meticulous NB: The development should be in Swift
15 days ago46 proposalsRemote