Serious Sam - The First Encounter

Informations

Creator Message
syberia303 Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 32364
Wine: System

Feedbacks

Description

Français :

Dans les temps anciens, les Terriens combattaient les Siriens. À l'aube du XXIe siècle, les archéologues ont découvert des traces de la civilisation sirienne en Égypte et ont découvert des artefacts siriens. Mais au XXIIe siècle, Mental, de la planète Sirius, qui a pour projet d'envahir l'univers tout entier, envahit la Terre. Mental avait déjà envahi une bonne partie de la galaxie avec son armée diabolique de monstres venant de différentes planètes. Les Terriens ne purent les empêcher d'envahir la planète, toute armée terrienne avait été décimée. Un Humain cependant, résistait encore et toujours à l'envahisseur, la grande légende de la Terre, Sam "Serious" Stone alias Serious Sam. Les scientifiques ne virent qu'une façon de sauver la terre, utiliser un artefact sirien qui permettait de voyager dans le temps: "Le-verrou-du-temps". Il décidèrent d'envoyer Sam dans l'artefact pour aller au temps des siriens, la race de Mental, en Égypte, pour changer le cours du temps et éviter à l'humanité, l'anéantissement total.

Dans cette épisode dénommé Premier Contact, Sam cherche dans l'Égypte Antique (ancienne Égypte) un émetteur qui permet d'appeler le vaisseau spatial de Mental. Ainsi, Sam pourra rentrer dans le vaisseau, aller sur Sirius, trouver Mental et le tuer pour changer le cours du temps, faire en sorte que la Terre n'aie jamais été envahie.

(Source : http://fr.wikipedia.org/wiki/Serious_Sam_:_Premier_Contact)


English :

The First Encounter was the first game in the series; it had been in the making since 1996 and had a video showing its early game play in 2000. The First Encounter was originally developed by Croteam as a demonstrator for their engine and this is the reason why some countries saw its initial release priced at less than half the value of other games in the genre.

The game introduction reveals what happened before the game actually takes place: in ancient times, Earth was involved in a conflict between Mental and the Sirians, an alien race that left many of its artifacts to be found by humanity. In the 22nd century Mental's forces return to Earth hell-bent on eradicating humankind: as a last resort the usage of the "Time Lock" is decided: this Sirian device can send back through time a single individual who can, hopefully, defeat Mental and alter the course of history. Because of his bravery in fighting the monsters, Sam "Serious" Stone is chosen to use the "Time Lock". As the game opens, Sam appears in Ancient Egypt. He travels from one Egyptian monument to the next, all the way fighting against the monsters Mental sent after him, make up most of the story of The First Encounter. During his wandering, Sam is able to activate a hidden Sirian communicator, located in Luxor, that summons to Earth a starship from the depths of space. Sam goes to the Great Pyramid for a rendezvous with the ship and, after a titanic battle against Mental's general Ugh Zan III, he is whisked on-board the Sirian starship.

(Source : http://en.wikipedia.org/wiki/Serious_sam#Serious_Sam:_The_First_Encounter)

Screenshots

Source code

#!/bin/bash
# Date : (2008-05-23 20-13)
# Last revision : (2011-01-21 20-00)
# Wine version used : 1.3.5
# Distribution used to test : Debian Squeeze (Testing)
# Author : syberia303
 
 
#Vérifier que PlayOnLinux est bien exécuté avant
[ "$PLAYONLINUX" = "" ] && exit 0 
 
#Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
TITLE="Serious Sam : The First Encounter"
PREFIX="SeriousSam-TheFirstEncounter"
WORKING_WINE_VERSION="1.3.5"

if [ "$POL_LANG" == "fr" ]; then
LNG_WAIT_WARNING="Essayez de jouer en version native à Serious Sam via l'installeur\ndisponible à cette adresse: http://www.liflg.org/?catid=6&gameid=71"
LNG_CHOOSE_MEDIA="Choisissez votre méthode d'installation :"
LNG_MEDIA_DDV="Version Digital Download"
LNG_MEDIA_CD="Version CD"
LNG_CHOOSE_DDV="Veuillez sélectionner votre exécutable Digital Download de $TITLE"
LNG_INSTALL_RUN="Installation en cours..."
LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du programme sera\nterminée sous peine de devoir recommencer l'installation."
LNG_WAIT_HF="Are you serious?!" 
else
LNG_CHOOSE_MEDIA="Choose your install method :"
LNG_MEDIA_DDV="Digital Download Version"
LNG_MEDIA_CD="CD Version"
LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable"
LNG_WAIT_WARNING="Try to play Serious Sam natively via the installer which is\navailable there: http://www.liflg.org/?catid=6&gameid=71"
LNG_INSTALL_RUN="Installation in progress..."
LNG_WAIT_END="Click on \"Next\" ONLY when the software installation is finished\nor you will have to install again the game."
LNG_WAIT_HF="Are you serious?!"
fi 
 
#Starting the script
#POL_GetSetupImages "<ADRESSE_IMAGE_TOP>" "<ADRESSE_IMAGE_LEFT>" "$TITLE"
#POL_SetupWindow_InitWithImages
POL_SetupWindow_Init
 
#Presentation
POL_SetupWindow_presentation "$TITLE" "Croteam" "http://www.seriouszone.com/" "syberia303" "$PREFIX"
 
POL_SetupWindow_message "$LNG_WAIT_WARNING" "$TITLE"
 
select_prefix "$REPERTOIRE/wineprefix/$PREFIX"

#downloading specific Wine
POL_SetupWindow_install_wine "$WORKING_WINE_VERSION"
Use_WineVersion "$WORKING_WINE_VERSION"
 
#fetching PROGRAMFILES environmental variable
POL_LoadVar_PROGRAMFILES

POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "$TITLE" "$LNG_MEDIA_CD~$LNG_MEDIA_DDV" "~"
GAME_MEDIAVERSION="$APP_ANSWER"

if [ "$GAME_MEDIAVERSION" == "$LNG_MEDIA_CD" ]; then

POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "Setup.exe"
POL_SetupWindow_wait_next_signal "$LNG_INSTALL_RUN" "$TITLE"
wine start /unix "$CDROM/Setup.exe"
POL_SetupWindow_detect_exit
POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"

elif [ "$GAME_MEDIAVERSION" == "$LNG_MEDIA_DDV" ]; then

cd "$HOME"
POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
SETUP_EXE="$APP_ANSWER"
POL_SetupWindow_wait_next_signal "$LNG_INSTALL_RUN" "$TITLE"
wine start /unix "$SETUP_EXE"
POL_SetupWindow_detect_exit
POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"

fi
 
 
POL_SetupWindow_auto_shortcut "$PREFIX" "SeriousSam.exe" "$TITLE" "$TITLE.png"
Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE"
 
POL_SetupWindow_message "$LNG_WAIT_HF" "$TITLE"
 
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Message