Jump to content

allhellno

Members
  • Content Count

    29
  • Joined

  • Last visited

Everything posted by allhellno

  1. If anyone is interested I run a Dayz server called DreadZ, Anyone is welcome and I can assure you that it's fair and friendly (as friendly as Dayz can be I suppose). Currently a brand new server, having just closed my DayZ mod server, looking to build up a reagular player base. Squads and clans are always welcome aswell. Look forward to seeing some of you join! TeamSpeak: ts.dreadz.us (Currently Up) Website: http://DreadZ.us/ (Currently Down) Server IP/Port: 8.6.193.181:2302 DayZ (Public/Veteran) 115796 ~~ DreadZ ~~ Tampa, FL
  2. If anyone is interested I run a Dayz server called DreadZ, Anyone is welcome and I can assure you that it's fair and friendly (as friendly as Dayz can be I suppose). I run the server the way I like it as a player...medium population, under 50 vehicles, with hacker protection and no modified spawns. I can't stand these servers where admins abuse their panels or every player has a helicopter and a DMR. I just want to enjoy Dayz for what it is, and if that sounds like you too then I invite you to stop on by the server! If not that's fine too...more beans for me. We now have a website, including high scores and a deadliest player alive feature! Check it out! Detailed information: TeamSpeak3: ts.dreadz.us Website: http://DreadZ.us/ Server IP and port: 69.39.239.148:3136 Server domain: dayz.dreadz.us 3rd person: Yes Crosshairs: No Nameplates: Hell no Death message: Yes Sidechat: Yes Time zone: Central US (GMT -6) Day/Night cycles: Yes Restart rate: 6 hours Server host: DayZ.st Rules: No Cheating/Hacking tolerated of any formDo not use excessive vulger in chatDo not use voice over sidechatNo spamming sidechat, use the teamspeakNo combat loggingNo asking admins for favors (This will result in a ban)
  3. Server offline indefinatly, migrated to SA. More info on new server here http://www.gametracker.com/server_info/8.6.193.181:2302/
  4. Looking for some one skilled with ps/gimp to make the splash image for my server, if the work is good I could throw over a couple of bucks http://forums.dayzgame.com/index.php?/topic/152687-dreadz-vanilla-dayz-teamspeak-50-vehicles-website/
  5. allhellno

    Admin abuse on Server US 8456

    Sounds like an over weight man likes playing with the name lucy
  6. allhellno

    Looking for graphics designer

    Well just a nice looking and informative page, with a dayz theme of course
  7. Excellent, look forward to seeing you return. How ever the server usually has four people not ten (server average) Now have a denug monitor per request of the players, to toggle it use the right control key
  8. I've been adding some features to my site, two of which are a basic high scores script and a deadliest players alive script. Looking for more ideas or optimizations any one may have. Here is the code High scores <?$sql1 = "select profile.name, survivor.* FROM profile, survivor as survivor where profile.unique_id = survivor.unique_id ORDER BY `survivor`.`survival_time` DESC LIMIT 0, 10;";$sql2 = "SELECT * FROM `profile` ORDER BY `profile`.`total_zombie_kills` DESC LIMIT 0, 10;";$sql3 = "SELECT * FROM `profile` ORDER BY (total_survivor_kills+total_bandit_kills) DESC LIMIT 0, 10;";$v1 = array();$thelist1 = array();$thelist2 = array();$thelist3 = array();$result = mysqli_query($con,$sql1);$i=1;echo "<h2>Longest lives</h2><br /><table border=\"1\"><tr><th>#</th><th>Name</th><th>Time alive</th><th>Alive</th></tr>";while($row = mysqli_fetch_array($result)) { $st = $row['survival_time']; $st = sprintf("%02dh %02dm", floor($st/60), $st%60); $name = $row['name']; $alive = $row['is_dead']; if($alive==0) { $alive = "Yes"; } if($alive==1) { $alive = "No"; } $thelist1[] = "<tr><td>" . $i . "</td><td>" . $name . "</td><td>" . $st . "</td><td>" . $alive . "</td></tr>"; $i++; }echo implode($thelist1); echo "</table>"; $result = mysqli_query($con,$sql3); $i=1; echo "<h2>Most player kills</h2> <br /><table border=\"1\"><tr><th>#</th><th>Name</th><th>Survivor kills</th><th>Bandit kills</th><th>Total kills</th></tr>";while($row = mysqli_fetch_array($result)) { $sk = $row['total_survivor_kills']; $bk = $row['total_bandit_kills']; $tk = $bk+$sk; $name = $row['name']; $thelist3[] = "<tr><td>" . $i . "</td><td>" . $name . "</td><td>" . $sk . "</td><td>" . $bk . "</td><td>" . $tk . "</td></tr>"; $i++; }echo implode($thelist3); echo "</table>"; $result = mysqli_query($con,$sql2); $i=1; echo "<h2>Most zombie kills</h2> <br /><table border=\"1\"><tr><th>#</th><th>Name</th><th>Zombie kills</th><th>Headshots</th></tr>";while($row = mysqli_fetch_array($result)) { $zk = $row['total_zombie_kills']; $hs = $row['total_headshots']; $name = $row['name']; $thelist2[] = "<tr><td>" . $i . "</td><td>" . $name . "</td><td>" . $zk . "</td><td>" . $hs . "</td></tr>"; $i++; }echo implode($thelist2); echo "</table>";?>Deadliest alive <?$sql = "select profile.name, survivor.* from profile, survivor as survivor where profile.unique_id = survivor.unique_id and survivor.is_dead = '0' AND DATE(survivor.last_updated) > CURDATE() - INTERVAL 7 DAY;";$v1 = array();$thelist = array();$result = mysqli_query($con,$sql);echo "<table border=\"1\"><tr><th align=\"center\">Score</th><th align=\"center\">Name</th><th align=\"center\">Time alive</th></tr>";while($row = mysqli_fetch_array($result)) { $sk = $row['survivor_kills']; $bk = $row['bandit_kills']; $zk = $row['zombie_kills']; $st = $row['survival_time']; $st = sprintf("%02dh %02dm", floor($st/60), $st%60); $uqid = $row['unique_id']; $kscore = ($zk*.1)+($sk*5)+($bk*10); $kscore = sprintf('%0.1f', $kscore); $name = $row['name']; if($kscore!=0) { $thelist[] = "<tr><td>" . $kscore . "</td><td>" . $name . "</td><td>" . $st . "</td></tr>"; } } natsort($thelist);$thelist=array_reverse($thelist);echo implode($thelist); echo "</table>";?>
  9. allhellno

    [PHP] DayZ high scores and deadliest alive

    You make some very good points, thanks for the constructive advice
  10. Website is now up with a few cool features, any other ideas people would like to see implemented?
  11. The teamspeak was down for awhile but is currently back up
  12. Look forward to seeing you return. On a side note, I'm currently looking for two new admins. If interested please send an email to allhellno@hotmail.com describing your personality, age, admin experience, and other details you might find germane to applying for the position (Only rcon access, no maps or panels will be allowed for use by admins) Thanks!
  13. Crosshairs have now been disabled
  14. Nice typo on my part... "diffeculty" lulz.. Appriciate it
  15. Removed difficulty from post, thanks for the heads up
×