Search results

  1. CaptainMack

    Custom Spawn location based on UID?

    Alright, I'll write it in text before I go on vacation. First step, create the table - you do that by going into your MySQL Client like Navicat, HeidiSQL or phpmyadmin and then execute a query with this code: CREATE TABLE `cust_spawn` ( `unique_id` INT(10) NULL DEFAULT NULL, `worldspace`...
  2. CaptainMack

    DayZ Whitelister Pro Plus

    It's simple a form that sends POST data to a phpscript that inserts the data into the DB, If you want more instructions, I'll share the code when I get home.
  3. CaptainMack

    Community Request

    I might do one when I get home from vacation, you mean clean install of ARMA OA all the way to a working DayZ server?
  4. CaptainMack

    Custom Spawn location based on UID?

    You simply put each block of code and execute it as a query on your database :) Table i've tested, teh trigger I haven't yet, so there MIGHT be some syntax errors, but try it out :) remember if the trigger stops people from respawning/new people joining, remove it :) EDIT: Should I make a video...
  5. CaptainMack

    Custom Spawn location based on UID?

    yeah, you can always use the data for a IF-sentence :) Haven't tried it, but this should work delimiter $$ CREATE TRIGGER `custom_spawn` BEFORE INSERT ON `databasename`.`survivor` FOR EACH ROW BEGIN DECLARE x INT; DECLARE y STRING; SET x = (SELECT unique_id FROM cust_spawn WHERE...
  6. CaptainMack

    Custom Spawn location based on UID?

    Alright, you're probably using reality (former bliss), it's purely SQL. I'll write the sql when i get home and test it before i post it
  7. CaptainMack

    Custom Spawn location based on UID?

    What build are you using? Reality? If i know how your database looks like, i could help you a bit further :-)
  8. CaptainMack

    Custom Loadout Not Working

    If it still isn't working, create a MySQL Trigger for it, I've made a simple example (the body of the trigger) BEGIN DECLARE x INT; SET x = (SELECT unique_id FROM cust_loadout_profile WHERE unique_id=NEW.unique_id); IF NEW.unique_id = x THEN SET NEW.model='Rocket_DZ'; END IF; END
  9. CaptainMack

    Custom Spawn location based on UID?

    Sure, you can use MySQL Triggers (depending on what build you use) Lets say a person of a specific group dies, you want to set his next spawnpoint to a custom place BEGIN DECLARE x INT; SET x = (SELECT unique_id FROM cust_loadout_profile WHERE unique_id=NEW.unique_id); IF NEW.unique_id = x...
  10. CaptainMack

    DayZ Whitelister Pro Plus

    Just installed it, added a form on the homepage to insert SQL for automatic sign-ups, nice work!
  11. CaptainMack

    Vehicle Refueling / Repairing Bugged

    We're having the same problem on our server
  12. CaptainMack

    Autorestarter

    Remember to add a "smarter" rcon reconnect, after the server has been restarted. Not like BEC that just disconnects.
  13. CaptainMack

    Custom Loadout Not Working

    Same here, doesn't go into effect when respawning. Chernarus, Messaging, Buildings, CustomInventory,
  14. CaptainMack

    Simple AI Tutorial (no rMod or DayZ_Factions)

    Oh, so I have to disgard this "faction [0:hates everyone except survivors, 1:hates everyone]]"
  15. CaptainMack

    Simple AI Tutorial (no rMod or DayZ_Factions)

    Hey! Got the whole thing working in one go. However, if faction is set to 0 they still kill survivors? :S
  16. CaptainMack

    DayZ Chenarus Auto Refuel! All stations!

    Tried compiling the script seven posted, put the exec vm in init, the other in scripts.txt, made the scripts folder with the two scripts. But still nothing when I've compiled the server and run it.
  17. CaptainMack

    Bugs with dayz 1.7.6.1 or just me?

    I'm having bugs with teleport, people not being able to connect (something went wrong) and can't pick anything up. I can't see whats wrong, because mostly it runs fine with 30-40 people on.
  18. CaptainMack

    Possibilities or bugs

    Is it possible for a hacker to change weather/break everyones leg? Or does my server somehow screw the database? Trying to find hackers is impossible...
  19. CaptainMack

    How to discover cheaters in Reality?

    Thanks! I will look into TSW Admin Tool :-) And try to set it up
  20. CaptainMack

    How to discover cheaters in Reality?

    I just had a hacker on my semi-popular server, he just killed everybody and destroyed all vehicles and stuff. How can I find out who it was? And how can I prevent it?
Back
Top