Jump to content
  • 0

samnotts

Question

12 answers to this question

Recommended Posts

  • 0

_Ratio1 = 1;
_Ratio2 = 2;
_Ratio3 = 3;
if (MaxVehicleLimit > 300) then {
    _Ratio1 = round(MaxVehicleLimit * 0.0034);
    _Ratio2 = round(MaxVehicleLimit * 0.0067);
    _Ratio3 = round(MaxVehicleLimit * 0.01);
};
AllowedVehiclesList = [
    //Custom
    ["BMP2_Ambul_INS",_Ratio3],
    ["T34",_Ratio2],
    ["T34_TK_EP1",_Ratio2],
    ["BRDM2_INS",_Ratio2],
    ["BRDM2_GUE",_Ratio2],
    ["BRDM2_CDF",_Ratio2],
    ["BRDM2_HQ_Gue",_Ratio2],
    ["LAV25",_Ratio1],
    ["LAV25_HQ",_Ratio2],
    ["GAZ_Vodnik_HMG",_Ratio2],
    ["AH1Z",_Ratio1],
    ["AH64D",_Ratio1],
    ["MH60S",_Ratio2],
    ["Ka52Black",_Ratio1],
    ["Ural_ZU23_INS",_Ratio3],
    ["HMMWV_M2",_Ratio2],
    ["HMMWV_Armored",_Ratio2],
    ["AAV",_Ratio2],
    ["T55_TK_EP1",_Ratio1],
    ["M113_TK_EP1",_Ratio2],
    ["M113_UN_EP1",_Ratio2],
    ["M113Ambul_TK_EP1",_Ratio3],
    ["M113Ambul_UN_EP1",_Ratio3],
    ["BAF_FV510_D",_Ratio1],
    ["BAF_FV510_W",_Ratio1],
    ["HMMWV_M998_crows_M2_DES_EP1",_Ratio2],
    ["UralRepair_TK_EP1",_Ratio2],
    ["UralSalvage_TK_EP1",_Ratio2],
    ["Ural_ZU23_TK_EP1",_Ratio3],
    ["BTR40_MG_TK_INS_EP1",_Ratio3],
    ["BTR60_TK_EP1",_Ratio2],
    ["M1126_ICV_M2_EP1",_Ratio2],
    //Custom End
    ["AH6X_DZ",_Ratio3],
    ["AN2_DZ",_Ratio3], //Green
    ["AN2_2_DZ",_Ratio3], //Red and white
    ["An2_2_TK_CIV_EP1_DZ",_Ratio3], //Green and white
    ["ArmoredSUV_PMC_DZE",_Ratio2],
    ["C130J_US_EP1_DZ",_Ratio3],
    ["CH_47F_EP1_DZE",_Ratio3],
    ["CH53_DZE",_Ratio3],
    ["GAZ_Vodnik_DZE",_Ratio3],
    ["GAZ_Vodnik_MedEvac",_Ratio3],
    ["HMMWV_Ambulance_CZ_DES_EP1",_Ratio3],
    ["HMMWV_DES_EP1",_Ratio3],
    ["HMMWV_DZ",_Ratio3],
    ["HMMWV_M1035_DES_EP1",_Ratio3],
    ["HMMWV_M1151_M2_CZ_DES_EP1_DZE",_Ratio2],
    ["HMMWV_M998A2_SOV_DES_EP1_DZE",_Ratio2],
    ["Kamaz_DZE",_Ratio3],
    ["KamazRefuel_DZ",_Ratio3],
    ["LandRover_CZ_EP1",_Ratio3],
    ["LandRover_MG_TK_EP1_DZE",_Ratio3],
    ["LandRover_Special_CZ_EP1_DZE",_Ratio3],
    ["LandRover_TK_CIV_EP1",_Ratio3],
    ["MH6J_DZ",_Ratio3],
    ["Mi17_Civilian_DZ",_Ratio3],
    ["Mi17_DZE",_Ratio3],
    ["MtvrRefuel_DES_EP1_DZ",_Ratio3],
    ["MTVR_DES_EP1",_Ratio3],
    ["MV22_DZ",_Ratio3],
    ["Offroad_DSHKM_Gue_DZE",_Ratio3],
    ["Pickup_PK_GUE_DZE",_Ratio3],
    ["Pickup_PK_INS_DZE",_Ratio3],
    ["Pickup_PK_TK_GUE_EP1_DZE",_Ratio3],
    ["SUV_Camo",_Ratio3],
    ["SUV_Charcoal",_Ratio3],
    ["tractor",_Ratio3],
    ["TT650_TK_CIV_EP1",_Ratio3],
    ["UAZ_INS",_Ratio3],
    ["UH1H_DZE",_Ratio2],
    ["UH1Y_DZE",_Ratio2],
    ["UH60M_EP1_DZE",_Ratio2],
    ["UralRefuel_TK_EP1_DZ",_Ratio2],
    ["Ural_CDF",_Ratio3],
    ["V3S_Open_TK_CIV_EP1",_Ratio3],
    ["V3S_Refuel_TK_GUE_EP1_DZ",_Ratio2]
};

