• The War Z - This IS NOT A GAME, IT'S A SCAM
    10,003 replies, posted
[QUOTE=Vasili;38358979]okay I found a pistol in the air base and a hatchet and stoked up with loads of food and water, now I'm just gonna try getting to a safe zone without dying.[/QUOTE] Why don't you play with us man?
Finally managed to install, who wants to Team up? I've got TeamSpeak.
Lil heads up, people are getting 24 hour bans for duping. Dunno if I'm late.
[QUOTE=0FucksGiven;38359419]Lil heads up, people are getting 24 hour bans for duping. Dunno if I'm late.[/QUOTE] That's news to me, but good news.
[QUOTE=0FucksGiven;38359419]Lil heads up, people are getting 24 hour bans for duping. Dunno if I'm late.[/QUOTE] Oh boy here we go again.
[QUOTE=0FucksGiven;38359419]Lil heads up, people are getting 24 hour bans for duping. Dunno if I'm late.[/QUOTE] God damn it nooo...
[QUOTE=Vasili;38359109]okay so I logged into a new server and the air tower was filled with shotguns, pistols, food, backpacks, water, helmets etc, literally tons of dupes.[/QUOTE] Grab it all. :v:
Anyone willing to team up? It's hard to work alone. If anyone is interested feel free to add me on Steam. And I don't have much to let you know, I've have been killed and killed all over again.
[QUOTE=WolfeClaw;38356685]When I see people getting chased by zombies, I actually take the driver seat and drive that train away from them. :v: Sometimes I think I'm too nice in this damn game.[/QUOTE] Drive a train? I'd hate to think of the consequences of being a passenger on your train [editline]7th November 2012[/editline] [QUOTE=Vasili;38358006]you know you'd think a military air base would have more guns in it, so far I have only found a large collection of hats.[/QUOTE] If there was an evacuation, you'd take every damn gun i'm sure, especially if there were a number of soldiers there. That doesn't stop them forgetting a bit of ammo or at least one weapon, however.
I jugged it all the way to a city only to be caught off guard and gang raped by 3 bandits whelp
Does anyone have a spare code? I play a lot of DayZ, and I'll probably buy this soon. I just have to see if it's worth it or not.
If anyone wants to play, I'm on server 69! Name is Friendly Zombie.
By the time I get there, you'll be dead and have logged off to get another char.
[QUOTE=TannerDrummer;38360424]If anyone wants to play, I'm on server 69! Name is Friendly Zombie.[/QUOTE] US 69 right? joining now
Today was a good warz day. [thumb]http://filesmelt.com/dl/WarZ_2012-11-08_02-54-24-97.png[/thumb] [thumb]http://filesmelt.com/dl/WarZ_2012-11-08_02-54-33-51.png[/thumb] I was in a group of 3 people, including me. And we spent the last 4 hours in campo city or w/e its called... My god it was fun.
Anyone got a code i could possibly have? Oh the irony of my title. heh,
anyone wanna play with me? just say a server and ill go
If anyone wants the Steam Overlay in WarZ you can use this turtorial: [url]http://forums.thewarz.com/showthread.php?48874-No-steam-overlay-bug-FIX[/url] [quote]Step 1: - copy/paste this code into a text editor (ex. notepad) and save it as 'War Z.txt' without the quotes and save it on your desktop Code: [CODE]using System; using System.Diagnostics; using System.IO; using System.IO.Pipes; using System.Management; using System.Threading; using System.Windows.Forms; namespace steamwarz { class Program { static bool IsPreVista() { //Vista or higher check if (System.Environment.OSVersion.Version.Major < 6) { MessageBox.Show("Windows Vista or higher is required.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return true; } return false; } static void Main(string[] args) { // If Operating System is before Vista, then exit if (IsPreVista()) return; if (args.Length == 0) { string pipeName = "warzsteam"; // run ourself as admin try { Process admin = new Process(); admin.StartInfo.FileName = System.Reflection.Assembly.GetEntryAssembly().Location; admin.StartInfo.Arguments = pipeName; admin.StartInfo.Verb = "runas"; admin.Start(); } catch(Exception e) { string errmsg = e.Message + "\n"; errmsg += "Failed to escalate. Program will now exit."; MessageBox.Show(errmsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } // run the War Z launcher try { Process launcher = new Process(); launcher.StartInfo.FileName = Directory.GetCurrentDirectory() + "\\WarZlauncher.exe"; launcher.Start(); } catch(Exception e) { string errmsg = e.Message + "\n"; errmsg += "Launcher failed to begin. Is this exe in War Z's home directory? Program will now exit."; MessageBox.Show(errmsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } // loop waiting for our temp file to be filled with War Z's commandline arguments Console.WriteLine("Waiting for our other program to finish..."); // grab data from the commandline arguments string exe, arguments, workingdirectory; try { NamedPipeServerStream server = new NamedPipeServerStream(pipeName); server.WaitForConnection(); StreamReader sr = new StreamReader(server); string cmdline = sr.ReadLine(); // grab data from the commandline arguments exe = cmdline.Substring(1, cmdline.IndexOf('"', 1) - 1); arguments = cmdline.Substring(cmdline.IndexOf("\" ") + 2); workingdirectory = cmdline.Substring(1, cmdline.IndexOf("WarZ.exe") - 1); } catch(Exception e) { string errmsg = e.Message + "\n"; errmsg += "Failed to read command line arguments from other program. Program will now exit."; MessageBox.Show(errmsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } try { // start War Z's client Process warz = new Process(); warz.StartInfo.FileName = exe; warz.StartInfo.Arguments = arguments; warz.StartInfo.WorkingDirectory = workingdirectory; warz.Start(); } catch(Exception e) { string errmsg = e.Message + "\n"; errmsg += "WarZ.exe failed to begin. Is this exe in War Z's home directory? Program will now exit."; MessageBox.Show(errmsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } // exit the program return; } else { // Connect to pipe server string pipeName = args[0]; NamedPipeClientStream client = new NamedPipeClientStream(pipeName); try { client.Connect(10000); } catch (Exception e) { string errmsg = e.Message + "\n"; errmsg += "Failed to connect to other program. Program will now exit."; MessageBox.Show(errmsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } //Create the query ObjectQuery query = new ObjectQuery("Select * from Win32_Process Where Name =\"WarZ.exe\""); // check once a second for WarZ.exe that the launcher starts when the user hit's play in the launcher Console.WriteLine("Waiting for launcher to start War Z..."); while (true) { ManagementObjectSearcher searcher = new ManagementObjectSearcher(query); ManagementObjectCollection processList = searcher.Get(); foreach (ManagementObject obj in processList) { string cmdline = obj.GetPropertyValue("CommandLine").ToString(); if (cmdline.Contains("WOLogin")) { // kill the process obj.InvokeMethod("Terminate", null); // write command line to the pipe try { StreamWriter sw = new StreamWriter(client); sw.AutoFlush = true; sw.WriteLine(cmdline); } catch(Exception e) { string errmsg = e.Message + "\n"; errmsg += "Failed to write commandline arguments to pipe. Program will now exit."; MessageBox.Show(errmsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } // exit the program return; } } Thread.Sleep(1000); } } } } }[/CODE] Step 2): - Open a command prompt - Start Menu->All Programs->Accessories->Command Prompt OR just type "cmd" into the search bar when pressing the windows icon. - Now copy/paste this long command in and hit enter. The quotes are important. Code: %windir%\Microsoft.Net\Framework\v3.5\csc /platform:x86 "/out:%USERPROFILE%\Desktop\War Z.exe" "%USERPROFILE%\Desktop\War Z.txt" It should give you the following message, with no errors: Code: Microsoft (R) Visual C# 2008 Compiler version 3.5.30729.5420 for Microsoft (R) .NET Framework version 3.5 Copyright (C) Microsoft Corporation. All rights reserved. - For advanced users: you don't have to use v3.5, I just picked v3.5 because I think almost everyone will have that directory, you can use any that has a csc.exe in it - csc is the c# compiler if you were wondering - There should now be a War Z.exe on your desktop. You can exit out of the command prompt. Step 3: - Now that you have an exe, move it into your War Z's home directory. The home directory is the one with War Z's WarZlauncher.exe in it - An example War Z home directory is: C:\Users\username\Documents\The War Z - Go into steam and do the normal 'add non-steam game' and browse to the exe you just placed in War Z's home directory and add it (the one with the space! NOT WarZ.exe) Step 4 (Optional): - Right click on the newly made game in steam's library and go to properties - Click Choose Icon and browse to War Z's WarZlauncher.exe and select it to get the War Z icon If everything is working right, when you launch War Z.exe from steam, two command prompts will pop up. One will say, "Waiting for our other program to finish...", and the other will say, "Waiting for launcher to start War Z...". Then War Z's launcher will start. Log in to the launcher like normal, then when you hit the Play button, both of the command prompts should go away. Then the game should start and you should have the steam overlay. If you try it and the steam overlay still doesn't work, then try exiting steam entirely and running steam in admin-mode then try again. I know it is alot but i THINK it does fix it, Enjoy! Credits to: Razzmatazz, please remember to plus rep BOTH of us if you can spare the time Add me on steam if you want: Shane Moffatt METHOD 2! 1 - Download WarZ Steam Overlay Easy Install.rar via MediaFire. LINK:[url]http://www.mediafire.com/?v6abueaywsbup2z[/url] 2 - Extract the WarZ Steam Overlay Easy Install folder inside of the .rar to your desktop. 3 - Open it and run Extracting Operation.bat. It should be self explanatory from there. All credits go to Veteran for this method![/quote]
-snap-
Wtf, Jake banned me from the fucking Mumble and all I did was join
[QUOTE=Mio Akiyama;38361950]Wtf, Jake banned me from the fucking Mumble and all I did was join[/QUOTE] What's Mumble?
had a fucking great session with blackmacky in short we went with new chars to the closest town we found ( lucky enough he had a pistol and he gave me a shotty) so we go on ith voice chat on steam, first we found a guy we tried to find him but we couldnt so we loot the town for a while make sure its safe then we run to the ranch where i almost got killed becouse of FUCKING ZOMBIES then we haded back to the same town but there was a guy ( thank god blackmacky has fucking hawk eyes) so he told me to go first, he diestracted the guy with his shots while i went behind a face i suppose he was in thir dperson becouse i saw his gun clip trough the wall, So in short i go back to the fence look at him for a sec and then BAM! suddenly a MOTHERFUCKING LOOT MOUNTAIN CAME! like literally he had a shit load of shotgun and rifle ammo and god knows what else so i covered blackmatty while he looted the stuff we haded to the safezone when we saw a newbie with a pistol of course black shoots him but we never found the corpose so we go to the safezone i gave him some mag i cant remember and he dropped a 9mm pistal with a m16 rifle i pick the rifle and the mag but when im about to pick the pistal KICKED OFF SERVER DUE TO THE PATCH head to my inventory only to see i only have the shotty and the m16 FFF but well it was worth it the adrenaline came pretty fuucking hard after i killed the guy :p
Go to your recent/favorite tab and try and find the server he died on?
i went but it wasnt there
Are you guys using any voice chat? If so, which one because I want to join-in on your shenanigans.
[QUOTE=Mio Akiyama;38361950]Wtf, Jake banned me from the fucking Mumble and all I did was join[/QUOTE] was me lol, i was told to ban on sight
[QUOTE=Cheeseist;38362544]was me lol, i was told to ban on sight[/QUOTE] buncha bullcrap, I didn't do anything
[QUOTE=Mio Akiyama;38362558]buncha bullcrap, I didn't do anything[/QUOTE] previous offesive and it was funny. still no proof that you didnt do it and your suspect as fuck
[QUOTE=Cheeseist;38362578]previous offesive and it was funny. still no proof that you didnt do it and your suspect as fuck[/QUOTE] What happen?
I don't know if the temp ban for it is delayed or if my method is different, but I've duplicated a bunch of items an hour ago and my account is still fine.
Sorry, you need to Log In to post a reply to this thread.