Jump to content

walkinghazard

Members
  • Content Count

    25
  • Joined

  • Last visited

Everything posted by walkinghazard

  1. LAD's Private DayZ Server Server Name: LAD's Private Dayz Server (v1.7.2.6/build 96584) | Anti-Hack Scripts | VETERAN | 3DP:ON | CH:OFF | GMT-4 Slots: 30 Map: Chernarus 3DP: ON Crosshair: OFF Channels: Side, Direct, Vehicle, Group Voice: ON Website: http://www.ladgaming.comTeamspeak: ladgaming.com A brand spanking new DayZ server. Anyone can join, this server is completely public. However, we use custom Anti-hack scripts to help ensure that all hackers/cheaters are eliminated. This server will also be moderated as often as possible. Server activity is logged - logs are pruned regularly to ensure there is no suspicious/illegal activity which would result in an instant ban. Full Server Support If you ever have any problems in-game such as lost items, lost tents, unsaved vehicles etc. you can contact the Admin at anytime for support. We are here to ensure that all players get the best playable experience.You can PM me either on this forum or on our own forums at www.ladgaming.com. The TS is also open to anyone 24/7. No More Hacked Weapons! I've recently completed a simple script that will check the entire server every 30 secs for any illegal items. If illegal items are detected, they are removed. This basically works by comparing the items in the server/player gear with items in a list. If there are items found in the server that are not in that list, then they are instantly removed. Note: This server will not be running 24/7 at this time. However, I aim to run the server everyday, for the majority of the day.
  2. Looks like my post got deleted hehe. Sorry if posting a link to my program was not allowed or something, a notification would've been nice :P For future reference, here's the source code for the file if for some strange reason anyone is interested :thumbsup: Imports System.IO.FileInfo Imports System.Security.Permissions.FileIOPermission Module Module1 Sub Main() Dim appName As String = "JamiesDayZLauncher" Dim isInitialSetup As String = Nothing Dim userName As String = Nothing Dim arma2oaFolderPath As String = Nothing Dim arma2FolderPath As String = Nothing Dim selectedOption As String = Nothing Dim extraParameters As String = Nothing Dim trimmedarma2oaFolderPath As String = Nothing Dim trimmedarma2FolderPath As String = Nothing Dim myTrimChar() As Char = {""""} isInitialSetup = GetSetting(appName, "Data", "InitialSetup", isInitialSetup) If isInitialSetup = Nothing Then InitialSetup: Console.WriteLine(" ==============================") Console.WriteLine(" Initial Setup") Console.WriteLine(" ==============================") Console.WriteLine() Console.WriteLine() Console.WriteLine("Before you can use this application you must complete this quick initial setup.") Console.WriteLine() Console.Write("Please enter your first name: ") userName = Console.ReadLine() SaveSetting(appName, "Data", "FirstName", userName) Console.WriteLine() If My.Computer.FileSystem.DirectoryExists("C:\Program Files (x86)\Steam\steamapps\common\arma 2 operation arrowhead") Then arma2oaFolderPath = "C:\Program Files (x86)\Steam\steamapps\common\arma 2 operation arrowhead" Console.WriteLine("ArmA 2 Operation Arrowhead folder automatically found.") Console.WriteLine() SaveSetting(appName, "Data", "arma2oaFolderPath", arma2oaFolderPath) Else Console.WriteLine("ArmA2:OA folder could not automatically be found. Please enter the full path to your Arma2:OA folder. You should do this by simply dragging and dropping the folder.") Console.WriteLine() arma2oaFolderPath = Console.ReadLine() SaveSetting(appName, "Data", "arma2oaFolderPath", arma2oaFolderPath) Console.WriteLine() End If If My.Computer.FileSystem.DirectoryExists("C:\Program Files (x86)\Steam\steamapps\common\arma 2") Then arma2FolderPath = "C:\Program Files (x86)\Steam\steamapps\common\arma 2" Console.WriteLine("ArmA 2 folder automatically found.") Console.WriteLine() SaveSetting(appName, "Data", "arma2FolderPath", arma2FolderPath) Else Console.WriteLine("ArmA2 folder could not automatically be found. Please enter the full path to your regular Arma2 folder. You should do this by simply dragging and dropping the folder.") Console.WriteLine() arma2FolderPath = Console.ReadLine() SaveSetting(appName, "Data", "arma2FolderPath", arma2FolderPath) End If Console.WriteLine() Console.WriteLine() Console.WriteLine("Initial setup complete") isInitialSetup = "False" SaveSetting(appName, "Data", "InitialSetup", isInitialSetup) Console.WriteLine() Console.WriteLine() End If If isInitialSetup = "False" Then arma2oaFolderPath = GetSetting(appName, "Data", "arma2oaFolderPath", arma2oaFolderPath) arma2FolderPath = GetSetting(appName, "Data", "arma2FolderPath", arma2FolderPath) trimmedarma2FolderPath = arma2FolderPath.TrimStart(myTrimChar) trimmedarma2FolderPath = trimmedarma2FolderPath.TrimEnd(myTrimChar) trimmedarma2oaFolderPath = arma2oaFolderPath.TrimStart(myTrimChar) trimmedarma2oaFolderPath = trimmedarma2oaFolderPath.TrimEnd(myTrimChar) userName = GetSetting(appName, "Data", "FirstName", userName) Console.WriteLine(" v1.0.1") Console.WriteLine(" ==============================") Console.WriteLine(" Jamie's DayZ Launcher") Console.WriteLine(" ==============================") Console.WriteLine() Console.WriteLine() Console.WriteLine("Welcome " & userName & " please select an option below.") Console.WriteLine() Console.WriteLine("Options") Console.WriteLine("1) Launch DayZ [Chernaraus] + Beta") Console.WriteLine("2) Launch DayZ [Lingor] + Beta") Console.WriteLine("3) Launch regular ArmA2:CO + Beta") Console.WriteLine("4) Re-run initial setup") Console.WriteLine("5) Exit") Console.WriteLine() Console.Write("Option: ") selectedOption = Console.ReadLine() If selectedOption = "1" Then extraParameters = " -noSplash " & """-mod=" & trimmedarma2FolderPath & ";expansion;expansion\beta;expansion\beta\expansion;@DayZ;""" Console.WriteLine("""" & trimmedarma2oaFolderPath & "\arma2oa.exe" & """" & extraParameters) Shell("""" & trimmedarma2oaFolderPath & "\arma2oa.exe" & """" & extraParameters) Console.WriteLine() Console.WriteLine() Console.WriteLine("Launching DayZ [Chernaraus] ...") Console.WriteLine() Console.WriteLine() Console.WriteLine() Console.WriteLine("Press any key to exit the launcher") Console.ReadLine() End If If selectedOption = "2" Then extraParameters = " -noSplash " & """-mod=" & trimmedarma2FolderPath & ";expansion;expansion\beta;expansion\beta\expansion;@dayz_lingor;""" Shell("""" & trimmedarma2oaFolderPath & "\arma2oa.exe" & """" & extraParameters) Console.WriteLine() Console.WriteLine() Console.WriteLine("Launching DayZ [Lingor] ...") Console.WriteLine() Console.WriteLine() Console.WriteLine() Console.WriteLine("Press any key to exit the launcher") Console.ReadLine() End If If selectedOption = "3" Then extraParameters = " -noSplash " & """-mod=" & trimmedarma2FolderPath & ";expansion;expansion\beta;expansion\beta\expansion;""" Shell("""" & trimmedarma2oaFolderPath & "\arma2oa.exe" & """" & extraParameters) Console.WriteLine() Console.WriteLine() Console.WriteLine("Launching regular ArmA2:CO + Beta ...") Console.WriteLine() Console.WriteLine() Console.WriteLine() Console.WriteLine("Press any key to exit the launcher") Console.ReadLine() End If If selectedOption = "4" Then DeleteSetting(appName) Console.WriteLine() Console.WriteLine() Console.WriteLine("All previously stored data has been erased") Console.WriteLine() Console.WriteLine() GoTo InitialSetup End If If selectedOption = "5" Then GoTo EndOfApp End If EndOfApp: End If End Sub End Module
  3. walkinghazard

    Videos Videos Everywhere

    Cmon man this is basic stuff. I wouldn't be saying this if you were completely new to this sort of thing but according to you, you aren't ^^ Just open the file in your usual video editor (like Sony Vegas or whatever you use) and just save it as an AVI or H.264 file @ 720p
  4. Thanks for all the replies guys! I have responded to all those I could. Now closed. Hi guys I used to run a small DayZ group but what with all the recent hackings and stuff - we've lost a few players. I wanna kick-start our group again with some fresh faces. We're looking looking for experienced (or at least relatively experienced) DayZ players that just wanna have fun. We have our own Teamspeak thats running 24/7 so you can always come online. If you're interested, PM me and I'll send you the TS details. Looking forward to your replies :) Jamie P.S The only thing I ask is that you are at least 18 years of age or consider yourself mature.
  5. walkinghazard

    [Recruiting] Starting a small DayZ Group

    Thanks for all the replies guys! I have responded to all those I could.
  6. Haha well thanks anyway ;)
  7. Bump - updated with new anti-hacked weapon script.
  8. walkinghazard

    Looking for private server? In here!

    LAD's Private DayZ Server Server Name: LAD's Private Dayz Server (v1.7.2.6/build 96584) | Custom Anti-Hack Scripts | VETERAN | GMT-4 Slots: 30 Map: Chernarus 3DP: ON Crosshair: OFF Channels: Side, Direct, Vehicle, Group Voice: ON Website: http://www.ladgaming.com Teamspeak: ladgaming.com A brand spanking new DayZ server. Anyone can join, this server is completely public. However, we use custom Anti-hack scripts to help ensure that all hackers/cheaters are eliminated. This server will also be moderated as often as possible. Server activity is logged - logs are pruned regularly to ensure there is no suspicious/illegal activity which would result in an instant ban. Full Server Support If you ever have any problems in-game such as lost items, lost tents, unsaved vehicles etc. you can contact the Admin at anytime for support. We are here to ensure that all players get the best playable experience.You can PM me either on this forum or on our own forums at www.ladgaming.com. The TS is also open to anyone 24/7. No More Hacked Weapons! I've recently completed a simple script that will check the entire server every 30 secs for any illegal items. If illegal items are detected, they are removed. This basically works by comparing the items in the server/player gear with items in a list. If there are items found in the server that are not in that list, then they are instantly removed. Note: This server will not be running 24/7 at this time. However, I aim to run the server everyday, for the majority of the day.
  9. Please note that we are now currently no longer recruiting! Hi all After playing this game for a while now I've come to realise that working in groups is much more effective/easier than trying to survive alone. I therefore want to form a group of people that can work together looting, killing and exploring. The long term goal is to eventually get a base setup with tents and vehicles where we can store all our loot. All you need to join is Teamspeak and a mic (obviously). Oh, we also require that you speak English, even if only a little. If you think you're man (or woman) enough to join, reply here or PM me. I'm always online. PM for details of the Teamspeak address and hop on :) Edit: The server we shall be using as our home server has not yet been decided. In terms of group size I have only just started this group so there are only currently 3 people involved (including myself). However, there are many people currently looking for groups to join so I will be recruiting more members over the coming days. Just jump on TS at anytime if you have any further questions or PM me. Looking forward to starting this. Edit 2: We now have about 6 people joining, keep this up guys, we still need more :D
  10. walkinghazard

    Dont go it alone

    Well if you want you can always join us on Teamspeak? We play in groups on the same servers, scouting for loot, exploring the map etc. PM me if you're in :) - Jamie
  11. walkinghazard

    Starting a DayZ Base/Camp - Recruiting

    We now have about 6 people joining, keep this up guys, we still need more :D
  12. walkinghazard

    Starting a DayZ Base/Camp - Recruiting

    bumpd bumpd
  13. walkinghazard

    Starting a DayZ Base/Camp - Recruiting

    Great responses so far! Looking forward to teaming up with you guys. PM for details of the Teamspeak address and hop on :)
  14. walkinghazard

    Starting a DayZ Base/Camp - Recruiting

    I'll update my post bumpd
×