if (toLower worldName in ["caribou"],"chernarus","cmr_ovaron","dayznogova","dingor","dzhg","fallujah","fapovo","fdf_isle1_a","isladuala","lingor","mbg_celle2","namalsk","napf","oring","panthera2","sara","sauerland","smd_sahrani_a2","tasmania2010","tavi","trinity","utes"] ) then {
    // water map, add boats
    
    AllowedVehiclesList = AllowedVehiclesList + [
        ["Fishing_Boat",_Ratio3],
        ["RHIB",_Ratio3],
        ["Smallboat_1",_Ratio3],
        ["Smallboat_2",_Ratio3],
        ["Zodiac",_Ratio3]
    ];
};

Link to comment
Share on other sites

  • 0
2 minutes ago, samnotts said:

if (toLower worldName in ["caribou"],"chernarus","cmr_ovaron","dayznogova","dingor","dzhg","fallujah","fapovo","fdf_isle1_a","isladuala","lingor","mbg_celle2","namalsk","napf","oring","panthera2","sara","sauerland","smd_sahrani_a2","tasmania2010","tavi","trinity","utes"] ) then {

Remove the ] after ["caribou"

Link to comment
Share on other sites

  • 0

Error in expression <],
["V3S_Refuel_TK_GUE_EP1_DZ",_Ratio2]
};

if (toLower worldName in ["caribou",>
  Error position: <};

if (toLower worldName in ["caribou",>
  Error Missing ]
File z\addons\dayz_server\system\dynamic_vehicle.sqf, line 88
Error in expression <],
["V3S_Refuel_TK_GUE_EP1_DZ",_Ratio2]
};

