Search results

  1. M

    Problem Namalsk 0.72

    Yup, I can try helping you. I added you.
  2. M

    Lootable Clothing?

    Im trying to find and run a script on my server that allows players to steal clothes off dead bodies or back off their own dead bodies. Anyone know of any examples of this or if its even been created of yet?
  3. M

    Problem Namalsk 0.72

    Thanks for the response. I found out why it wasnt working correctly. The mission file was missing a few pieces of code in for the bloodsuckers and blowouts. Works fine now.
  4. M

    Problem Namalsk 0.72

    I installed the new update and even have done a complete reinstall on my servers mappack and update. Ive gone through the INIT in the dayz_1.namalsk.pbo. They are listed correctly matching, but for some reason my server doesnt spawn bloodsuckers nor do the blowouts happen. But the new loot does...
  5. M

    Survivor table

    Awesome so this pulls the right data I wanted, but basically I am trying to get the NAME column displaying in the SURVIVOR table the same way as it is in the PROFILE table. That way I can keep less tabs open and makes it easier to find players and their ID without jumping back and forth. How...
  6. M

    Survivor table

    I added in a column to my SURVIVOR table called NAME. Now what im trying to figure out how to do is pull the data from the PROFILE table NAME column and have them correctly place beside the corrisponding unique_ID on the SURVIVOR tables NAME column. How do I go about doing this? I need it to...
  7. M

    Player Movement History

    King, if you wouldnt mind elaborating a little more on this approach. Like break it down Barney style for me. Lol I dont know how to "parse" log files or where to input that code at. Im not completely illiterate on all of this but my knowledge on this coding is limited, If i were more fluent it...
  8. M

    Cleaning up DB dead players?

    well, survivors die.. it would really suck to place a tent down fill it up with some gear then die by zombies or bandits whatever the case may be. If I have the tents deleting everytime the player dies there is no point to even having tents or even attempting to save gear into a tent. But ill...
  9. M

    setdamage log

    So on I had a hacker in the server earlier killing a few people. I wasnt currently admining so hacker doubtfully knew I was checking logs not long after. Gotcha Antihacks was kicking just 1 person for "teleporting" but he ended up quitting after dying and raging about hackers. Now I havent...
  10. M

    Cleaning up DB dead players?

    Awesome JoSchaap, this works how I wanted it to. But I got an idea while testing this out. This script only runs if the player has no instance_deployable attached to their name. So if I were to create a row in my Survivor table giving it a fake UniqueID like 1234. How would I make this...
  11. M

    Cleaning up DB dead players?

    looks pretty simple too, sweet thanks! ill give it a shot
  12. M

    Cleaning up DB dead players?

    Is there a script I can run that will clean up all the " is_dead" survivor rows from the Survivor table in my database? I realize I will have to backup and remove the Instance_deplayables because they are linked to the survivors and you run into an error if you try and delete a survivor that has...
  13. M

    Custom Loadout Based on Various Stats

    Ahh yeah that would be more effective than what I was thinking. I dont know much about scripting at all Im trying to learn. Ive modded some of my own files to see the effects. But I wouldnt know where to start. It would definitely make sense if it was in the playerDied.sqf so when they spawn a...
  14. M

    Custom Loadout Based on Various Stats

    I think the concept is a very good idea. I hope someone works on an idea like this. Would encourage more players to go into cities and kill zombies. Would give new players a way to earn a weapon or gear if they are fairly new to the game. Sometimes finding a weapon, even a 1911 isnt easy...
  15. M

    Hackers

    I have no helpful info except, if you want to keep hackers out of your server. It requires constantly monitoring. Most scripts arent logged. Personally, I very much hate skiddies. I wouldnt give them the satisfaction of the title "hackers" most of them aren't. Hacking requires intelligence...
  16. M

    Loot Table?

    Ok so I basically just played around with my mission file and the 3d editor for a bit. I learned how to add in my own buildings and all that stuff was pretty fun to play with. Now I am trying to figure out how to modify the loot tables on my server without the clients having to download a pbo...
  17. M

    Player Movement History

    Sounds pretty awesome but Im not a fan of the ... Its in beta but needs to be purchased Once you finish your beta testing on it and work out all the bugs let me know. Ill help beta test it on my server, but im surely not spending money on some beta program for a game that will be obsolete in...
  18. M

    Player Movement History

    Oh also, At the bottom of my PHP admin control panel for the hive. In the SQL tab it says on the bottom, it shows Delimeter and box with a value I can change If needed but in that box the dafault Delimiter is set to the semicolon key or ' ; ' minus the apostrophes. is that causing an error...
  19. M

    Player Movement History

    Well I will say I am not an advanced SQL database user in any way. I am very new to this but I to a point understand tables and how they work. Just the code I am still learning. Originally I used the delimiter $$ and END $$ functions but I got a different error using those Ill post that one. "...
  20. M

    Player Movement History

    Ok so I tried in putting that into mine. The first set worked but the 2nd set. delimiter $$ CREATE DEFINER=`root`@`localhost` TRIGGER `dayz`.`Survivor_Log` BEFORE UPDATE ON `dayz`.`survivor` FOR EACH ROW BEGIN insert into survivor_log...
Back
Top