Posts

Showing posts from 2016

DESTROY ALL VOX ZEPPELINS!!! BIOSHOCK INFINITE

Image
Seriously, I'M HAVING A VERY CRITICAL PROBLEM WITH THIS CHAPTERRRRR!!! I kept losing! So, I've searched at google on HOW TO END THIS BAD CHAPTER (lol). And this what I receive: 1999 Mode Tips A single gunship shows up; use the Songbird to destroy it. Two gunships show up ; don't use the Songbird to destroy them. Instead, use the Songbird to kill the infantry they drop . A single gunship wielding a rocket cannon will show up; destroy the cannon with a weapon rather than the Songbird . The Sniper Rifle is one of the fastest ways to do this; target the actual cannon . Two gunships will show up, kill the infantry they drop using the Songbird. There will also be two RPG wielding enemies on the catwalks, throw them off using the Undertow Vigor . Remember it takes one bar to pull them in and another to throw them from the deck. A zeppelin will show up and drop two Motorized Patriots along with several other enemies. Destroy the zeppelin using the Songbird , take ou

Blank screen with cursor windows10

When on pc. Wait the black screen with moveable cursor. Press space bar at keyboard. Enter your login password or random the 'enter' Bank screen will be fixed. END.

re; first c#

File>New Project>Visual C#>Console Application HelloWorld! using System;     //'using' includes an existing code library(namespace) namespace ConsoleApplication1 {     class Program     {         static void Main() //c# console begin in Main() method         {             //'output is declared as text string             //value of output is Hello World!             string output = "Hello World";             Console.WriteLine(output);             Console.ReadLine();         }     } } Run. Output. Hello World. BREAKPOINTS u sing System; namespace breakpoints {     class Program     {         static string title = "The sum is:";         static void ShowSum()         {             int x = 55;             int y = 66;             int sum = x + y;             Console.WriteLine(sum);         }         static void Main()         {             Console.WriteLine(title);             S