if (toLower worldName in ["caribou",>
  Error position: <};

if (toLower worldName in ["caribou",>
  Error Missing ]
File z\addons\dayz_server\system\dynamic_vehicle.sqf, line 88
"HIVE: Starting"
Error in expression <erver_hiveReadWrite;
_outcome = _result select 0;
if (_outcome == "PASS") then {>
  Error position: <select 0;
if (_outcome == "PASS") then {>
  Error select: Type String, expected Array,Config entry
File z\addons\dayz_server\system\server_monitor.sqf, line 23
"z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..

Error in expression <],
["V3S_Refuel_TK_GUE_EP1_DZ",_Ratio2]
};

if (toLower worldName in ["caribou",>
  Error position: <};

if (toLower worldName in ["caribou",>
  Error Missing ]
File z\addons\dayz_server\system\dynamic_vehicle.sqf, line 88
Error in expression <],
["V3S_Refuel_TK_GUE_EP1_DZ",_Ratio2]
};

if (toLower worldName in ["caribou",>
  Error position: <};

if (toLower worldName in ["caribou",>
  Error Missing ]
File z\addons\dayz_server\system\dynamic_vehicle.sqf, line 88
"HIVE: Starting"
Error in expression <erver_hiveReadWrite;
_outcome = _result select 0;
if (_outcome == "PASS") then {>
  Error position: <select 0;
if (_outcome == "PASS") then {>
  Error select: Type String, expected Array,Config entry
File z\addons\dayz_server\system\server_monitor.sqf, line 23
"z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..

Link to comment
Share on other sites

  • 0

now this one  is poping up 

//Set the Time
_key = "CHILD:307:";
_result = _key call server_hiveReadWrite;
_outcome = _result select 1;
if (_outcome == "PASS") then {
    _date = _result select ;
    _year = _date select 0;
    _month = _date select ;
    _day = _date select 2;
    _hour = _date select 3;
    _minute = _date select 4;

Link to comment
Share on other sites

  • 0
2 hours ago, samnotts said:

now this one  is poping up 

//Set the Time
_key = "CHILD:307:";
_result = _key call server_hiveReadWrite;
_outcome = _result select 1;
if (_outcome == "PASS") then {
    _date = _result select ;
    _year = _date select 0;
    _month = _date select ;
    _day = _date select 2;
    _hour = _date select 3;
    _minute = _date select 4;

post the actual error from your server RPT

Link to comment
Share on other sites

  • 0

Error in expression <erver_hiveReadWrite;
_outcome = _result select 0;
if (_outcome == "PASS") then {>
  Error position: <select 0;
if (_outcome == "PASS") then {>
  Error select: Type String, expected Array,Config entry
File z\addons\dayz_server\system\server_monitor.sqf, line 23
"z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..."

Link to comment
Share on other sites

  • 0
3 hours ago, samnotts said:

Error in expression <erver_hiveReadWrite;
_outcome = _result select 0;
if (_outcome == "PASS") then {>
  Error position: <select 0;
if (_outcome == "PASS") then {>
  Error select: Type String, expected Array,Config entry
File z\addons\dayz_server\system\server_monitor.sqf, line 23
"z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..."

Either your hive settings are incorrect (username, password or up/port) or you have not applied the service packs properly

Link to comment
Share on other sites

  • 0

 the server packs where installed by my host it was a test server  that is no longer have online but i have another problem on my main server it coming up  with this and a error 

Ref to nonnetwork object 2aef7900# 1056984: wall_indfnc_pole.p3d
Ref to nonnetwork object 2aee4f00# 1057007: mil_barracks_l.p3d
Ref to nonnetwork object 2aedd600# 1057015: asc_lampa_ind.p3d
Ref to nonnetwork object 2aedc800# 1057016: asc_lampa_ind.p3d
Ref to nonnetwork object 2ae9d600# 1057057: sara_domek_sedy.p3d
Ref to nonnetwork object 2ae9c800# 1057059: wall_wood1_5_2.p3d
Ref to nonnetwork object 2ae93900# 1057061: wall_wood1_5_2.p3d
Ref to nonnetwork object 2ae91600# 1057066: ind_pec_03b.p3d
Ref to nonnetwork object 2ae5f200# 1057081: wall_indvar1_5.p3d
Ref to nonnetwork object 2ae50800# 1057113: garbage_misc.p3d
Ref to nonnetwork object 2ae50100# 1057114: garbage_paleta.p3d
Ref to nonnetwork object Agent 0x3b2ac500
Ref to nonnetwork object Agent 0x3af60540
Ref to nonnetwork object Agent 0x3af6a580
Ref to nonnetwork object Agent 0x3af745c0
Ref to nonnetwork object Agent 0x3af7e6c0
Ref to nonnetwork object Agent 0x3af88780
Ref to nonnetwork object Agent 0x3af928c0
Ref to nonnetwork object Agent 0x3af9c900
Ref to nonnetwork object Agent 0x3ac60940
Ref to nonnetwork object Agent 0x3ac6aa00
Ref to nonnetwork object Agent 0x3ac74a40
Ref to nonnetwork object Agent 0x3ac7eb00
Ref to nonnetwork object Agent 0x3ac88b40
Ref to nonnetwork object Agent 0x3ac92b80
Ref to nonnetwork object Agent 0x3ac9c100
Ref to nonnetwork object Agent 0x3aca6140
Ref to nonnetwork object Agent 0x3b560180
Ref to nonnetwork object Agent 0x3b56a1c0
Ref to nonnetwork object Agent 0x3b574200
Ref to nonnetwork object Agent 0x3b57e240
Ref to nonnetwork object Agent 0x3b588280
Ref to nonnetwork object Agent 0x3b5922c0
Ref to nonnetwork object Agent 0x3b59c3c0
Ref to nonnetwork object Agent 0x3b5a6400
Ref to nonnetwork object Agent 0x3b5b0440
Ref to nonnetwork object Agent 0x3be60480
Ref to nonnetwork object Agent 0x3be6a4c0
Ref to nonnetwork object Agent 0x3be74500
"Admin Tools: Activate.sqf loaded"
Cannot create non-ai vehicle CamoNet_DZ,
Warning Message: Script z\addons\dayz_server\WAI\customsettings.sqf not found
"WAI: AI Config File Loaded"
"WAI: AI Monitor Started"
"WAI: Initialising static missions"
"CLEANUP: INITIALIZING Vehicle SCRIPT"
["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,8,7],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,11,9,8,7]]
Creation of object O 1-1-A failed, state MISSION ASKED
Creation of object O 1-1-A:<Empty main subgroup> failed, state MISSION ASKED
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:1
Creation of object O 1-1-A:2 failed, state MISSION ASKED
Client: Nonnetwork object 3c629800.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:2
Creation of object O 1-1-A:3 failed, state MISSION ASKED
Client: Nonnetwork object 3c628d60.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:3
Creation of object O 1-1-A:4 failed, state MISSION ASKED
Client: Nonnetwork object 3c6280e0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:4
Creation of object O 1-1-A:5 failed, state MISSION ASKED
Client: Nonnetwork object 3c52f560.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:5
Creation of object O 1-1-A:6 failed, state MISSION ASKED
Client: Nonnetwork object 3c52e980.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:6
Creation of object O 1-1-A:7 failed, state MISSION ASKED
Client: Nonnetwork object 3c52e160.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:7
Creation of object O 1-1-A:8 failed, state MISSION ASKED
Client: Nonnetwork object 3c52d8a0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:8
Creation of object O 1-1-A:9 failed, state MISSION ASKED
Client: Nonnetwork object 3c52ccc0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:9
Creation of object O 1-1-A:10 failed, state MISSION ASKED
Client: Nonnetwork object 3c52c180.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:10
Creation of object O 1-1-A:11 failed, state MISSION ASKED
Client: Nonnetwork object 3c49f380.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:11
Creation of object O 1-1-A:12 failed, state MISSION ASKED
Client: Nonnetwork object 3c49ea20.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:12
Creation of object O 1-1-A:13 failed, state MISSION ASKED
Client: Nonnetwork object 3c49de40.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:13
Creation of object O 1-1-A:14 failed, state MISSION ASKED
Client: Nonnetwork object 3c49d4e0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:14
Creation of object O 1-1-A:15 failed, state MISSION ASKED
Client: Nonnetwork object 3c49cae0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:15
Creation of object O 1-1-A:16 failed, state MISSION ASKED
Client: Nonnetwork object 3c49c0e0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:16
trigger - unknown animation source revolved
Creation of object O 1-1-A:17 failed, state MISSION ASKED
Client: Nonnetwork object 2b9ff6a0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:17
Creation of object O 1-1-A:18 failed, state MISSION ASKED
Client: Nonnetwork object 2b9fefc0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:18
Creation of object O 1-1-A:19 failed, state MISSION ASKED
Client: Nonnetwork object 2b9fe480.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:19
Creation of object O 1-1-A:20 failed, state MISSION ASKED
Client: Nonnetwork object 2b9fda80.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:20
Creation of object O 1-1-A:21 failed, state MISSION ASKED
Client: Nonnetwork object 2b9fcea0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:21
Creation of object O 1-1-A:22 failed, state MISSION ASKED
Client: Nonnetwork object 3cfe7e20.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:22
Creation of object O 1-1-A:23 failed, state MISSION ASKED
Client: Nonnetwork object 3cfe7740.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:23
Strange convex component01 in rh_m14\rh_m14.p3d:geometry
Strange convex component07 in rh_m14\rh_m14.p3d:geometry
Strange convex component08 in rh_m14\rh_m14.p3d:geometry
Strange convex component12 in rh_m14\rh_m14.p3d:geometry
Creation of object O 1-1-A:24 failed, state MISSION ASKED
Client: Nonnetwork object 3cfe6e80.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:24
Creation of object O 1-1-A:25 failed, state MISSION ASKED
Client: Nonnetwork object 3cfe6480.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:25
Creation of object O 1-1-A:26 failed, state MISSION ASKED
Client: Nonnetwork object 3cfe59e0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:26
Creation of object O 1-1-A:27 failed, state MISSION ASKED
Client: Nonnetwork object 3cfe5080.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:27
trigger - unknown animation source revolved
Creation of object O 1-1-A:28 failed, state MISSION ASKED
Client: Nonnetwork object 3cfe47c0.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:28
Creation of object O 1-1-A:29 failed, state MISSION ASKED
Client: Nonnetwork object 3cf43e20.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:29
Creation of object O 1-1-A:30 failed, state MISSION ASKED
Client: Nonnetwork object 3cf43560.
Client: Nonnetwork object 3c62b880.
Client: Nonnetwork object 2d9c5c00.
Ref to nonnetwork object O 1-1-A:30
"WAI: Spawned in 30 M2StaticMG"
Creation of object O 1-1-B failed, state MISSION ASKED
Creation of object O 1-1-B:<Empty main subgroup> failed, state MISSION ASKED
Client: Nonnetwork object 3cf42e80.
Client: Nonnetwork object 3cf65000.
Client: Nonnetwork object 3cf42e80.
Client: Nonnetwork object 3cf65000.
Ref to nonnetwork object O 1-1-B:1
Creation of object O 1-1-B:2 failed, state MISSION ASKED
Client: Nonnetwork object 3cf402c0.
Client: Nonnetwork object 3cf42e80.
Client: Nonnetwork object 3cf65000.
Ref to nonnetwork object O 1-1-B:2
"WAI: Initialising missions"
Creation of object O 1-1-B:3 failed, state MISSION ASKED
Client: Nonnetwork object 3ce8f240.
Client: Nonnetwork object 3cf42e80.
Client: Nonnetwork object 3cf65000.
Ref to nonnetwork object O 1-1-B:3
Creation of object O 1-1-B:4 failed, state MISSION ASKED
Client: Nonnetwork object 3ce8ea20.
Client: Nonnetwork object 3cf42e80.
Client: Nonnetwork object 3cf65000.
Ref to nonnetwork object O 1-1-B:4
Creation of object O 1-1-B:5 failed, state MISSION ASKED
Client: Nonnetwork object 3ce8df80.
Client: Nonnetwork object 3cf42e80.
Client: Nonnetwork object 3cf65000.
Ref to nonnetwork object O 1-1-B:5
"WAI: Spawned in 5 Igla_AA_pod_TK_EP1"
"WAI: Static mission loaded"
Creation of object O 1-1-C failed, state MISSION ASKED
Creation of object O 1-1-C:<Empty main subgroup> failed, state MISSION ASKED
Client: Nonnetwork object 3ce8da80.
Client: Nonnetwork object 3d951900.
Client: Nonnetwork object 3ce8da80.
Client: Nonnetwork object 3d951900.
Ref to nonnetwork object O 1-1-C:1
Client: Nonnetwork object 3ce8da80.
Client: Nonnetwork object 3d951900.
Ref to nonnetwork object O 1-1-C:2
Client: Nonnetwork object 3ce8da80.
Client: Nonnetwork object 3d951900.
Ref to nonnetwork object O 1-1-C:3
Creation of object B 1-1-A:2 failed, state MISSION ASKED
Ref to nonnetwork object B 1-1-A:2
Ref to nonnetwork object B 1-1-A:2
Ref to nonnetwork object B 1-1-A:2
Client: Nonnetwork object 3d7da040.
Client: Nonnetwork object 3d73e9c0.
Ref to nonnetwork object B 1-1-A:2
Client: Nonnetwork object 3d7da040.
Client: Nonnetwork object 3d73e9c0.
Ref to nonnetwork object B 1-1-A:2
Server: Object 2:14 not found (message 85)
Server: Object 2:13 not found (message 82)
Server: Object 2:14 not found (message 85)
Server: Object 2:13 not found (message 82)
Creation of object Statistics for sams NBZ failed, state MISSION ASKED

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...