Download All Star Strip Poker (Windows)

More than 29300 old games to download for free!

All Star Strip Poker

Windows - 2006

Year 2006
Platform Windows
Released in Germany
Genre Strategy
Theme Adult, Cards
Publisher Digital Red Publishing
Developer CITY interactive Sp. z o.o.
Perspective 1st-Person
2 / 5 - 4 votes

Description of All Star Strip Poker

2006, the year All Star Strip Poker was released on Windows. Made by CITY interactive Sp. z o.o. and published by Digital Red Publishing, this strategy game is available for free on this page.

External links

Captures and Snapshots

Comments and reviews

danyro85 2024-01-12 0 point

The video is black, tried different thing, codecs, java update, different windows. No luck.
Did anybody get this to work?

Boofer 2023-10-23 0 point

Made a minor change to the code to make it work better, the space between the constructing the input/output files and decrypting should not be there.

import os

# Define the XOR decryption function
def xor_decrypt(input_file, output_file, key):
with open(input_file, 'rb') as encrypted_file:
encrypted_data = encrypted_file.read()
decrypted_data = bytes([byte ^ key for byte in encrypted_data])
with open(output_file, 'wb') as decrypted_file:
decrypted_file.write(decrypted_data)

# Specify the XOR key
xor_key = 0xff # Replace with your XOR key in hexadecimal format

# Get the current directory
current_directory = "H:/experiment/test/base1"

# Create a 'decrypted' folder if it doesn't exist
output_directory = os.path.join(current_directory, 'decrypted')

# List all files in the current directory
for filename in os.listdir(current_directory):
# Check if the file is an AVI file (you can modify this check if needed)
if filename.endswith('.avi'):
# Construct the input and output file paths
input_file = os.path.join(current_directory, filename)
output_file = os.path.join(output_directory, filename)
# Decrypt the file
xor_decrypt(input_file, output_file, xor_key)
print(f'Decrypted {filename} and saved as {os.path.basename(output_file)} in the "decrypted" folder')

bobthefish 2023-10-22 1 point

@FlannelDude, what version of Python are you using? because mine stop running when it runs into the python file.

flanneldude 2023-09-06 0 point

Sadly the game no longer runs on modern machines, (video playback is a black screen). However, you can decrypt the games .AVI files to at least get access to playback all the videos outside of the game. To do this:
1) Install Python3 on your system
2) Copy the following script into the location of the AVI files you want to decrypt
3) Run it. It will decrypt all AVI files for the game and move them into a 'decrypted' folder. (Note that tabs are significant in Python)
This works for all 3 of the 'All Star Strip Poker' games, they all use the same simple XOR encryption for the avis.
If you want the jpegs, you can get them out of main.jar with a java decompiler, you can also view the game logic with it. The playback problem likely lies in the .dll files, debugging those is beyond me.
----------------
import os

# Define the XOR decryption function
def xor_decrypt(input_file, output_file, key):
with open(input_file, 'rb') as encrypted_file:
encrypted_data = encrypted_file.read()

decrypted_data = bytes([byte ^ key for byte in encrypted_data])

with open(output_file, 'wb') as decrypted_file:
decrypted_file.write(decrypted_data)

# Specify the XOR key
xor_key = 0xff # Replace with your XOR key in hexadecimal format

# Get the current directory
current_directory = os.getcwd()

# Create a 'decrypted' folder if it doesn't exist
output_directory = os.path.join(current_directory, 'decrypted')
os.makedirs(output_directory, exist_ok=True)

# List all files in the current directory
for filename in os.listdir(current_directory):
# Check if the file is an AVI file (you can modify this check if needed)
if filename.endswith('.avi'):
# Construct the input and output file paths
input_file = os.path.join(current_directory, filename)
output_file = os.path.join(output_directory, filename)

# Decrypt the file
xor_decrypt(input_file, output_file, xor_key)
print(f'Decrypted {filename} and saved as {os.path.basename(output_file)} in the "decrypted" folder')

Write a comment

Share your gamer memories, help others to run the game or comment anything you'd like. If you have trouble to run All Star Strip Poker (Windows), read the abandonware guide first!

 

Download All Star Strip Poker

We may have multiple downloads for few games when different versions are available. Also, we try to upload manuals and extra documentation when possible. If you have additional files to contribute or have the game in another language, please contact us!

Windows Version

Game Extras

Various files to help you run All Star Strip Poker, apply patches, fixes, maps or miscellaneous utilities.

NocdMini image German version 68 KB

Similar games

Fellow retro gamers also downloaded these games:

Call to Arms abandonware
Call to ArmsDOS1982
Car Builder abandonware
Car BuilderDOS, Apple II1982
Andromeda Conquest abandonware
Andromeda ConquestDOS, C64, Atari 8-bit, Apple II1982
Galactic Gladiators abandonware
Galactic GladiatorsDOS, Apple II1983
Cytron Masters abandonware
Cytron MastersDOS, Atari 8-bit1982
Casino Games abandonware
Casino GamesDOS1982

Ad Consent Terms About Contact FAQ Useful links Contribute Taking screenshots How to play

MyAbandonware utopiaweb