Selasa, 09 Mei 2017

Virtual Box 5.1.20

Hasil gambar untuk virtualbox

     Virtual Box is the best one software  you can use as emulator windows. When you want to install an Operating System in your laptop or computer, then Virtual Box is best software can do that. You can easly try new Operating System without install it.

Main Features VirtualBox
  • VMM: more work on improving the emulation of certain MSR registers on certain host CPUs (e.g. bugs #12734, #12736, #12744, #12748, #12686, #12770)
  • VMM: fixed single-stepping for real-mode guests (VT-x without unrestricted guest execution) and some I/O instructions (bug #12636)
  • VMM: fixed a potential problem with COW pages if nested paging is not available
  • GUI: Mac OS X: experimental native full screen support for Mountain Lion and Mavericks (bug #12292)
  • GUI: Mac OS X: removed the mini-toolbar minimize button which doesn’t work under Mac OS X full screen mode anyway
  • GUI: experimental HID LEDs synchronization for Windows and Mac OS X hosts: fixed keyboard re-synchronization if the feature is disabled (as done by default; bug #12758)
  • GUI: fixed a potential crash when opening the preferences menu (bug #12862)
  • OVF: fixed a crash of the VirtualBox Manager when re-starting guest export (bug #12586)
  • 3D support: several fixes
  • HGCM: fixed a problem with saved states which could cause several guest misbehavior after a VM was started from a saved state
  • Storage: fixed a bug preventing to compact differential snapshots under certain conditions
  • VBoxSVC: fixed a segmentation fault on Linux hosts if a very long path exists under /dev (bug #12760)
  • API: fixed guest misbehavior under certain conditions if a storage medium was attached or removed at VM runtime
  • Windows installer: make the –silent parameter work again (bug #12764)
  • Mac OS X Networking: prevent local traffic (VM-to/from-host) from leaking to wire (bug #12750)
  • Windows Additions: fixed the environment for guest processes (4.3.8 regression; bug #12782)
  • Windows Additions/WDDM: fixed divide by zero exception with multiple guest screens under certain conditions
  • Linux Additions: install correctly on Ubuntu guest systems with a /usr/lib64 directory (bug #12513)
  • X11 Additions: fix for the VBoxClient process not exiting correctly (bug #12348) and consuming too much processor tim

Link Download :

VirtualBox-5.1.20-114628-Win -- 117 MB --

Virtual DJ Pro 8.2.3624 Full Version

Hasil gambar untuk virtual dj


       Virtual DJ is software can use to create DJ music for mixing audio dan added avaible effect in this software. If you want to be a DJ or want to made a music from mixing your favorite music, then Virtual DJ 8 Pro is the right software for you. Be equipped with full fiture you can easly create your own DJ music,  Now you can download from here free.

 
Features:
  • Careful control of Professional Audio
  • Fully compatible with VST effects in the
  • Matching and automatic adjustment of administrative levels
  • Professional voice control and professional bass frequencies
  • Menu standard control (play, pause, stop, cue)
  • The ability to mix and stretch the video to audio synchronization
  • Ability to identify the initial and final Khvdkarmtd rate
  • Ability to deploy the actual pattern of sound
  • Drag’n’drop capability to implement and quick mixing
  • Automatic synchronization feature songs Zrb
  • Ability to save without formatting methods in the software
  • A database for quick and easy music sharing and search capabilities
  • User-friendly and elegant atmosphere at the same professionalism
  • Standard controls (play, pause, stop, cue)
  • Control (from -34 to + 34%)
  • Tri-band EQ with Kill + gain
  • Click to rate a (new FAME algorithm) – New algorithm fame–
  • Machine automatic rate
  • On-the-fly without the need for storage technology or any formatting
  • Automatic calibration
  • Level automatic
  • Simulator real search
  • Auto-rotate beats
  • 12-point pace
  • Applying the algorithm sounds
  • Create automatic accompaniment mode 4.4
  • Consistent with external controllers like (DMC2, DAC3, iCDX, TotalControl, BCD2000, DJConsole, etc …)
How to install
  1. Download and extract file  “Virtual DJ Pro 8.2.3624 Full Version”.
  2. Extract the crack in inside folder
  3. Install program “Virtual DJ Pro”
  4. After installation proses complete, don't run first.
  5. Open folder crack, then copy paste file VIRTUAL DJ 8 to folder installation program “Virtual DJ Pro” in your pc or laptop/
  6. Choose copy and replace.
  7. Open again folder crack, tehn copy file license.dat ke “My Documents\VirtualDJ”.
  8. Open the program from file crack that you copied earlier
  9. Done
 Link download:

Virtual DJ 8 Pro -- 58 MB --

Senin, 08 Mei 2017

TURBO PASCAL 7.0 LEARNING

Hasil gambar untuk turbo pascal



     This moment  i want sharing about Pascal language, but before that you guys should understanding about what is PASCAL and FUNCTION PASCAL.  

     There are tons million example you can try at internet but i'll just a few with the OUTPUT !

1.Here example "BRANCHED OFF STATEMENT"
Program odd_even;
//Always remember, sentences "Program" should there is! 
uses crt;
 
var x, result: integer;
//Var is important too 
 begin
   clrscr;
//it's for cleaning screen
   write ('Put your odd number here = ');
   readln(x);
   result := x mod 2;
   if result = 0 then 
   begin
    writeln(x, ' is even number ');
   end
   else
   begin
    writeln(x, ' is odd number ');
   end;
readln(x);
end.

2.Here example "BRANCHED OFF STATEMENT"
Program count_result_odd_even;
uses crt;
var even, odd, i, result: integer;
begin
   clrscr;
   even := 0;
   ganjil := 0;
   for i := 1 to 100 do
   begin
      result := i mod 2;
      if i <= 50 then
      begin
         if result = o then
         begin
           even := even + i;
         end;
      end
    else
    begin
     if result <> 0 then
      begin
    ganjil := ganjil + i;
   end;
    end;
end;
writeln('Total even number = ', even);
writeln('Total odd number = ', odd);
readln();
end.
 
 
3.Here example "ITERATION FOR DO" -- ASCENDING --
Program examplefor1;
Uses crt;
var i: integer;
Begin
    clrscr;
    for i:= 1 to 10 do
      begin
        write('Welcome in the pascal program');
      end;
     readln;
end. 

4.Here example "ITERATION FOR DO" -- DESCENDING --
 
Program color_with_downto;
uses crt;
var i : integer;
Begin
  clrscr;
    for i= 10 downto 1  do
  Begin
      Textcolor(i);
      Writeln('Ini color with code = ', i);
  End;
  Readln;
End.

5.Here example "ITERATION FOR DO" -- WHILE .. DO --
Program while;
uses crt;
var i: integer;
Begin
  clrscr;
    i := 1;
     while i < 9 do
    begin
      writeln('Perulangan dengan while ke ', i);
      {i := i+1;}
        inc(i) 
     end;
    readln;
End.
 
 5.Here example "ITERATION FOR DO" -- REPEAT .. UNTIL --

Program repeat_until;
uses crt;
var i: integer;
Begin
   clrscr;
     i := 10;
    repeat
    begin
      writeln('Bilangan ke ',i);
    i := i-1;
    end;
    until i < l;
readln; 
End.
 
 
 
 
I am sorry if there is mistakes code :) Thank You!

 

PASCAL FUNCTION

Hasil gambar untuk turbo pascal

 

Subprograms

A subprogram is a program unit/module that performs a particular task. These subprograms are combined to form larger programs. This is basically called the 'Modular design.' A subprogram can be invoked by a subprogram/program, which is called the calling program.
Pascal provides two kinds of subprograms −
  • Functions − these subprograms return a single value.
  • Procedures − these subprograms do not return a value directly.

Functions

A function is a group of statements that together perform a task. Every Pascal program has at least one function, which is the program itself, and all the most trivial programs can define additional functions.
A function declaration tells the compiler about a function's name, return type, and parameters. A function definition provides the actual body of the function.
Pascal standard library provides numerous built-in functions that your program can call. For example, function AppendStr() appends two strings, function New() dynamically allocates memory to variables and many more functions.

Defining a Function

In Pascal, a function is defined using the function keyword. The general form of a function definition is as follows −
function name(argument(s): type1; argument(s): type2; ...): function_type;
local declarations;

begin
   ...
   < statements >
   ...
   name:= expression;
end;
A function definition in Pascal consists of a function header, local declarations and a function body. The function header consists of the keyword function and a name given to the function. Here are all the parts of a function −
  • Arguments − The argument(s) establish the linkage between the calling program and the function identifiers and also called the formal parameters. A parameter is like a placeholder. When a function is invoked, you pass a value to the parameter. This value is referred to as actual parameter or argument. The parameter list refers to the type, order, and number of parameters of a function. Use of such formal parameters is optional. These parameters may have standard data type, user-defined data type or subrange data type.
    The formal parameters list appearing in the function statement could be simple or subscripted variables, arrays or structured variables, or subprograms.
  • Return Type − All functions must return a value, so all functions must be assigned a type. The function-type is the data type of the value the function returns. It may be standard, user-defined scalar or subrange type but it cannot be structured type.
  • Local declarations − Local declarations refer to the declarations for labels, constants, variables, functions and procedures, which are application to the body of function only.
  • Function Body − The function body contains a collection of statements that define what the function does. It should always be enclosed between the reserved words begin and end. It is the part of a function where all computations are done. There must be an assignment statement of the type - name := expression; in the function body that assigns a value to the function name. This value is returned as and when the function is executed. The last statement in the body must be an end statement.
Following is an example showing how to define a function in pascal −
(* function returning the max between two numbers *)
function max(num1, num2: integer): integer;

var
   (* local variable declaration *)
   result: integer;

begin
   if (num1 > num2) then
      result := num1
   
   else
      result := num2;
   max := result;
end;

Function Declarations

A function declaration tells the compiler about a function name and how to call the function. The actual body of the function can be defined separately.
A function declaration has the following parts −
function name(argument(s): type1; argument(s): type2; ...): function_type;
For the above-defined function max(), following is the function declaration −
function max(num1, num2: integer): integer;
Function declaration is required when you define a function in one source file and you call that function in another file. In such case, you should declare the function at the top of the file calling the function.

Calling a Function

While creating a function, you give a definition of what the function has to do. To use a function, you will have to call that function to perform the defined task. When a program calls a function, program control is transferred to the called function. A called function performs defined task, and when its return statement is executed or when it last end statement is reached, it returns program control back to the main program.
To call a function, you simply need to pass the required parameters along with function name, and if function returns a value, then you can store returned value. Following is a simple example to show the usage −
program exFunction;
var
   a, b, ret : integer;

(*function definition *)
function max(num1, num2: integer): integer;
var
   (* local variable declaration *)
   result: integer;

begin
   if (num1 > num2) then
      result := num1
   
   else
      result := num2;
   max := result;
end;

begin
   a := 100;
   b := 200;
   (* calling a function to get max value *)
   ret := max(a, b);
   
   writeln( 'Max value is : ', ret );
end.
When the above code is compiled and executed, it produces the following result.

Original  site from https://www.tutorialspoint.com/pascal/pascal_functions.htm

SKYFORGE, MAKE US ADDICTED

Hasil gambar untuk skyforge

     SKYFORGE

 

SKYFORGE RELEASED 13 APRIL 2017 ON STEAM!

 

                              Around one month ago, Steam was released new game. This game bring open world types, RPG, Action, MMORPG and Massively Multiplayer. This game so fun. and the best , this game is Free To Play !!!! No needs buy to play it!


 Hasil gambar untuk skyforge


There is about the game :

PLAY LIKE A GOD

 Hasil gambar untuk skyforge
In Skyforge, you will walk the path from an immortal warrior to a mighty God, gaining followers as you fight to protect your world.
Your loyal followers will help you increase your power as you rise to become an Elder God. The best of the best will join the Order of Keepers and shape the fate of the world

FORGE YOURSELF IN BATTLE

 Hasil gambar untuk skyforge

Inspired by the best action-combat console games, we’ve improved the traditional targeting system and turned the old point & click style combat into spectacular and animated action, that will always be entertaining and satisfying.
You'll dodge enemy attacks, perform powerful combos, and vanquish your enemies with devastating finishing attacks

ONE CLICK TO CHANGE CLASS

  Gambar terkait

With a variety of character classes and the freedom of switching between them players will enjoy discovering each class’ skills & powers!
All classes can be developed simultaneously allowing players to swap classes on the go, depending on your mood or current game situation!

WORLD UNDER THREAT

Hasil gambar untuk skyforge


A vortex of events and emotions will grasp you from the very first moments of the game. One quick glance at the Divine Observatory will give you a clear picture of the cries for help of planet Aelion's mortals.
Only a true God can defend Aelion against invaders, raging immortals and countless other dangers. Select the activity; PvP, PvE, group or solo, open world play, short instance or large raid to your liking and immediately set off to protect your people!

GAME WITHOUT LIMIT

Hasil gambar untuk skyforge 

Everyone can easily login to the united Skyforge servers where you can team up with your friends, or even your whole guild, to defend Aelion.
Using Skyforge's integrated social network players can interact, share updates, and keep in touch with one another even when they aren’t in the game!

 SYSTEM REQUIREMENTS:

MINIMUM  REQUIREMENTS:

OS: Windows XP Service Pack 3 or Newer
Processor: Intel Pentium Dual CPU E2160 1.80 GHz
Memory: 2 GB RAM
Graphics: Nvidia GeForce 8600 GTS, Intel HD Graphics 3000, or ATI Radeon HD 4650
DirectX: Version 9.0c
Network: Broandband Internet Connection
Storage: 20 GB available space

RECOMMENDED REQUIREMENTS:

OS: Windows XP Service Pack 3 or Newer
Processor: Intel Core i5--4430 3.0 GHz
Memory: 4 GB RAM
Graphics: Nvidia GeForce GTX 275, or ATI Radeon HD 4870
DirectX: Version 9.0c
Network: Broandband Internet Connection
Storage: 20 GB available space

ATTENTION!

There is just only 2 servers, North America and Europa. If you want to play this game, you can visit the original site Here !

 

 

 

TOP 10 FREE GAMES 2016 - 2017


       Hasil gambar untuk steam


TOP FREE STEAM GAMES  -- 2017 --

     
      Almost gamer in entire of the world knew what STEAM it's. STEAM is the biggest digital distributor in the world. 75 % Purchase PC Games Online is from STEAM. Steam was created by Gabe Newell or usually called as "LORD GABEN"

     Almost everyday STEAM offered discount, from 5% to 90%. Especially on the "Winter Sale" and "Summer Sale".  

Hasil gambar untuk gabe newell

      And there is 10 Free Steam Games  -2016 - 2017 -

 1.LINE OF SIGHT

 Hasil gambar untuk LINE OF SIGHT

About The Game:

 

Line of Sight is an online FPS game, developed by a small independent studio, that trying to bring many unique features and innovative systems, such as detailed character and weapon customization. 

And if you are a fan of pure military FPS games and like to play competitively, no worries, you are covered too! Line of Sight provides “Classic Modes” where you can play the game just like traditional online FPS games, often seen in E-Sports scenery. You will appreciate the best-in-class Rankings, Clans, and League systems; we take E-Sport very seriously as it is one of our highest priorities.

If you are a casual player, you will enjoy our unique contents, and stress-free Match Making system. You are free to play either casually or competitively, depending on your preferences.

Most Tags for Line Of Sight: 

  •  Free to Play
  •  FPS
  •  Action
  •  Multiplayer
  •  Shooter

 

 SYSTEM REQUIREMENTS:

MINIMUM  REQUIREMENTS:

OS: Windows 7
Processor: Dual Core 2.0GHz from Intel or AMD 2.0GHz
Memory: 2 GB RAM
Graphics: NVIDIA GeForce 8600/9600GT, ATI/AMD Radeon HD2600/3600
DirectX: Version 9.0c
Network: Broadband Internet connection
Storage: 3 GB available spac

RECOMMENDED REQUIREMENTS:

OS: Windows 7 64bit
Processor: Dual Core 2.6 from Intel or AMD 2.6GHz
Memory: 4 GB RAM
Graphics: NVIDIA 460 GTX, ATI/AMD Radeon HD6850
DirectX: Version 9.0c
Network: Broadband Internet connection
Storage: 3 GB available space


 2.HEROES & GENERALS

Hasil gambar untuk heroes & generals

 

About The Game:

 

Heroes & Generals is the ultimate WW2 game – a free-to-play Massively Multiplayer Online First Person Shooter set in WW2, where Germany, the United States and the Soviet Union fight for victory in one grand persistent online war fought by players across the world.

No matter if you play as Infantry, Tank crew, Fighter pilot, Paratrooper, Recon, or as a General taking strategic decisions – everything you do makes a difference in the war.

There is a great variety of authentic weapons and vehicles accessible in the game such as the effective US M1A1 Thompson submachine gun, the legendary German Panzer V Ausf G. ‘Panther’ tank, the excellent Soviet Yak-9B fighter plane, and even a bicycle! The arsenal is constantly growing as updates for the game are released regularly.

Most Tags for Heroes & Generals: 

  • Free to Play
  • Word of War II
  • Multiplayer
  • FPS
  • War

SYSTEM REQUIREMENTS:

MINIMUM  REQUIREMENTS:

OS: Windows 7, 8 or 10
Processor: 2GHz CPU w. SSE3 instruction set- dual-core
Memory: 3 GB RAM
Graphics: ATI HD 4810/NVIDIA 9600 GT or above (with >512mb RAM)
DirectX: Version 11
Network: Broadband Internet connection
Storage: 2 GB available space
Sound Card: DirectX compatible

RECOMMENDED REQUIREMENTS:

OS: Windows 7, 8 or 10
Processor: Intel i5 processor or higher / AMD Phenom II X6 or higher
Memory: 4 GB RAM
Graphics: NVIDIA GeForce GTX 560 series or higher / AMD HD 6870 or higher
DirectX: Version 11
Network: Broadband Internet connection
Storage: 3 GB available space
Sound Card: DirectX compatible

3.WORLD OF TANK BLITZ

Hasil gambar untuk world of tank blitz steam


 About The Game:

World of Tanks Blitz is a cross-platform Free-to-Play team-based MMO action game dedicated to fierce tank combat. Throw yourself into intense battles against Steam players and challenge gamers on mobile, Mac, and Windows 10; control and upgrade over 200 legendary armored vehicles across 4 diverse classes; master your tactics on over a dozen maps; join up with your friends in a Platoon to reap in-game bonuses and rewards; and complete Battle Missions to truly test your skills.

Features

  • Over 200 iconic vehicles from Germany, Japan, France, the UK, USA, USSR, and China
  • 4 different vehicles classes including light tanks, medium tanks, heavy tanks, and tank destroyers
  • Strategic 7-vs-7 online multiplayer gameplay
  • 18 unique battle arenas
  • In-game chat functionality
  • Innovative crew upgrade system
  • Cross-platform gameplay
  • Constant graphical enhancements and updates, as well as optimization for various platforms
  • Real-life physics to create authentic tank movement and damage mechanics
  • Detailed tutorials
  • Ability to invite your friends to play online
  • In-game achievements
  • Free-to-Play with equal access to in-game elements for paying and non-paying players
  • Easy to learn, intuitive controls
  • Battle Missions that open up fresh, personalized challenges of varying difficulties and enable players to earn bonuses and achievements
  • Clan functionality allowing players to unite in their pursuit of victory
  • Training Rooms that allow you to team up with friends to master game maps and tactic


Most Tags for World of Tanks Blitz :
  • Tanks
  • Free to Play
  • Action
  • Multiplayer
  • War 


SYSTEM REQUIREMENTS:

MINIMUM  REQUIREMENTS:

OS: Windows 7, 8.0, 8.1, 10
Processor: 2 GHz
Memory: 2 GB RAM
Graphics: DirectX 9.0c compliant video card with 256 MB RAM
Storage: 3 GB available space
Additional Notes: Storage: 3 GB available space

RECOMMENDED REQUIREMENTS:

OS: Windows 7, 8.0, 8.1, 10
Processor: 2,5 GHz
Memory: 3 GB RAM
Graphics: DirectX 9.0c compliant video card with 512 MB RAM
Storage: 5 GB available space
Additional Notes: Storage: 5 GB available space

4.ATLAS REACTOR

Hasil gambar untuk atlas reactor


About The Game :

Competitive PvP

Compete in 4v4 team battles in Solo, Vs. Bots, PvP, Ranked, and Custom games. With the range of ability combos possible, no two matches are ever the same.

Customizable heroes

Battle as one of an ever-growing roster of Freelancers! Customize each hero’s abilities with Ability Mods, which can be saved into loadouts or tweaked to counter enemy teams.

Unique maps and environments

Fight in battles all around the city of Atlas, including the deck of a flying cargo ship, a rooftop garden, a hi-tech laboratory, and the engineering bay of a working reactor core.

Seasonal stories and rewards

Experience Atlas’ story through “Seasons,” a multi-week arc where players can influence the fate of the world and challenges reward regular gameplay with bonus loot!

A futuristic universe

Enter a cloud-piercing megacity where Freelancers fight for (and against) monolithic Trusts vying for control over the last Reactor on the planet

Most Tags for Atlas Reactor:

  •  Free to Play
  • Multiplayer
  • Strategy
  • Turn Based

SYSTEM REQUIREMENTS:

MINIMUM  REQUIREMENTS:

OS: Windows Vista™ Enterprise (6.0, Build 6002) Service Pack 2 (6002.vistasp2_gdr.150312-1556) or later
Processor: Quad Core. Intel(R) Core(TM) i5-2520M CPU ~2.5GHz / AMD Phenom II X4 @ 2.6GHz equivalent or higher
Memory: 4 GB RAM
Graphics: Display Memory: 1696 MB - Min. Shader Level: 3.0 - Supports Render Textures
DirectX: Version 9.0c
Network: Broadband Internet connection
Storage: 5 GB available space
Additional Notes: Glyph Client and registered Trion Worlds Account

RECOMMENDED REQUIREMENTS:

OS: Windows Vista™ Enterprise (6.0, Build 6002) Service Pack 2 (6002.vistasp2_gdr.150312-1556) or later
Processor: Quad Core. Intel(R) Core(TM) i5-5200U CPU ~2.7GHz equivalent or higher
Memory: 6 GB RAM
Graphics: Display Memory: 2048 MB - Min. Shader Level: 3.0 - Supports Render Textures
DirectX: Version 11
Network: Broadband Internet connection
Storage: 10 GB available space
Additional Notes: Glyph Client and registered Trion Worlds Account

5.SKYFORGE


Hasil gambar untuk skyforge

 About The Game:






FORGE YOURSELF IN BATTLE


Inspired by the best action-combat console games, we’ve improved the traditional targeting system and turned the old point & click style combat into spectacular and animated action, that will always be entertaining and satisfying.
You'll dodge enemy attacks, perform powerful combos, and vanquish your enemies with devastating finishing attacks

 

ONE CLICK TO CHANGE CLASS


With a variety of character classes and the freedom of switching between them players will enjoy discovering each class’ skills & powers!
All classes can be developed simultaneously allowing players to swap classes on the go, depending on your mood or current game situation!
          

GAME WITHOUT LIMIT


Everyone can easily login to the united Skyforge servers where you can team up with your friends, or even your whole guild, to defend Aelion.
Using Skyforge's integrated social network players can interact, share updates, and keep in touch with one another even when they aren’t in the game!

Most Tags for Skyforge:

  • Free to Play
  • Massively Multiplayer
  • RPG
  • MMORPG 

SYSTEM REQUIREMENTS:

MINIMUM  REQUIREMENTS:

OS: Windows XP Service Pack 3 or newer
Processor: Intel Pentium Dual CPU E2160 1.80 GHz
Memory: 2 GB RAM
Graphics: NVIDIA GeForce 8600 GTS, Intel HD Graphics 3000, or ATI Radeon HD 4650
DirectX: Version 9.0c
Network: Broadband Internet connection
Storage: 20 GB available space

RECOMMENDED REQUIREMENTS:

OS: Windows XP Service Pack 3 or newer
Processor: Intel Core i5-4430 3.0 GHz
Memory: 4 GB RAM
Graphics: NVIDIA GeForce GTX 275 or ATI Radeon HD 4870
DirectX: Version 9.0c
Network: Broadband Internet connection
Storage: 20 GB available space


OUTLAST 2, BREAKY YOUR HEART!



Hasil gambar untuk OUTLAST 2


OUTLAST 2 RELEASED 25 APRIL 2017 ON STEAM!

                

               A few days ago, Red Barrels was announced to release the OUTLAST 2. If you Horror Game Lover, you will familiar about OUTLAST. OUTLAST is game horror game to requires you from the PYSCHOPATH who want kill you. And OUTLAST 2 got most positive review from Horror Game Lover


Hasil gambar untuk OUTLAST 2 


Here about OUTLAST 2: 

You are Blake Langermann, a cameraman working with your wife, Lynn. The two of you are investigative journalists willing to take risks and dig deep to uncover the stories no one else will dare touch. You’re following a trail of clues that started with the seemingly impossible murder of a pregnant woman known only as Jane Doe. The investigation has lead you miles into the Arizona desert, to a darkness so deep that no one could shed light upon it, and a corruption so profound that going mad may be the only sane thing to do.

 Before you play this game you should understand OUTLAST 2 tags:
  • Horror
  • Psychological Horror
  • Survival Horror
  • First Person
  • Gore
  • Singleplayer
  • Dark
  • Atmospheric
  • Violent
  • Survival
  • Action
  • Mature
  • Adventure
  • Story Rich
  • Nudity
  • Parkour
  • Indie
  • Dating Sim
  • FPS
  • Sexual Content

  Hasil gambar untuk OUTLAST 2

 SYSTEM REQUIREMENTS:

 

MINIMUM  REQUIREMENTS:

OS: Windows Vista / 7, 8, 10, 64-bits
Processor: Intel Core i3-530
Memory: 4 GB RAM
Graphics: 1 GB VRAM, NVIDIA Geforce GTX 260, or ATI Radeon HD 4870
DirectX: Version 10
Network: Broandband Internet Connection
Storage: 30 GB available space
Sound Card: DirectX Compatible
Additional Notes: Targetting 720 @ 30 fps

RECOMMENDED REQUIREMENTS:

OS: Windows XP Service Pack 3 or Newer
Processor: Intel Core i5
Memory: 8 GB RAM
Graphics: 1,5 GB VRAM, NVIDIA Geforce GTX 660, or ATI Radeon HD 7850
DirectX: Version 11
Network: Broandband Internet Connection
Storage: 30 GB available space
Sound Card: DirectX Compatible
Additional Notes: Targetting 1080 @ 30 fps

ATTENTION!

You can download game in Here! or maybe you can download in the Steam.

 

http://www.resepkuekeringku.com/2014/11/resep-donat-empuk-ala-dunkin-donut.html http://www.resepkuekeringku.com/2015/03/resep-kue-cubit-coklat-enak-dan-sederhana.html http://www.resepkuekeringku.com/2014/10/resep-donat-kentang-empuk-lembut-dan-enak.html http://www.resepkuekeringku.com/2014/07/resep-es-krim-goreng-coklat-kriuk-mudah-dan-sederhana-dengan-saus-strawberry.html http://www.resepkuekeringku.com/2014/06/resep-kue-es-krim-goreng-enak-dan-mudah.html http://www.resepkuekeringku.com/2014/09/resep-bolu-karamel-panggang-sarang-semut-lembut.html