Ericode

Member
  • Content count

    25
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Everything posted by Ericode

  1. Ericode

    Connecting Failed

    Hello, I followed the guide when creating a server but I am receiving the message "Connection Failed." Does anyone have suggestions on what causes this error?
  2. Ericode

    Value Restriction #0

    Hello, I am having this issue in my setvariable.txt Value Restriction #0 "default_mass" = 1615 2:1239 Exile_Car_Offroad_Rusty1 Here is my setvariable.txt: 7 "" !="usable_ramp" !="can_copilot" !="cargo_offset" !="slots" !="load_offset" !="zload" !="can_outside" !="slots_num" !="default_mass" !="bis_fnc_objectvar_var" !="can_load" !="doors" !="attachedtruck" !="attachedpos" !="box_num" !="can_load" !="zload_cargo" !="exilexm8isonline" !="bis_fnc_selectrespawntemplate_respawned" !="ExileCameraInUse" !="isrunning" I am still getting kicked. I also added it to my setvariableval.txt and still no luck. Any suggestions on a fix?
  3. Ericode

    Safe zone Size

    Hello, where can I make changes to the size of the safe zone on the map and in the game?
  4. Ericode

    battleye restriction 46

    error: 14:38:28 BattlEye Server: Script Log: #0 username (udi goes here) - #46 "; 14:38:28 if (!isNull cameraOn) then 14:38:28 { 14:38:28 { 14:38:28 if (!isNull _x) then 14:38:28 { 14:38:28 if (isPlayer _x) then 14:38:28 { 14:38:28 if(isHidden _x) exitWith {}; 14:38:28 _distance = camera" 14:38:28 Player username kicked off by BattlEye: Script Restriction #46BE filter line: Another Error: setpos #1
  5. Ericode

    Exile IgiLoad with TaruPodMod

    Does this overwrite anything important?
  6. Ericode

    Exile IgiLoad with TaruPodMod

    Has anyone got this error fixed? Value Restriction #0 "default_mass" = 15398.1 2:1061 Exile_Car_Tempest I tried adding it to a few different files and I still get this error. I didn't want to set any of the battle eye files to 1.
  7. Ericode

    Exile IgiLoad with TaruPodMod

    Could someone help me get this working? My config.cpp has this: class CfgExileCustomCode { /* You can overwrite every single file of our code without touching it. To do that, add the function name you want to overwrite plus the path to your custom file here. If you wonder how this works, have a look at our bootstrap/fn_preInit.sqf function. Simply add the following scheme here: <Function Name of Exile> = "<New File Name>"; Example: ExileClient_util_fusRoDah = "myaddon\myfunction.sqf"; */ ExileClient_object_player_event_onEnterSafezone = "ExileClient_object_player_event_onEnterSafezone.sqf"; }; and I took the init.sqf,ExileClient_object_player_event_onEnterSafezone.sqf, and the Igiload folder and placed it in the exile.atlas and repacked it but it still is not working. Am I missing something?
  8. Ericode

    Car Keys and Locking

    I agree. To balance it, the lockpick should replace a primary weapon take about a minute to complete and have a 75% chance of succeeding and a 25% chance of breaking this way it isn't overpowered. (Percentages may vary)
  9. Ericode

    Car Keys and Locking

    I think it is a good idea. Most players will complain how they died trying to get into their vehicle or that someone was spawn camping their vehicle and they died trying to go in it. Well, I think that is part of the game. It's not like it is hard getting pop tabs. I say go for it.
  10. Ericode

    BEC not running scheduler.xml

    Hello, on my server I installed BEC which runs great and tells me when people log in and out of the server but for some reason, the scheduler.xml is not working. Server messages don't get displayed and restarts don't work. Here is some detail about the server: (all files inside the battleye folder are there such as BEServer.cfg and bans.txt) Exile path: C:\Arma\Server BEC path: C:\Arma\bec2\instance_11_Chernarus\BattlEye\Bec config: C:\Arma\bec2\instance_11_Chernarus\BattlEye\Bec\Config config.cfg [Bec] IP = 127.0.0.1 Port = 2302 BePath = C:\Arma\Server\SC\BattlEye Admins = Admins.xml Commands = Commands.xml [Misc] Ban = 3 ConsoleHeight = 30 ConsoleWidth = 60 Scheduler = Scheduler.xml KickLobbyIdlers = 400 ChatChannelFiles = True Timeout = 60 [Reporter] #User = alfred #Password = 123456 scheduler.xml <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <Scheduler> <!-- this job will start after 5 minutes and run forever with a 15 minutes interval between the jobs --> <job id='0'> <day>1,2,3,4,5,6,7</day> <start>000500</start> <runtime>001500</runtime> <loop>-1</loop> <cmd>say -1 Please be respectful to all players and admins!</cmd> </job> <!-- this job will start after 5 minutes and will only run once. note that the runtime tag is ignored when loop is 0 --> <job id='1'> <day>1,2,3,4,5,6,7</day> <start>000500</start> <runtime>002500</runtime> <loop>-1</loop> <cmd>uptime</cmd> </job> <job id='2'> <day>1,2,3,4,5,6,7</day> <start>000500</start> <runtime>002000</runtime> <loop>-1</loop> <cmd>say -1 Do not destroy undefended camps or vehicles! You are permitted to breach and clear in order to loot items.</cmd> </job> <!-- RESTART WARNINGS --> <job id='3'> <day>1,2,3,4,5,6,7</day> <start>23:30:00</start> <runtime>033000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 30 minutes</cmd> </job> <job id='4'> <day>1,2,3,4,5,6,7</day> <start>23:45:00</start> <runtime>034500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 15 minutes</cmd> </job> <job id='5'> <day>1,2,3,4,5,6,7</day> <start>23:50:00</start> <runtime>035000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 10 minutes</cmd> </job> <job id='6'> <day>1,2,3,4,5,6,7</day> <start>23:55:00</start> <runtime>035500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 5 minutes!!</cmd> </job> <job id='7'> <day>1,2,3,4,5,6,7</day> <start>23:59:00</start> <runtime>035900</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 1 minute!! Log out NOW to avoid character data loss!!!!</cmd> </job> <job id='8'> <day>1,2,3,4,5,6,7</day> <start>03:30:00</start> <runtime>033000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 30 minutes</cmd> </job> <job id='9'> <day>1,2,3,4,5,6,7</day> <start>03:45:00</start> <runtime>034500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 15 minutes</cmd> </job> <job id='10'> <day>1,2,3,4,5,6,7</day> <start>03:50:00</start> <runtime>035000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 10 minutes</cmd> </job> <job id='11'> <day>1,2,3,4,5,6,7</day> <start>23:55:00</start> <runtime>035500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 5 minutes!!</cmd> </job> <job id='12'> <day>1,2,3,4,5,6,7</day> <start>03:59:00</start> <runtime>035900</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 1 minute!! Log out NOW to avoid character data loss!!!!</cmd> </job> <job id='13'> <day>1,2,3,4,5,6,7</day> <start>07:30:00</start> <runtime>033000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 30 minutes</cmd> </job> <job id='14'> <day>1,2,3,4,5,6,7</day> <start>07:45:00</start> <runtime>034500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 15 minutes</cmd> </job> <job id='15'> <day>1,2,3,4,5,6,7</day> <start>07:50:00</start> <runtime>035000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 10 minutes</cmd> </job> <job id='16'> <day>1,2,3,4,5,6,7</day> <start>07:55:00</start> <runtime>035500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 5 minutes!!</cmd> </job> <job id='17'> <day>1,2,3,4,5,6,7</day> <start>07:59:00</start> <runtime>035900</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 1 minute!! Log out NOW to avoid character data loss!!!!</cmd> </job> <job id='18'> <day>1,2,3,4,5,6,7</day> <start>11:30:00</start> <runtime>033000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 30 minutes</cmd> </job> <job id='19'> <day>1,2,3,4,5,6,7</day> <start>11:45:00</start> <runtime>034500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 15 minutes</cmd> </job> <job id='20'> <day>1,2,3,4,5,6,7</day> <start>11:50:00</start> <runtime>035000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 10 minutes</cmd> </job> <job id='21'> <day>1,2,3,4,5,6,7</day> <start>07:55:00</start> <runtime>035500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 5 minutes!!</cmd> </job> <job id='22'> <day>1,2,3,4,5,6,7</day> <start>07:59:00</start> <runtime>035900</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 1 minute!! Log out NOW to avoid character data loss!!!!</cmd> </job> <job id='23'> <day>1,2,3,4,5,6,7</day> <start>11:30:00</start> <runtime>033000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 30 minutes</cmd> </job> <job id='24'> <day>1,2,3,4,5,6,7</day> <start>11:45:00</start> <runtime>034500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 15 minutes</cmd> </job> <job id='25'> <day>1,2,3,4,5,6,7</day> <start>11:50:00</start> <runtime>035000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 10 minutes</cmd> </job> <job id='26'> <day>1,2,3,4,5,6,7</day> <start>11:55:00</start> <runtime>035500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 5 minutes!!</cmd> </job> <job id='27'> <day>1,2,3,4,5,6,7</day> <start>11:59:00</start> <runtime>035900</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 1 minute!! Log out NOW to avoid character data loss!!!!</cmd> </job> <job id='28'> <day>1,2,3,4,5,6,7</day> <start>15:30:00</start> <runtime>033000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 30 minutes</cmd> </job> <job id='29'> <day>1,2,3,4,5,6,7</day> <start>15:45:00</start> <runtime>034500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 15 minutes</cmd> </job> <job id='30'> <day>1,2,3,4,5,6,7</day> <start>15:50:00</start> <runtime>035000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 10 minutes</cmd> </job> <job id='31'> <day>1,2,3,4,5,6,7</day> <start>15:55:00</start> <runtime>035500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 5 minutes!!</cmd> </job> <job id='32'> <day>1,2,3,4,5,6,7</day> <start>15:59:00</start> <runtime>035900</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 1 minute!! Log out NOW to avoid character data loss!!!!</cmd> </job> <job id='33'> <day>1,2,3,4,5,6,7</day> <start>19:30:00</start> <runtime>033000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 30 minutes</cmd> </job> <job id='34'> <day>1,2,3,4,5,6,7</day> <start>19:45:00</start> <runtime>034500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 15 minutes</cmd> </job> <job id='35'> <day>1,2,3,4,5,6,7</day> <start>19:50:00</start> <runtime>035000</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 10 minutes</cmd> </job> <job id='36'> <day>1,2,3,4,5,6,7</day> <start>19:55:00</start> <runtime>035500</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 5 minutes!!</cmd> </job> <job id='37'> <day>1,2,3,4,5,6,7</day> <start>19:59:00</start> <runtime>035900</runtime> <loop>0</loop> <cmd>say -1 This server will restart in 1 minute!! Log out NOW to avoid character data loss!!</cmd> </job> <job id='38'> <day>1,2,3,4,5,6,7</day> <start>00:00:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#shutdown</cmd> </job> <job id='39'> <day>1,2,3,4,5,6,7</day> <start>04:00:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#shutdown</cmd> </job> <job id='40'> <day>1,2,3,4,5,6,7</day> <start>08:00:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#shutdown</cmd> </job> <job id='41'> <day>1,2,3,4,5,6,7</day> <start>12:00:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#shutdown</cmd> </job> <job id='42'> <day>1,2,3,4,5,6,7</day> <start>16:00:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#shutdown</cmd> </job> <job id='43'> <day>1,2,3,4,5,6,7</day> <start>20:00:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#shutdown</cmd> </job> <job id='44'> <day>1,2,3,4,5,6,7</day> <start>23:55:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#lock</cmd> </job> <job id='45'> <day>1,2,3,4,5,6,7</day> <start>03:55:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#lock</cmd> </job> <job id='46'> <day>1,2,3,4,5,6,7</day> <start>07:55:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#lock</cmd> </job> <job id='47'> <day>1,2,3,4,5,6,7</day> <start>11:55:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#lock</cmd> </job> <job id='48'> <day>1,2,3,4,5,6,7</day> <start>15:55:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#lock</cmd> </job> <job id='49'> <day>1,2,3,4,5,6,7</day> <start>19:55:00</start> <runtime>040000</runtime> <loop>0</loop> <cmd>#lock</cmd> </job> <job id='50'> <day>1,2,3,4,5,6,7</day> <start>001000</start> <runtime>001500</runtime> <loop>-1</loop> <cmd>say -1 While not required, donations to help cover server costs are appreciated.</cmd> </job> <job id='51'> <day>1,2,3,4,5,6,7</day> <start>001000</start> <runtime>001501</runtime> <loop>-1</loop> <cmd>say -1 We do NOT offer any perks in exchange for donations.</cmd> </job> <job id='52'> <day>1,2,3,4,5,6,7</day> <start>001500</start> <runtime>001500</runtime> <loop>-1</loop> <cmd>say -1 Enjoy your stay!</cmd> </job> </Scheduler>
  11. Ericode

    attatchto bushkit error

    Restriction #0 3:3 Exile_Plant_GreenBush 2:806 Exile_Unit_Player -1 [0,0,0] Restriction #0 3:4 Exile_Plant_GreenBush 2:811 Exile_Unit_Player -1 [0,0,0] Restriction#0 4:3 Exile_Plant_GreenBush 2:810 Exile_Unit_Player -1 [0,0,0] How would I add this to the attatchto battleeye script?
  12. Ericode

    battleye restriction 46

    This is when an admin tries to log in or for the second error, a player dies and tries to respawn.
  13. Ericode

    No revive

    So you just made the argument to have it, more people want it. Also, if no one wants to play on your server for not having it, then it is your loss, not the community's.
  14. Ericode

    BE FILTER FAIL 0.9.34

    I am sorry I can't test this out but try adding this: as you see, Mikeeeyy beat me too it.
  15. Ericode

    BE FILTER FAIL 0.9.34

    Are you using infistar?
  16. Ericode

    0.932 Update Issues.

    No loot spawning is something with your server only. Spawning on your body is an issue though when halo spawning is enabled.
  17. Ericode

    Remove speed limit?

    I would like to know this too. A glitch with it is just tell people to drive backwards. you can drive a lot faster. lol
  18. Ericode

    Vehicle bug*

    Hello, I am not sure where I am supposed to post bugs but the armed pickup truck can blow up other vehicles in trader cities.
  19. Ericode

    Vehicle bug*

    Does it happen on your server with dms? That is the only mod I have on there.
  20. Ericode

    Refuel/repair truck

    Hello, I wanted to find out how do you use the repair/refuel trucks. Also, how are you supposed to refuel the airplane in the game? Is the only way using the gas cans?
  21. Ericode

    Safe zone Size

    Thank you so much. I don't know how I missed that.
  22. Ericode

    Safe zone Size

    Thanks so much for this. I tried to change the values but when I save it, it says variable name used. When I change the variable name then just the outline of the ellipse changes. If I change this in the mission.sqm, will it update the map picture in game? I changed item0 and the map still shows the same radius before and after the changes. class Sensors { items = 3; class Item0 { position[] = {14694.9,17.91,16727.4}; a = 275; b = 275; angle = 45; rectangular = 1; activationBy = "ANY"; repeating = 1; interruptable = 1; age = "UNKNOWN"; name = "ExileTrader"; expCond = "(vehicle player) in thisList"; expActiv = "call ExileClient_object_player_event_onEnterSafezone"; expDesactiv = "call ExileClient_object_player_event_onLeaveSafezone"; class Effects{}; }; class Item1 { position[] = {2998.06,3.7756,18175.5}; a = 175; b = 175; rectangular = 1; activationBy = "ANY"; repeating = 1; interruptable = 1; age = "UNKNOWN"; name = "ExileTrader"; expCond = "(vehicle player) in thisList"; expActiv = "call ExileClient_object_player_event_onEnterSafezone"; expDesactiv = "call ExileClient_object_player_event_onLeaveSafezone"; class Effects{}; }; class Item2 { position[] = {23334.6,4.00956,24188.9}; a = 175; b = 175; rectangular = 1; activationBy = "ANY"; repeating = 1; interruptable = 1; age = "UNKNOWN"; name = "ExileTrader"; expCond = "(vehicle player) in thisList"; expActiv = "call ExileClient_object_player_event_onEnterSafezone"; expDesactiv = "call ExileClient_object_player_event_onLeaveSafezone"; class Effects{}; }; };
  23. Ericode

    DMS - Defent's Mission System

    Hello, I added this to my server and it works great. The only thing is that the missions will show up and disappear less then a minute later. More missions will spawn but it will do the same thing. here is my config file http://pastebin.com/qLtkzDEJ but I am not sure why it is doing it when I have this line : DMS_MissionTimeOut = [900,1800];
  24. Ericode

    Connecting Failed

    Thanks for the replies, it turns out that the issue was just me. The server is hosted from my house and my friend across the country was able to connect with his ping around 30. The ip= in the batch file had to be set to my global ip (or taken out).