Jump to content

carl101

Member
  • Posts

    779
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by carl101

  1. You cannot be global banned from scripts running on the server or through the mission file as they are not core arma files. The only way you could of been banned is if you were hacking or have some sort of malware on your pc that is interfering with the arma2 exe . The best thing todo is not email battleye but contact able on the bi forums http://forums.bistudio.com/member.php?17183-ableThis was the only way i got in contact with battleye. Good luck.

    Hi, I'm aware of what can and what can't ban you, I was just explaining what I was doing at the time, I'm 100% on the path of stolen keys as my daughters has been banned too which has been also used on my PC but only maybe 3 times tops.

    Just waiting for BE to get back to me

  2. I can honestly say i have not actually "played" epoch in, well getting on for 12months since running servers, i generally log into my server and find a quiet corner and just build until someone needs admin help ect ect.

     

    Anyways, i load the game up this morning to test this

     

    and i am hit with a global ban #c0258e, so im like okay, il quickly try my daughters game boom global ban #139c34.

     

    like ok, so i'm now waiting on a response from BE.

     

    in the mean time im going to run some scans on my pc!

     

    anyone else been having fun ?

  3. Hi guys, im trying to add a fireworks display script to my Infi**** that is suppose to shoot fireworks above the selected player. But i am getting this error.

    charge setPos position;
    uiSleep 1;
    deleteVehicle _charge;
    };
    
    >
    21:11:06   Error position: <;
    uiSleep 1;
    deleteVehicle _charge;
    };
    
    >
    21:11:06   Error Invalid number in expression
    21:11:06 File z\addons\dayz_server\init\AH.sqf, line 9467
    

    and this is the script

    CreateFireworks =
        {
         {
          if(name _x == _this select 0) then  
          {
           systemChat format["<Fireworks baby!> Spawning Fireworks on : %1",name _x];
           
           _fn_air_explosion = 
           {
            private ["_position", "_type", "_charge"];
            position = this select 0;
            type = this select 1;
            charge = type createVehicle _position;
            charge setPos position;
            uiSleep 1;
            deleteVehicle _charge;
           };
           
           _fn_firework = 
           {
            private ["_position", "_type", "_ball", "_smoke"];
            position = this select 0;
            type = this select 1;
            _ball = createVehicle ["Baseball", [0,0,0], [], 0, "CAN_COLLIDE"];
            _smoke = createVehicle ["SmokeShellRed", [0,0,0], [], 0, "CAN_COLLIDE"];
            _smoke attachTo [_ball, [0,0,0]];
            ball setPos position;
            uiSleep 4;
            _ball setVelocity [5 - (random 10),5 - (random 10),50];
            uiSleep 2;
            position = getPos ball;
            deleteVehicle _ball;
            deleteVehicle _smoke;
            [_position, type] spawn fn_air_explosion;
           };
           [getPos x, "HelicopterExploSmall"] call fn_firework;
          };
         }forEach playableUnits;
        };
    
    

    Any help is appreciated, thanks

  4. you couldnt see anything??

     

    Your missing a file

    ErrorMessage: Include file z\addons\dayz_server\compile\server_toggle_debug.hpp not found.

     

    and a shit tonne of this

    16:01:06   Error Undefined variable in expression: _j
    16:01:06 File z\addons\dayz_code\init\loot_init.sqf, line 29
    16:01:06 Error in expression < 0 to (_weight - 1) do
    {
    _weighted set [_j + _k, _l];
    };
    _j = _j + _weight;
    };
    d>
    16:01:06   Error position: <_j + _k, _l];
    };
    _j = _j + _weight;
    };
    d>
    16:01:06   Error Undefined variable in expression: _j
    16:01:06 File z\addons\dayz_code\init\loot_init.sqf, line 29
    16:01:06 Error in expression <
    {
    _weighted set [_j + _k, _l];
    };
    _j = _j + _weight;
    };
    dayz_CBLChances set [co>
    16:01:06   Error position: <_j + _weight;
    };
    dayz_CBLChances set [co>
    16:01:06   Error Undefined variable in expression: _j
    16:01:06 File z\addons\dayz_code\init\loot_init.sqf, line 31
    

    so include the file mentioned at the top server_toggle_debug.hpp

     

    and have you played with a file that alters loot or anything?

  5. im having just one problem at the moment with this and the only thing i didnt do was replace the DLL's as i already have some DLL's in from a previous version, have the DLL's changed? and i need to replace them or have i got problem related to something else?

     

    I put in the new mission and server pbo's and watching the rpt it comes up saying 0 database objects found

     

    19:02:13 "HIVE: Starting"
    19:02:13 "HIVE: trying to get objects"
    19:02:13 "HIVE: found 0 objects"
    19:02:13 "HIVE: Commence Object Streaming..."
    19:02:13 "HIVE: got 0 Epoch Objects and 0 Vehicles"

     

    place my original files back into the server and..

     

    13:28:36 "HIVE: Starting"
    13:28:36 "HIVE: trying to get objects"
    13:28:37 "HIVE: found 9336 objects"
    13:28:37 "HIVE: Commence Object Streaming..."

     

     

    any info appreciated.

  6. hi guys, ok weird one but i made a new mission and server pbo (all working as tested )

     

    put into my server and watching the rpt it comes up saying 0 database objects found

     

    19:02:13 "HIVE: Starting"
    19:02:13 "HIVE: trying to get objects"
    19:02:13 "HIVE: found 0 objects"
    19:02:13 "HIVE: Commence Object Streaming..."
    19:02:13 "HIVE: got 0 Epoch Objects and 0 Vehicles"

     

    place my original files back into the server and..

     

    13:28:36 "HIVE: Starting"
    13:28:36 "HIVE: trying to get objects"
    13:28:37 "HIVE: found 9336 objects"
    13:28:37 "HIVE: Commence Object Streaming..."

     

     

    so my question is, in the mission or server pbo, is there something that is affecting this?

  7. hi guys, anyone ever come across this error before?

    18:21:58 Error in expression < select 2]};
    
    _tv=abs(_xv)+abs(_yv)+abs(_zv);
    if (_tv>2) then {_dr=1/_tv} else {>
    18:21:58   Error position: <_zv);
    if (_tv>2) then {_dr=1/_tv} else {>
    18:21:58   Error Undefined variable in expression: _zv
    18:21:58 File ca\Data\ParticleEffects\SCRIPTS\destruction\AirDestructionStage2.sqf, line 59
    18:21:59 Error in expression <oke;
    deleteVehicle _fire;
    deleteVehicle _shards;
    deleteVehicle _dirt;
    
    _v setvel>
    18:21:59   Error position: <_shards;
    deleteVehicle _dirt;
    
    _v setvel>
    18:21:59   Error Undefined variable in expression: _shards
    18:21:59 File ca\Data\ParticleEffects\SCRIPTS\destruction\AirDestructionStage2.sqf, line 71
    18:22:00 "DELETE: 15c7a080# 306244: uh1y.p3d Deleted by ID: 2200"
    18:22:00 Error in expression <oke;
    deleteVehicle _fire;
    deleteVehicle _shards;
    deleteVehicle _dirt;
    
    _v setvel>
    18:22:00   Error position: <_shards;
    deleteVehicle _dirt;
    
    _v setvel>
    18:22:00   Error Undefined variable in expression: _shards
    18:22:00 File ca\Data\ParticleEffects\SCRIPTS\destruction\AirDestructionStage2.sqf, line 71
    18:22:02 "DELETE: 15f68100# 306175: cybp_camel.p3d Deleted by ID: 2130"
    18:22:05 "DELETE: 15d26080# 306223: ch_47f.p3d Deleted by ID: 2179"
    18:22:05 Error in expression < select 2]};
    
    _tv=abs(_xv)+abs(_yv)+abs(_zv);
    if (_tv>2) then {_dr=1/_tv} else {>
    18:22:05   Error position: <_zv);
    if (_tv>2) then {_dr=1/_tv} else {>
    18:22:05   Error Undefined variable in expression: _zv
    18:22:05 File ca\Data\ParticleEffects\SCRIPTS\destruction\AirDestructionStage2.sqf, line 59
    18:22:06 Error in expression < select 2]};
    
    _tv=abs(_xv)+abs(_yv)+abs(_zv);
    if (_tv>2) then {_dr=1/_tv} else {>
    18:22:06   Error position: <_zv);
    if (_tv>2) then {_dr=1/_tv} else {>
    18:22:06   Error Undefined variable in expression: _zv
    18:22:06 File ca\Data\ParticleEffects\SCRIPTS\destruction\AirDestructionStage2.sqf, line 59
    18:22:06 Error in expression < select 2]};
    
    _tv=abs(_xv)+abs(_yv)+abs(_zv);
    if (_tv>2) then {_dr=1/_tv} else {>
    18:22:06   Error position: <_zv);
    if (_tv>2) then {_dr=1/_tv} else {>
    18:22:06   Error Undefined variable in expression: _zv
    18:22:06 File ca\Data\ParticleEffects\SCRIPTS\destruction\AirDestructionStage2.sqf, line 59
    18:22:06 Error in expression <oke;
    deleteVehicle _fire;
    deleteVehicle _shards;
    deleteVehicle _dirt;
    
    _v setvel>
    18:22:06   Error position: <_shards;
    deleteVehicle _dirt;
    
    _v setvel>
    18:22:06   Error Undefined variable in expression: _shards
    18:22:06 File ca\Data\ParticleEffects\SCRIPTS\destruction\AirDestructionStage2.sqf, line 71
    

    Im making a new pack for my server, basically same as my current server pack just all with different file paths built on souls default mission and server pbo's.

    and run into this weird error.

     

    Iv only managed to find out one thing for it but wanted to see if anyone knew what could be causing it before i went with that fix in here

    https://dev.withsix.com/issues/74491

     

    Also in that thread it says to use this to call the new file

     

    waitUntil{not(isNil "BIS_Effects_Init")};
    sleep 5;
    BIS_Effects_AirDestructionStage2=compile preprocessFileLineNumbers "PATH_TO_YOUR_FILE";

     

    but would that go in the init or in the compiles?

     

    thanks

  8. Ok its just done the error, weird that it dont do it all the time.

    Altho its thrown abit more out this time too

    16:20:33 "infiSTAR.de fnc_AdminFirstReq: [-2,B 1-1-I:1 (A Bambi) REMOTE,53383040# 1022178: gnt_c185.p3d]"
    16:20:33 "infiSTAR.de fnc_AdminReqProceed: [-2,B 1-1-I:1 (A Bambi) REMOTE,53383040# 1022178: gnt_c185.p3d]"
    16:20:33 "DELETE: 76561198007421583 Deleted by UID: 997541864480161"
    16:20:33 "infiSTAR.de PVAH_WriteLog: B 1-1-I:1 (A Bambi) REMOTE   A Bambi (76561198007421583) deleted GNT_C185 @099064 - characterID any - objectID: 0 - objectUID: 997541864480161"
    16:20:34 Error in expression <eWest and !(locked _object)) then {
    if (_objectID == "0" && _uid == "0") then
    {
    >
    16:20:34   Error position: <_objectID == "0" && _uid == "0") then
    {
    >
    16:20:34   Error Undefined variable in expression: _objectid
    16:20:34 File z\addons\dayz_server\compile\server_updateObject.sqf, line 38
    16:20:34 "----------- _PREVIOUS =  -----------------"
    16:20:34 Error in expression <----- _PREVIOUS = %1 -----------------",_previous];
    if (str(_inventory) != _prev>
    16:20:34   Error position: <_previous];
    if (str(_inventory) != _prev>
    16:20:34   Error Undefined variable in expression: _previous
    16:20:34 File z\addons\dayz_server\compile\server_updateObject.sqf, line 110
    16:20:34 Error in expression <iable ["ObjectUID","0"];
    
    if ((typeName _objectID != "string") || (typeName _uid>
    16:20:34   Error position: <_objectID != "string") || (typeName _uid>
    16:20:34   Error Undefined variable in expression: _objectid
    16:20:34 File z\addons\dayz_server\compile\server_updateObject.sqf, line 30
    16:20:34 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    16:20:34 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    16:20:34 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    16:20:34 "----------- _PREVIOUS = [] -----------------"
    16:20:34 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    16:20:34 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    16:20:34 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    16:20:34 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    
    34:31 Server: Object 27:5 not found (message 89)
    18:34:31 "----------- _PREVIOUS = [[["MP5A5"],[1]],[["20Rnd_762x51_DMR"],[3]],[["DZ_Backpack_EP1"],[2]]] -----------------"
    18:34:48 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    18:34:52 "----------- _PREVIOUS = [] -----------------"
    18:34:52 "----------- _PREVIOUS =  -----------------"
    18:34:52 Error in expression <----- _PREVIOUS = %1 -----------------",_previous];
    if (str(_inventory) != _prev>
    18:34:52   Error position: <_previous];
    if (str(_inventory) != _prev>
    18:34:52   Error Undefined variable in expression: _previous
    18:34:52 File z\addons\dayz_server\compile\server_updateObject.sqf, line 110
    18:34:55 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    18:34:58 "TIME SYNC: Local Time set to [2013,8,3,12,34]"
    18:35:03 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    18:35:03 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    18:35:04 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    
    19:39:06 [DZMS]: Minor SM4 Crash Site Mission has Ended.
    19:39:07 "----------- _PREVIOUS = [[["ItemSledge","RH_star21","vil_RPK74M","ItemGPS","RH_hk416sd","RH_m1steot","BAF_L85A2_RIS_Holo","vil_AEK1"],[1,1,1,1,1,1,1,1]],[["ItemWire","FoodCanBakedBeans","PartWheel","ItemJerrycan","PartGeneric","20Rnd_762x51_DMR","ItemWoodLadder","ItemWoodStairsSupport","PartGlass","cinder_garage_kit","ItemWoodWallWithDoorLg","ItemWoodWallWithDoor","30Rnd_556x45_Stanag","FoodCanSardines","FoodCanPasta","FoodrabbitCooked","ItemTunaCooked","ItemAntibiotic","ItemBloodbag","ItemMorphine","Skin_GUE_Soldier_CO_DZ","PartEngine","fuel_pump_kit","RH_20Rnd_762x51_SD_hk417"],[2,1,1,2,2,7,2,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1]],[["DZ_Assault_Pack_EP1","DZ_LargeGunBag_EP1"],[1,1]]] -----------------"
    19:39:08 "----------- _PREVIOUS = [[["ItemKeyRed655"],[1]],[[],[]],[[],[]]] -----------------"
    19:39:11 "----------- _PREVIOUS = [[[],[]],[[],[]],[[],[]]] -----------------"
    19:39:15 "----------- _PREVIOUS =  -----------------"
    19:39:15 Error in expression <----- _PREVIOUS = %1 -----------------",_previous];
    if (str(_inventory) != _prev>
    19:39:15   Error position: <_previous];
    if (str(_inventory) != _prev>
    19:39:15   Error Undefined variable in expression: _previous
    19:39:15 File z\addons\dayz_server\compile\server_updateObject.sqf, line 110
    19:39:17 Server: Object 32:79 not found (message 132)
    

    this is the instances where the error occured

     

    thanks

×
×
  • Create New...