Jump to content

MoosePP

Member
  • Posts

    20
  • Joined

  • Last visited

Posts posted by MoosePP

  1. If you followed the install step 7.

    Open actions\Actions_Menu.sqf and replace "111111111" near the top of the file with your player UID.

     

    if(isNil "AdminList") then {

    /*

        If you use Nox's Epoch Admin Tools disregard AdminList/ModList code.

        If you do not use that admin tool then replace 111111111 with

        your UID if you want to use.

    */

        AdminList = [

        "111111111",

        "999999999",

        "999999999"

        ];

        ModList = [

        "999999999",

        "999999999"

        ];

    };

    if((getPlayerUID player) in AdminList ||(getPlayerUID player) in ModList) then {

     

    SO try This in your menu.sqf:

     

     

    _pathtoscripts = "custom\admin_crates\";

    _EXECscript1 = 'player execVM "'+_pathtoscripts+'%1"';

     

     if(isNil "AdminList") then {

    /*

        If you use Nox's Epoch Admin Tools disregard AdminList/ModList code.

        If you do not use that admin tool then replace 111111111 with

        your UID if you want to use.

    */

        AdminList = [

        "111111111",

        "999999999",

        "999999999"

        ];

        ModList = [

        "999999999",

        "999999999"

        ];

    };

    if((getPlayerUID player) in AdminList ||(getPlayerUID player) in ModList) then {

     

    ActionMenu =

    [

    ["",true],

    ["Cinder Donation Crate", [], "", -5, [["expression", format[_EXECscript1,"cinder.sqf"]]], "1", "1"],

    ["Wood Donation Crate", [], "", -5, [["expression", format[_EXECscript1,"wood.sqf"]]], "1", "1"],

    ["AK Crate", [], "", -5, [["expression", format[_EXECscript1,"ak.sqf"]]], "1", "1"],

    ["", [], "", -5, [["expression", ""]], "1", "0"],

    ["Exit", [20], -5, [["expression", ""]], "1", "1"]

    ];

    showCommandingMenu "#USER:ActionMenu";

    Yeah, I know about that. The thing is, then, the option shows for everyone. I want to be able to tie the activate to a PlayerUID. So only admins see the scroll option.

  2. ***ALL CREDITS FOR BASE SCRIPT GO TO***

    NoxSicarius

     

    Okay, so, I modified Nox's Action Menu to be for just admin boxes and the scroll option to be "Admin Boxes."

     

    activate.sqf:

    private["_veh", "_idx"];
    Sleep 15; 
    _idx = -1;
     
    while {alive player} do {
    if(_idx == -1) then {
    _idx = (vehicle player) addaction [("<t color=""#FF0000"">" + ("Admin Boxes") + "</t>"),"custom\admin_crates\menu.sqf","",6,false,true,"",""];
    _veh = vehicle player;
    };
    if (_veh != vehicle player) then
    {
    _veh removeAction _idx;
    _idx = -1;      
    };
    Sleep 2;
    };
    
     
    menu.sqf:
    _pathtoscripts = "custom\admin_crates\";
    _EXECscript1 = 'player execVM "'+_pathtoscripts+'%1"';
     
    ActionMenu =
    [
    ["",true],
    ["Cinder Donation Crate", [], "", -5, [["expression", format[_EXECscript1,"cinder.sqf"]]], "1", "1"],
    ["Wood Donation Crate", [], "", -5, [["expression", format[_EXECscript1,"wood.sqf"]]], "1", "1"],
    ["AK Crate", [], "", -5, [["expression", format[_EXECscript1,"ak.sqf"]]], "1", "1"],
    ["", [], "", -5, [["expression", ""]], "1", "0"],
    ["Exit", [20], -5, [["expression", ""]], "1", "1"]
    ];
    showCommandingMenu "#USER:ActionMenu";
    
    
     
    What I need, is to be able to tie activate.sqf to a list of PlayerUID's (the admins).
     
    I tried to put a PlayerUID check line at the top of the activate.sqf and it didn't work. It was one from out loadout script with our player id's:
    if ((getPlayerUID player) in ["76561198042454417","76561198018610724","76561198036952663"]) then {
    
     
    Any help would be appreciated.
    -Moose, Spencer
  3. your defines.hpp is seemingly correct

     

    so if e_rscbutton is showing as undefined, i would look at description.ext

    and make sure you've got all #include lines present

     

    i'm using an older version of ess.

    but i don't think it's changed too much (my classes show as RscListBoxe, RscButtone etc... so similar but different)

     

    S0NcEcy.png

    screenshot of my description.ext for example...

    What text editor and syntax are you using?

    UltraEdit? If so, what syntax?

  4. That propably happens because of a skinchange. See 

    Oh no it is because of a skin change. I know that much. But, I'm hoping if this magical script exists it would save your exact character when you used it. I think the skin error is just something in on mission side that just doesn't check if you've been saved to the database or not.

  5. Okay I've been looking through all the inits and configs and I can't seem to find how do adjust how much AI spawn, AI armed vehicles, or helicopter reinforcements.

     

    I wan't to half some of the AI at the missions and I wan't to disable the roaming armed vehicles and helicopter reinforcements at certain missions.

  6. Okay, so basically sometimes people in our server will lose the contents of their backpack on re-log or get set back ~30 minutes. It's not very common but it does happen.

     

    I was playing in another server and I saw a option in the Command Menu called Save Player. I'm assuming this would save your characters gear and position for sure before you logged out. This would be a really cool addition but I have no idea where to find it. I've been searching for 30 mins now and I can't seem to find anything on this subject.

     

    Thanks for the help in advance.

    -Moose, Spencer

  7. I just installed the A Plot for Life v2.35 & Snap Build Pro v1.4.1 combo on my server making sure to fix all the file directory errors and stuff and now I can't get in. It's, according to the RPT, a error in the server functions or server monitor. I compared the areas the RPT was saying to the working server monitor and functions on the public server and they're the same but the local server is just not working. I'm working on a stock overpoch local server, which is were the error is occurring.

     

    arma2oaserver.RPT - Only has this last server instance, but the previous ones were the same.

    http://pastebin.com/UWGp1L80

     

    server_functions.sqf

    http://pastebin.com/BVubfNre

     

    server_monitor.sqf

     
    Thanks for the help in advance. This is a great community,
    -Spencer, Moose
  8. I think I fucked up the server somehow... I haven't even touched it since we talked last but ever since I put that little bit infront of that box line I'm not able to join. Ill edit this with my .RPT here soon once I try some stuff..

     

    EDIT: I probably just figured it out... well see

     

    EDIT: Yeah, it was a compile line I forgot to remove. Im going to now be testing that line where you said it should be

     

    EDIT: OMFG THANK YOU, it works now! Thank you once again. I would have probably kept trying but you made it a lot easier and less frustrating.

  9. 13.12.2014 20:04:17: Moose (XXXXXX.1.5:2316) - - #2 "USVehicleBox" 3:57 [6329,7786,306]
    

    If you look closer in the file you will see that it has in fact been logged several times. ^

    My bad, the  !="USVehicleBox" needs to be added to the line with 5 "box" in it, like so:  

    5 "box" !="USVehicleBox" !="DebugBoxPlayer_DZ" !"MedBox" !="AmmoBoxSmall_556" !="AmmoBoxSmall_762" !="ItemMatchbox" !="ItemToolbox" !="CardBoardBox" !="FoodBox1" !="FoodBox2" !="FoodBox3" !="LockboxStorageLocked" 

    Restriction #'s are always two numbers behind the actual line number in the filter .txt file, so restricion #2 will be on line 4, restriction #3 will be on line 5. etc. Check this for more info: http://opendayz.net/threads/a-guide-to-battleye-filters.21066/

    Make the change, reload scripts or restart your server and you should be fine :).

     

    The game wont load in when I put it like that.

     

    I get that error were the loading screen is stuck and you can hear your ingame movements.

     

    I've reloaded my game and server about 3 times now and its still doing it.

     

    As soon as I took that out I loaded in fine.

  10. Post the log... :rolleyes: (from createvehicle.log)

     

    EDIT: just re-checked your post. you have to move this: 

     !="USVehicleBox"
    

    to the line with 1 "" !"WeaponHolder" , like so:

    1 "" !"WeaponHolder" !"box" !="USVehicleBox"

    You had added the exception to a different filter :)

    It still kicks me... Here is the createvehicle.log

     

    EDIT: Looking at the log I'm thinking that I fucked something up with my server...because its not logging the millions of times I've gone in trying and got kicked. It only has one of them in there...

     

    12.12.2014 21:04:05: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    12.12.2014 21:04:05: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    12.12.2014 21:04:11: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:8 [6200,7683,299]
    12.12.2014 21:04:12: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:10 [6149,7668,300]
    12.12.2014 21:04:12: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:12 [6240,7636,297]
    12.12.2014 21:04:12: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:14 [6216,7733,301]
    12.12.2014 21:04:12: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:19 [6270,7715,300]
    12.12.2014 21:04:12: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:25 [6234,7798,301]
    12.12.2014 21:04:12: Moose (192.168.1.5:2304) - - #1 "z_worker3" 3:29 [6259,7801,303]
    12.12.2014 21:04:12: Moose (192.168.1.5:2304) - - #1 "z_worker2" 3:31 [6278,7785,303]
    12.12.2014 21:04:12: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:35 [6296,7704,300]
    12.12.2014 21:04:13: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:37 [6270,7687,300]
    12.12.2014 21:04:13: Moose (192.168.1.5:2304) - - #1 "z_worker3" 3:45 [6346,7689,301]
    12.12.2014 21:04:13: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:47 [6374,7688,300]
    12.12.2014 21:04:37: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:50 [6296,7584,295]
    12.12.2014 21:05:01: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:52 [6205,7597,297]
    12.12.2014 21:05:02: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:54 [6322,7521,288]
    12.12.2014 21:05:07: Moose (192.168.1.5:2304) - - #1 "z_villager3" 3:56 [6123,7718,300]
    12.12.2014 21:05:07: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:58 [6082,7679,300]
    12.12.2014 21:05:07: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:60 [6125,7657,300]
    12.12.2014 21:07:13: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:72 [6119,7764,301]
    12.12.2014 21:07:13: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:74 [6167,7710,301]
    12.12.2014 21:07:13: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:76 [6229,7756,301]
    12.12.2014 21:07:14: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:78 [6242,7725,301]
    12.12.2014 21:07:14: Moose (192.168.1.5:2304) - - #1 "z_worker2" 3:80 [6267,7743,301]
    12.12.2014 21:07:14: Moose (192.168.1.5:2304) - - #1 "z_policeman" 3:82 [6294,7880,311]
    12.12.2014 21:07:14: Moose (192.168.1.5:2304) - - #1 "z_doctor" 3:84 [6290,7846,305]
    12.12.2014 21:07:27: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:86 [6176,7653,298]
    12.12.2014 21:07:27: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:88 [6184,7638,298]
    12.12.2014 21:09:11: Moose (192.168.1.5:2304) - - #1 "WildBoar" 3:93 [6122,8132,352]
    12.12.2014 21:09:37: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:97 [6109,7736,300]
    12.12.2014 21:09:37: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:99 [6117,7814,303]
    12.12.2014 21:09:37: Moose (192.168.1.5:2304) - - #1 "z_teacher" 3:101 [6138,7794,301]
    12.12.2014 21:09:37: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:103 [6146,7759,300]
    12.12.2014 21:09:37: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:105 [6176,7691,300]
    12.12.2014 21:10:58: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:108 [6146,7666,300]
    12.12.2014 21:14:11: Moose (192.168.1.5:2304) - - #1 "Rabbit" 3:112 [7064,7883,302]
    12.12.2014 21:14:14: Moose (192.168.1.5:2304) - - #1 "z_villager3" 3:114 [6212,7669,298]
    12.12.2014 21:14:14: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:116 [6244,7714,301]
    12.12.2014 21:14:14: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:118 [6240,7700,300]
    12.12.2014 21:14:14: Moose (192.168.1.5:2304) - - #1 "z_villager3" 3:120 [6243,7746,301]
    12.12.2014 21:14:14: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:122 [6269,7766,301]
    12.12.2014 21:14:14: Moose (192.168.1.5:2304) - - #1 "z_worker3" 3:124 [6255,7765,301]
    12.12.2014 23:40:05: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    12.12.2014 23:40:05: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    12.12.2014 23:40:21: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:8 [6181,7693,300]
    12.12.2014 23:40:22: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:10 [6215,7642,297]
    12.12.2014 23:40:22: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:13 [6293,7712,300]
    12.12.2014 23:40:22: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:23 [6294,7751,301]
    12.12.2014 23:40:22: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:25 [6229,7784,300]
    12.12.2014 23:40:22: Moose (192.168.1.5:2316) - - #1 "z_worker2" 3:33 [6313,7692,300]
    12.12.2014 23:40:22: Moose (192.168.1.5:2316) - - #1 "z_worker2" 3:35 [6344,7720,300]
    12.12.2014 23:40:22: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:37 [6359,7716,300]
    12.12.2014 23:41:11: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:40 [6250,7621,297]
    12.12.2014 23:42:49: Moose (192.168.1.5:2316) - - #1 "Old_bike_TK_CIV_EP1" 3:43 [6331,7785,306]
    12.12.2014 23:44:09: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:45 [6223,7603,298]
    12.12.2014 23:44:09: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:47 [6224,7671,299]
    12.12.2014 23:44:09: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:49 [6232,7759,301]
    12.12.2014 23:44:09: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:51 [6281,7666,300]
    12.12.2014 23:44:09: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:53 [6351,7726,301]
    12.12.2014 23:44:09: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:55 [6349,7667,301]
    12.12.2014 23:44:19: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:57 [6102,7809,301]
    12.12.2014 23:44:19: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:59 [6088,7737,300]
    12.12.2014 23:44:19: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:61 [6139,7653,299]
    12.12.2014 23:44:19: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:63 [6176,7680,300]
    12.12.2014 23:45:14: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:66 [6224,7606,298]
    12.12.2014 23:45:21: Moose (192.168.1.5:2316) - - #1 "Sheep" 3:68 [-114,1738,48]
    12.12.2014 23:45:23: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:74 [583,1838,5]
    12.12.2014 23:45:23: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:76 [630,1828,6]
    12.12.2014 23:45:40: Moose (192.168.1.5:2316) - - #1 "z_soldier" 3:133 [4590,2490,8]
    12.12.2014 23:45:40: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:135 [4607,2490,8]
    12.12.2014 23:45:40: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:137 [4616,2514,8]
    12.12.2014 23:45:40: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:139 [4692,2476,8]
    12.12.2014 23:45:40: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:141 [4643,2497,9]
    12.12.2014 23:45:40: Moose (192.168.1.5:2316) - - #1 "z_soldier_pilot" 3:143 [4667,2569,8]
    12.12.2014 23:45:41: Moose (192.168.1.5:2316) - - #1 "z_policeman" 3:148 [4754,2579,8]
    12.12.2014 23:45:41: Moose (192.168.1.5:2316) - - #1 "z_policeman" 3:150 [4804,2603,8]
    12.12.2014 23:45:41: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:152 [4852,2415,8]
    12.12.2014 23:45:41: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:154 [4857,2366,9]
    12.12.2014 23:45:41: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:156 [4966,2419,17]
    12.12.2014 23:45:41: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:158 [4948,2390,8]
    12.12.2014 23:46:22: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:167 [13370,4996,5]
    12.12.2014 23:46:22: Moose (192.168.1.5:2316) - - #1 "z_policeman" 3:178 [13406,5014,6]
    12.12.2014 23:46:22: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:180 [13351,5024,10]
    12.12.2014 23:46:22: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:182 [13422,4958,6]
    12.12.2014 23:46:54: Moose (192.168.1.5:2316) - - #1 "z_doctor" 3:188 [9919,6042,285]
    12.12.2014 23:46:54: Moose (192.168.1.5:2316) - - #1 "z_doctor" 3:190 [9934,6039,285]
    12.12.2014 23:46:55: Moose (192.168.1.5:2316) - - #1 "z_doctor" 3:194 [9975,6023,285]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:197 [6228,7745,300]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:199 [6149,7751,301]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_suit2" 3:201 [6256,7707,301]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:203 [6231,7765,301]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:205 [6254,7739,301]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:207 [6267,7692,301]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:209 [6302,7664,301]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:211 [6331,7730,300]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:213 [6361,7721,301]
    12.12.2014 23:47:08: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:215 [6359,7715,300]
    12.12.2014 23:47:19: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:223 [9470,11516,235]
    12.12.2014 23:47:20: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:238 [9481,11555,236]
    12.12.2014 23:47:20: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:240 [9475,11515,235]
    12.12.2014 23:49:21: Moose (192.168.1.5:2316) - - #1 "z_suit1" 3:292 [4529,10793,339]
    12.12.2014 23:49:21: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:294 [4534,10781,339]
    12.12.2014 23:49:22: Moose (192.168.1.5:2316) - - #1 "z_policeman" 3:296 [4557,10674,339]
    12.12.2014 23:49:28: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:298 [6068,7780,300]
    12.12.2014 23:49:28: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:300 [6064,7820,301]
    12.12.2014 23:49:28: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:302 [6127,7740,300]
    12.12.2014 23:49:28: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:304 [6112,7758,300]
    12.12.2014 23:49:29: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:306 [6155,7695,301]
    12.12.2014 23:49:29: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:308 [6180,7628,297]
    12.12.2014 23:49:29: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:310 [6223,7683,299]
    12.12.2014 23:49:29: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:312 [6223,7675,299]
    12.12.2014 23:49:29: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:314 [6185,7632,297]
    12.12.2014 23:49:29: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:316 [6196,7617,298]
    12.12.2014 23:49:29: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:318 [6229,7646,297]
    12.12.2014 23:49:29: Moose (192.168.1.5:2316) - - #1 "z_suit2" 3:320 [6308,7630,299]
    13.12.2014 15:56:58: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 15:56:58: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 15:57:15: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:8 [6073,7738,301]
    13.12.2014 15:57:15: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:10 [6079,7793,300]
    13.12.2014 15:57:15: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:12 [6144,7809,302]
    13.12.2014 15:57:15: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:14 [6080,7849,305]
    13.12.2014 15:57:16: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:16 [6151,7746,301]
    13.12.2014 15:57:16: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:18 [6204,7652,298]
    13.12.2014 15:57:16: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:20 [6188,7659,298]
    13.12.2014 15:57:16: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:22 [6199,7691,299]
    13.12.2014 15:57:17: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:28 [6244,7689,301]
    13.12.2014 15:57:17: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:30 [6183,7717,301]
    13.12.2014 15:57:18: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:35 [6275,7780,302]
    13.12.2014 15:57:18: Moose (192.168.1.5:2316) - - #1 "z_suit1" 3:38 [6263,7596,296]
    13.12.2014 15:57:18: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:43 [6283,7717,301]
    13.12.2014 15:57:18: Moose (192.168.1.5:2316) - - #1 "z_soldier_heavy" 3:49 [6284,7843,304]
    13.12.2014 15:57:19: Moose (192.168.1.5:2316) - - #1 "z_worker2" 3:51 [6363,7655,300]
    13.12.2014 15:57:19: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:53 [6346,7694,301]
    13.12.2014 15:58:17: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:60 [6239,7588,296]
    13.12.2014 15:58:17: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:62 [6326,7563,290]
    13.12.2014 16:00:37: Moose (192.168.1.5:2316) - - #2 "USVehicleBox" 3:64 [6334,7776,306]
    13.12.2014 16:02:14: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 4:4 [-7244,19534,365]
    13.12.2014 16:02:14: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 4:6 [0,0,0]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 4:8 [6190,7677,299]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_villager1" 4:10 [6185,7695,300]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_villager3" 4:12 [6210,7652,298]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_teacher" 4:14 [6197,7628,297]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_villager2" 4:16 [6274,7724,301]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_worker3" 4:18 [6305,7687,300]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_doctor" 4:20 [6300,7844,305]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_doctor" 4:22 [6331,7877,312]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_worker1" 4:24 [6347,7663,300]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_worker1" 4:26 [6355,7677,301]
    13.12.2014 16:02:25: Moose (192.168.1.5:2316) - - #1 "z_worker2" 4:28 [6348,7687,312]
    13.12.2014 16:03:48: Moose (192.168.1.5:2316) - - #2 "USVehicleBox" 4:31 [6335,7774,306]
    13.12.2014 16:12:31: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 16:12:31: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 16:12:31: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:8 [6186,7673,299]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:10 [6157,7743,301]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:12 [6237,7649,297]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:14 [6217,7629,298]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:16 [6171,7734,301]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:21 [6256,7635,297]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:23 [6269,7739,301]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:25 [6262,7676,300]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:38 [6318,7698,300]
    13.12.2014 16:12:32: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:40 [6292,7696,300]
    13.12.2014 16:12:33: Moose (192.168.1.5:2316) - - #1 "z_doctor" 3:47 [6288,7838,304]
    13.12.2014 16:13:45: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:54 [6092,7749,300]
    13.12.2014 16:13:46: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:56 [6116,7770,301]
    13.12.2014 16:13:46: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:58 [6134,7693,301]
    13.12.2014 16:13:46: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:60 [6154,7768,300]
    13.12.2014 16:28:09: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 16:28:09: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 16:28:10: Moose (192.168.1.5:2304) - - #1 "z_teacher" 3:8 [6090,7802,301]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:10 [6108,7818,303]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_teacher" 3:12 [6132,7672,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_villager3" 3:14 [6102,7737,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_worker2" 3:16 [6137,7656,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_villager3" 3:18 [6122,7723,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:20 [6130,7766,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:22 [6200,7696,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:24 [6154,7716,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:29 [6245,7698,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:35 [6251,7791,301]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:42 [6313,7687,300]
    13.12.2014 16:28:11: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:44 [6276,7696,300]
    13.12.2014 16:28:38: Moose (192.168.1.5:2304) - - #1 "z_worker3" 3:51 [6250,7602,297]
    13.12.2014 16:29:15: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:56 [6215,7652,298]
    13.12.2014 16:38:57: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 16:38:57: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 16:39:19: Moose (192.168.1.5:2304) - - #1 "z_worker3" 3:8 [6186,7716,301]
    13.12.2014 16:39:20: Moose (192.168.1.5:2304) - - #1 "z_villager3" 3:10 [6162,7711,301]
    13.12.2014 16:39:20: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:12 [6173,7760,301]
    13.12.2014 16:39:20: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:14 [6191,7666,299]
    13.12.2014 16:39:20: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:16 [6210,7612,297]
    13.12.2014 16:39:20: Moose (192.168.1.5:2304) - - #1 "z_teacher" 3:18 [6216,7596,297]
    13.12.2014 16:39:20: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:23 [6191,7761,301]
    13.12.2014 16:39:21: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:25 [6231,7700,300]
    13.12.2014 16:39:21: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:32 [6236,7730,301]
    13.12.2014 16:39:21: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:34 [6250,7792,301]
    13.12.2014 16:39:21: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:37 [6275,7743,301]
    13.12.2014 16:39:21: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:41 [6256,7664,299]
    13.12.2014 16:39:21: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:43 [6282,7726,301]
    13.12.2014 16:39:21: Moose (192.168.1.5:2304) - - #1 "z_doctor" 3:48 [6344,7852,306]
    13.12.2014 16:39:21: Moose (192.168.1.5:2304) - - #1 "z_doctor" 3:50 [6298,7822,304]
    13.12.2014 16:39:22: Moose (192.168.1.5:2304) - - #1 "z_worker1" 3:54 [6351,7668,301]
    13.12.2014 16:39:33: Moose (192.168.1.5:2304) - - #2 "USVehicleBox" 3:59 [6335,7785,306]
    13.12.2014 16:42:54: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 16:42:54: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 16:42:55: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:8 [6165,7668,300]
    13.12.2014 16:42:56: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:10 [6224,7616,297]
    13.12.2014 16:42:56: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:20 [6293,7751,301]
    13.12.2014 16:42:56: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:22 [6228,7777,301]
    13.12.2014 16:42:56: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:24 [6310,7595,295]
    13.12.2014 16:42:56: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:28 [6265,7713,300]
    13.12.2014 16:42:56: Moose (192.168.1.5:2316) - - #1 "DZ_British_ACU" 3:32 [6306,7844,304]
    13.12.2014 16:42:56: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:36 [6335,7714,300]
    13.12.2014 16:42:56: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:38 [6350,7684,301]
    13.12.2014 16:43:02: Moose (192.168.1.5:2316) - - #2 "USVehicleBox" 3:41 [6335,7788,306]
    13.12.2014 16:46:24: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 16:46:24: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 16:46:24: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:8 [6152,7699,301]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:10 [6163,7771,300]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:12 [6204,7726,301]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:14 [6186,7713,301]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:16 [6237,7626,297]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:18 [6205,7648,298]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:24 [6223,7703,300]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:26 [6214,7730,301]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:28 [6222,7719,301]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:39 [6308,7775,304]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:41 [6243,7745,301]
    13.12.2014 16:46:25: Moose (192.168.1.5:2316) - - #1 "z_worker2" 3:46 [6326,7704,301]
    13.12.2014 16:46:26: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:49 [6306,7736,301]
    13.12.2014 16:49:05: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 16:49:05: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 16:49:06: Moose (192.168.1.5:2316) - - #1 "z_worker2" 3:8 [6148,7670,300]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:10 [6157,7723,300]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:12 [6154,7783,300]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:14 [6220,7671,298]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:16 [6193,7681,299]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:18 [6211,7738,300]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:20 [6206,7603,297]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "DZ_ALICE_Pack_EP1" 3:22 [6225,7724,301]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:26 [6236,7593,297]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:28 [6223,7615,297]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:30 [6285,7697,300]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:37 [6215,7767,300]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:41 [6297,7767,302]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:44 [6255,7786,301]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:49 [6302,7739,301]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_doctor" 3:52 [6324,7878,312]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_doctor" 3:54 [6320,7830,304]
    13.12.2014 16:49:07: Moose (192.168.1.5:2316) - - #1 "z_worker2" 3:58 [6358,7703,301]
    13.12.2014 16:52:09: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 4:4 [-7244,19534,365]
    13.12.2014 16:52:09: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 4:6 [0,0,0]
    13.12.2014 16:52:39: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 4:8 [6199,7671,299]
    13.12.2014 16:52:53: Moose (192.168.1.5:2316) - - #2 "USVehicleBox" 4:10 [6327,7783,306]
    13.12.2014 16:57:16: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 16:57:16: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 16:57:27: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:8 [6156,7715,300]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:10 [6223,7679,299]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:12 [6157,7717,300]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_worker2" 3:14 [6259,7589,296]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:20 [6227,7727,301]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:22 [6218,7698,300]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:24 [6252,7699,301]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:33 [6286,7768,302]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_policeman" 3:42 [6276,7816,304]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_doctor" 3:44 [6336,7820,304]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:47 [6304,7704,300]
    13.12.2014 16:57:28: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:49 [6358,7698,301]
    13.12.2014 16:57:33: Moose (192.168.1.5:2316) - - #2 "USVehicleBox" 3:53 [6335,7791,306]
    13.12.2014 17:31:28: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 17:31:28: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 17:31:30: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:8 [6161,7680,300]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:10 [6147,7706,300]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:12 [6184,7756,301]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_teacher" 3:14 [6182,7646,298]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:16 [6192,7612,298]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_villager3" 3:18 [6263,7604,297]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:22 [6236,7746,300]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_suit1" 3:24 [6290,7706,300]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_villager2" 3:42 [6310,7742,301]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "DZ_British_ACU" 3:44 [6304,7841,304]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_worker3" 3:47 [6368,7696,300]
    13.12.2014 17:31:31: Moose (192.168.1.5:2304) - - #1 "z_worker2" 3:49 [6360,7720,301]
    13.12.2014 17:31:47: Moose (192.168.1.5:2304) - - #1 "z_worker3" 3:53 [6233,7594,297]
    13.12.2014 17:32:13: Moose (192.168.1.5:2304) - - #2 "USVehicleBox" 3:55 [6332,7785,306]
    13.12.2014 17:46:09: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 4:4 [-7244,19534,365]
    13.12.2014 17:46:09: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 4:6 [0,0,0]
    13.12.2014 17:46:10: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 4:8 [6120,7727,300]
    13.12.2014 17:46:10: Moose (192.168.1.5:2304) - - #1 "z_worker3" 4:10 [6155,7698,301]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_worker2" 4:12 [6173,7704,300]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_villager1" 4:14 [6141,7738,300]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_villager2" 4:16 [6225,7610,298]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_teacher" 4:18 [6250,7634,297]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_villager1" 4:23 [6236,7727,301]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_villager3" 4:25 [6259,7697,301]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_villager3" 4:27 [6257,7699,301]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_villager2" 4:33 [6259,7750,301]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_worker2" 4:37 [6330,7672,301]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_soldier" 4:41 [6299,7872,308]
    13.12.2014 17:46:11: Moose (192.168.1.5:2304) - - #1 "z_doctor" 4:43 [6326,7865,308]
    13.12.2014 19:00:05: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 5:4 [-7244,19534,365]
    13.12.2014 19:00:05: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 5:6 [0,0,0]
    13.12.2014 19:00:06: Moose (192.168.1.5:2304) - - #1 "z_villager3" 5:8 [6157,7701,301]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_hunter" 5:10 [6191,7716,301]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_villager3" 5:12 [6151,7763,300]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_villager1" 5:16 [6223,7747,300]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_villager2" 5:18 [6225,7731,301]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_villager1" 5:20 [6245,7597,297]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 5:22 [6253,7720,301]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_villager3" 5:24 [6231,7733,300]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_villager2" 5:30 [6268,7794,303]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_worker3" 5:35 [6305,7667,301]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_villager2" 5:38 [6271,7746,301]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_soldier_heavy" 5:44 [6323,7873,310]
    13.12.2014 19:00:07: Moose (192.168.1.5:2304) - - #1 "z_worker3" 5:48 [6355,7683,301]
    13.12.2014 19:00:08: Moose (192.168.1.5:2304) - - #1 "z_worker3" 5:50 [6372,7681,300]
    13.12.2014 19:00:25: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 5:56 [-7245,19535,366]
    13.12.2014 19:00:25: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 5:58 [0,0,0]
    13.12.2014 19:03:10: Moose (192.168.1.5:2304) - - #1 "z_villager3" 5:62 [6193,7718,301]
    13.12.2014 19:03:10: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 5:64 [6138,7708,300]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "z_villager3" 5:66 [6149,7662,299]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "z_villager1" 5:68 [6194,7623,297]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "z_villager1" 5:70 [6234,7750,301]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 5:72 [6245,7576,296]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "z_villager1" 5:74 [6239,7709,301]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "z_villager2" 5:76 [6264,7744,301]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "z_suit1" 5:78 [6267,7648,299]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "z_worker2" 5:80 [6291,7731,301]
    13.12.2014 19:03:11: Moose (192.168.1.5:2304) - - #1 "z_villager2" 5:82 [6281,7679,301]
    13.12.2014 19:03:12: Moose (192.168.1.5:2304) - - #1 "z_doctor" 5:84 [6303,7818,304]
    13.12.2014 19:03:12: Moose (192.168.1.5:2304) - - #1 "z_doctor" 5:86 [6294,7853,305]
    13.12.2014 19:03:12: Moose (192.168.1.5:2304) - - #1 "z_worker3" 5:88 [6346,7663,301]
    13.12.2014 19:03:12: Moose (192.168.1.5:2304) - - #1 "z_worker2" 5:90 [6351,7678,301]
    13.12.2014 19:03:12: Moose (192.168.1.5:2304) - - #1 "z_soldier_heavy" 5:92 [6353,7816,304]
    13.12.2014 19:05:27: Moose (192.168.1.5:2304) - - #1 "DZ_Pastor" 5:94 [7079,8062,312]
    13.12.2014 19:07:01: Moose (192.168.1.5:2304) - - #2 "USVehicleBox" 5:96 [6332,7790,306]
    13.12.2014 19:09:21: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 6:4 [-7245,19534,365]
    13.12.2014 19:09:21: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 6:6 [0,0,0]
    13.12.2014 19:10:18: Moose (192.168.1.5:2304) - - #1 "Old_bike_TK_CIV_EP1" 6:8 [6337,7783,306]
    13.12.2014 19:11:50: Moose (192.168.1.5:2304) - - #1 "z_villager2" 6:9 [5967,7871,302]
    13.12.2014 19:11:51: Moose (192.168.1.5:2304) - - #1 "z_villager1" 6:11 [5956,7863,302]
    13.12.2014 19:11:51: Moose (192.168.1.5:2304) - - #1 "z_villager1" 6:13 [5955,7932,305]
    13.12.2014 19:11:51: Moose (192.168.1.5:2304) - - #1 "z_villager1" 6:15 [6011,7899,305]
    13.12.2014 19:11:51: Moose (192.168.1.5:2304) - - #1 "z_hunter" 6:17 [6051,7806,300]
    13.12.2014 19:11:51: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 6:19 [6054,7990,320]
    13.12.2014 19:11:51: Moose (192.168.1.5:2304) - - #1 "z_hunter" 6:21 [6047,7882,307]
    13.12.2014 19:11:51: Moose (192.168.1.5:2304) - - #1 "z_villager2" 6:23 [6141,7831,305]
    13.12.2014 19:11:59: Moose (192.168.1.5:2304) - - #1 "z_villager2" 6:25 [5984,7661,310]
    13.12.2014 19:11:59: Moose (192.168.1.5:2304) - - #1 "z_teacher" 6:27 [5979,7831,301]
    13.12.2014 19:11:59: Moose (192.168.1.5:2304) - - #1 "z_suit1" 6:29 [6032,7832,300]
    13.12.2014 19:11:59: Moose (192.168.1.5:2304) - - #1 "z_hunter" 6:31 [6062,7691,300]
    13.12.2014 19:11:59: Moose (192.168.1.5:2304) - - #1 "z_teacher" 6:33 [6046,7748,300]
    13.12.2014 19:12:00: Moose (192.168.1.5:2304) - - #1 "z_hunter" 6:35 [6080,7695,300]
    13.12.2014 19:12:00: Moose (192.168.1.5:2304) - - #1 "z_villager3" 6:37 [6101,7672,301]
    13.12.2014 19:12:00: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 6:39 [6073,7738,301]
    13.12.2014 19:12:00: Moose (192.168.1.5:2304) - - #1 "z_hunter" 6:41 [6110,7762,300]
    13.12.2014 19:12:00: Moose (192.168.1.5:2304) - - #1 "z_villager3" 6:43 [6102,7718,301]
    13.12.2014 19:12:39: Moose (192.168.1.5:2304) - - #2 "USVehicleBox" 6:45 [6308,7829,306]
    13.12.2014 19:31:47: Moose (192.168.1.5:2304) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 19:31:47: Moose (192.168.1.5:2304) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 19:31:48: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:8 [6123,7767,300]
    13.12.2014 19:31:49: Moose (192.168.1.5:2304) - - #1 "z_teacher" 3:10 [6154,7698,301]
    13.12.2014 19:31:49: Moose (192.168.1.5:2304) - - #1 "z_villager1" 3:12 [6185,7714,301]
    13.12.2014 19:31:49: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:14 [6183,7698,300]
    13.12.2014 19:31:49: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:16 [6198,7719,301]
    13.12.2014 19:31:49: Moose (192.168.1.5:2304) - - #1 "z_teacher" 3:18 [6250,7708,301]
    13.12.2014 19:31:49: Moose (192.168.1.5:2304) - - #1 "zZombie_Base" 3:27 [6237,7745,300]
    13.12.2014 19:31:49: Moose (192.168.1.5:2304) - - #1 "z_worker3" 3:32 [6329,7688,301]
    13.12.2014 19:32:02: Moose (192.168.1.5:2304) - - #1 "z_teacher" 3:41 [6193,7667,299]
    13.12.2014 19:32:02: Moose (192.168.1.5:2304) - - #1 "z_villager3" 3:43 [6224,7673,299]
    13.12.2014 19:32:02: Moose (192.168.1.5:2304) - - #1 "z_hunter" 3:45 [6255,7627,297]
    13.12.2014 19:33:34: Moose (192.168.1.5:2304) - - #2 "USVehicleBox" 3:51 [6329,7784,306]
    13.12.2014 19:46:51: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7244,19534,365]
    13.12.2014 19:46:51: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 19:47:06: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:8 [6106,7730,300]
    13.12.2014 19:47:07: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:10 [6155,7691,300]
    13.12.2014 19:47:07: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:12 [6146,7782,300]
    13.12.2014 19:47:07: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:14 [6173,7768,300]
    13.12.2014 19:47:07: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:16 [6216,7758,300]
    13.12.2014 19:47:07: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:18 [6177,7758,301]
    13.12.2014 19:47:07: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:20 [6180,7737,300]
    13.12.2014 19:47:07: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:22 [6239,7579,296]
    13.12.2014 19:47:07: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:24 [6207,7654,298]
    13.12.2014 19:47:08: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:28 [6236,7741,300]
    13.12.2014 19:47:08: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:30 [6255,7697,301]
    13.12.2014 19:47:08: Moose (192.168.1.5:2316) - - #1 "z_villager1" 3:32 [6239,7718,301]
    13.12.2014 19:47:08: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:38 [6275,7791,303]
    13.12.2014 19:47:08: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:42 [6291,7675,301]
    13.12.2014 19:47:09: Moose (192.168.1.5:2316) - - #1 "z_villager2" 3:47 [6255,7718,301]
    13.12.2014 19:47:09: Moose (192.168.1.5:2316) - - #1 "z_doctor" 3:52 [6321,7811,304]
    13.12.2014 19:47:09: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:58 [6338,7695,301]
    13.12.2014 19:47:09: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:60 [6344,7708,301]
    13.12.2014 19:47:09: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:62 [6325,7661,301]
    13.12.2014 19:47:09: Moose (192.168.1.5:2316) - - #1 "z_worker1" 3:64 [6357,7700,312]
    13.12.2014 19:48:07: Moose (192.168.1.5:2316) - - #2 "USVehicleBox" 3:67 [6329,7786,306]
    13.12.2014 20:04:04: Moose (192.168.1.5:2316) - - #1 "Survivor2_DZ" 3:4 [-7245,19535,365]
    13.12.2014 20:04:04: Moose (192.168.1.5:2316) - - #1 "TK_ALICE_Pack_EP1" 3:6 [0,0,0]
    13.12.2014 20:04:12: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:8 [6160,7721,300]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:10 [6131,7748,300]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:12 [6192,7658,298]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "zZombie_Base" 3:14 [6215,7622,298]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_teacher" 3:19 [6262,7670,300]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:21 [6231,7728,301]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_suit2" 3:23 [6245,7684,301]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:28 [6219,7747,300]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_hunter" 3:31 [6273,7792,303]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:38 [6267,7696,301]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:40 [6260,7669,300]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_villager3" 3:43 [6284,7724,301]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:52 [6349,7675,301]
    13.12.2014 20:04:13: Moose (192.168.1.5:2316) - - #1 "z_worker3" 3:54 [6343,7682,301]
    13.12.2014 20:04:17: Moose (192.168.1.5:2316) - - #2 "USVehicleBox" 3:57 [6329,7786,306]

  11. Alright, as far as I am aware I have everything installed correctly. I'm doing this on a local Overpoch Server that is running the latest version of infiSTAR if that matters. The issue is, every time I try to spawn in one of my admin boxes from the menu I get kicked from the server by battleye.

     

    You were kicked off the game. (BattlEye: CreateVehicle Restriction #2)

     

    The thing is, I have my createvehicle.sqf properly setup as far as I'm aware.

     

    //new
    5 "SeaGull" !="USVehicleBox"
    1 "" !"WeaponHolder" !"box"
    5 "box" !="DebugBoxPlayer_DZ" !"MedBox" !="AmmoBoxSmall_556" !="AmmoBoxSmall_762" !="ItemMatchbox" !="ItemToolbox" !="CardBoardBox" !="FoodBox1" !="FoodBox2" !="FoodBox3" !="LockboxStorageLocked" !="LockboxStorage" !="WeaponHolder_ItemLockbox"
    5 "BasicWeapons"
    5 "SpecialWeapons"
    5 "FunctionsManager"
    5 "Logic"
    5 "sideLogic"
    5 "M_Vikhr_AT"
    5 "M_Hellfire_AT"
    5 "snowman"
    5 "FAL_pond_"

     
    This is how we have it setup on the ViLayer server and it's working...
     

    //new
    5 "SeaGull"
    1 "" !"WeaponHolder" !"box" !="USVehicleBox"
    5 "box" !="DebugBoxPlayer_DZ" !"MedBox" !="AmmoBoxSmall_556" !="AmmoBoxSmall_762" !="ItemMatchbox" !="ItemToolbox" !="CardBoardBox" !="FoodBox1" !="FoodBox2" !="FoodBox3" !="LockboxStorageLocked" !="LockboxStorage" !="WeaponHolder_ItemLockbox"
    5 "BasicWeapons"
    5 "SpecialWeapons"
    5 "FunctionsManager"
    5 "Logic"
    5 "sideLogic"
    5 "M_Vikhr_AT"
    5 "M_Hellfire_AT"
    5 "snowman"
    5 "FAL_pond_"
     

  12. I tried the other Helipad (HeliHEmpty) and it didn't work either. I noticed that its not displaying the right message at the bottom center of the screen. It's displaying a message like I bought something that belongs in my inventory. Like "Traded 1 Briefcase for 1 BTR40" then it will say "Need 1 More Briefcase."

    Alright I figured it out. For any future readers. I started off with cloning a baked beans and added vehicles. I had everything right but I forgot to change the end from trade_item to trade_any_vehicle. Everyone make sure you really check what you added in. I didn't, I assumed it was okay because I had the 2 after the vehicle name.

  13. think it's the helipad, as far as I remember there were 2 copies of civil helipad, only one worked tho. This means vehicle is spawned, but elsewhere, you can check that using This will let you teleport vehicle to you when you buy it, if it does, then you are using wrong helipad... think you can find proper one in either of mission.sqm or mission.sqf files

    I tried the other Helipad (HeliHEmpty) and it didn't work either. I noticed that its not displaying the right message at the bottom center of the screen. It's displaying a message like I bought something that belongs in my inventory. Like "Traded 1 Briefcase for 1 BTR40" then it will say "Need 1 More Briefcase."

  14. think it's the helipad, as far as I remember there were 2 copies of civil helipad, only one worked tho. This means vehicle is spawned, but elsewhere, you can check that using This will let you teleport vehicle to you when you buy it, if it does, then you are using wrong helipad... think you can find proper one in either of mission.sqm or mission.sqf files

    I tried the other helipad (HeliHEmpty) and it didn't work either. I noticed cause I have ESP from InfiSTAR, that the vehicles aren't spawning at all. Maybe I missed something about vehicle traders?

  15. think it's the helipad, as far as I remember there were 2 copies of civil helipad, only one worked tho. This means vehicle is spawned, but elsewhere, you can check that using This will let you teleport vehicle to you when you buy it, if it does, then you are using wrong helipad... think you can find proper one in either of mission.sqm or mission.sqf files

    Thanks I'll try to use a different one.

  16. Raymix or anyone I need help! The other coder added the whole overpoch trader except for the vehicles, so I created another trader inside it for vehicles. I have everything right, the version of the items is 2 (e.x. ["BAF_Jackal2_L2A1_D",2]), hes in server_traders.sqf and database entry, and also has a trader_tids entry. Everything is perfect in game, menu, position, I added a HeliHCivil about 5 meters infront of him. But everytime I trade with him it quickly says Traded 1 Briefcase for 1 BTR40, or anything else I buy, and then says Need 1 more Briefcase but doesnt spawn the vehicle... I don't know whats wrong. I know that the message I get is not correct so I'm thinking its something I missed about vehicle traders specifically.

     

    http://imgur.com/KcLUoCs

×
×
  • Create New...