Search results

  1. hambeast

    Hack on your own server for the purpose of monitoring for other hackers?

    Yep, I've had his tools for a month now and the only hackers I get are caught by the script. It warns you when a hacker runs a script in game so you just look at the in game log and ban. It also logs this info to the server's log file as well.
  2. hambeast

    So... with the update... whats gonna break?

    diffmerge. The best. compare folders, compare files. 3 way too. pretty much the industry standard on windows.
  3. hambeast

    Hack on your own server for the purpose of monitoring for other hackers?

    There are a few admin tools under the scripts section. I recommend reaching out to hangender on skype and purchasing his AntiHax tools. They come with a menu and they allow you to give only certain admins powers.
  4. hambeast

    Adding fields to the bliss database

    it could affect future schema updates but it is unlikely. So long as you don't change the current fields, it shouldn't cause any crashes. I don't think indexing will be a problem with adding fields in an InnoDB MySQL database... I've added plenty of tables and procs to my database and...
  5. hambeast

    Base building exploits/bugs

    but you can't get in a vehicle that's being towed with R3F.
  6. hambeast

    DayZ 1.7.7 update soon

    sorry if this has been answered but what will change in the new version? Are we looking at Schema changes, server changes, map changes, or what? In short, what do I need to prepare for as a server owner to update to the new version.
  7. hambeast

    Accelerated Time

    dude go back to reddit if you are going to cry. If you haven't noticed this board promotes all sorts of fun mods we can add on to our servers. DayZ mod is a growing evolving thing. If you can't handle the fact that the wants and needs of the community change then start up a server, password...
  8. hambeast

    Base building exploits/bugs

    perhaps if you guys post this publicly others can get to working on it. kind of sucks for the rest of us who are running it but are in the dark.
  9. hambeast

    Apoc celle| 200+ vehicles | Tow+ heli lift | build your own base | 24/7 day celle 2.0

    nice, totes snagging it out of your mission file.
  10. hambeast

    Excelsior Bridge - Chernarus

    I just tried it using your mission.sqm exactly, minus the briefing name and description. I get two bridges. One slanted and one looking normal.
  11. hambeast

    invcust + celle = no skin saving

    When players log out of my server, the skins save in the database as their proper model but when they log back in, they are changed to a survivor model. I checked the server_playerlogin.sqf file and commented the code out for the model check... Any idea how to get this working? Here is my...
  12. hambeast

    Excelsior Bridge - Chernarus

    I copied the vehicles section over from your mission into mine and now my bridge is doing what his was before, starts fine on land then goes under water... I'm using refuel so there are extra entries in my map... any ideas? mission file: http://pastebin.com/qvv2LQyE
  13. hambeast

    Java and UDP packets / Java rCon Client

    ok... trying to port the C# api code over, Here is what have so far: http://pastebin.com/G5MrHqzc getting closer but still no luck.
  14. hambeast

    Java and UDP packets / Java rCon Client

    Hey all, Wondering if there are any java guys out there that could help shed some light on working with UDP and java. I am referencing this resource: http://www.battleye.com/downloads/BERConProtocol.txt What I am trying to do is send a UDP login packet (0x00) and receive a response packet...
  15. hambeast

    Hi guys how to you make long days short nights?

    its pretty damn easy.... if you have a dedicated server. Just make two seperate hive.ini files, one for AM, one for PM. do the math and change the ini's how you like and rotate them with a scheduled task.
  16. hambeast

    Getting Rid of old players

    modified the script so it won't delete users who own a deployable (FK restraint) DELETE FROM survivor WHERE last_updated < now() - INTERVAL 1 MONTH AND survivor.id NOT IN ( SELECT IDP.owner_id FROM instance_deployable IDP )
  17. hambeast

    [Request] DayZ Currency + AI Merchants

    another place to look at might be wastelands. I know the towing system (R3F) has been implemented successfully in dayz
  18. hambeast

    DayZ Admin tools

    dude... https://github.com/BluePhoenix175/DayZ-Admin-Tools-/blob/master/DayZ%20admin%20tools(chernarus)/admintools/tools/dayzesp.sqf line 208: WTF?
  19. hambeast

    New server owner / Need info about Vehicles

    if you're saying you want to replace all Urals with land rovers, you could just change the vehicle class name in the vehicles table for Ural to LandRover or whatever the classname is. If you want to add new vehicles, you have to add the vehicle type to the vehicles table. Then you add the...
  20. hambeast

    Be owner of a tent by unique_id of the player

    Well, you could create a trigger on the table for on insert. I am not 100% fluent in triggers but you would just join their survivor id to the unique_id and insert it as that. Also, you will have to modify the table so that the foreign key points to the right column (unique_id) and not...
Back
Top