chaveezy

Member
  • Content count

    33
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Everything posted by chaveezy

  1. chaveezy

    [XM8 APP] BRAma Cookbook [UPDATED]

    Have this same issue, if you find a fix please let me know.
  2. chaveezy

    Donation Link in XM8 Apps

    Same issue, any fix?
  3. chaveezy

    4 Types of Side Events

    Hey guys, props to this development! Is there a way to have the weed farm as well as other events avoid spawning at trader zones? 
  4. chaveezy

    Harvest Weed

    Hey guys, props to this development! Is there a way to have the weed farm as well as other events avoid spawning at a trader zones?
  5. 1 meter didn't seem to do it, going to try 5m and let it fall into the water.. Redux elevations are so messed up it's not even funny... I think this is the right track though, just trial and error. Edit - 5m didn't work either, boats will porpoising all over the place. Guess it's a Redux issue..
  6. Does anyone know why occupation would do this with the boats? Running Chernarus Redux map; https://youtu.be/3pg1YvEkI2s
  7. chaveezy

    Exile 1.0.4 Bugs Megathread !! READ THE RULES!!

    Outstanding!! Thank you so much @BaroN , I looked through the content and didn't see this one, just some fixes that Alexis put in. This solved it!
  8. chaveezy

    *NEW AND IMPROVED* Sell Crates At Wastedump for R3F

    Hello! I'm getting a bunch of script errors with this when I sell now (just updated to the latest version). I merged the files as instructed and placed the pbo in the @ExileServer/addons directory. Seems to be hinging around line 57, which calls private _cargo = _crate call ExileClient_util_containerCargo_list Let me know if there's a fix for this. Thank you!
  9. chaveezy

    Exile 1.0.4 Bugs Megathread !! READ THE RULES!!

    Did anyone ever figure out a fix for this undefined variable in expression on line 31 of ExileClient_util_string_trim.sqf? This happens on store only, vehicle stores okay, just trying to clean up errors. /** * ExileClient_util_string_trim * * Exile Mod * exile.majormittens.co.uk * © 2015 Exile Mod Team * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. */ private["_input", "_inputLetters", "_inputLength", "_leftStartPosition", "_rightEndPosition", "_output", "_whitespaceCharacters", "_i", "_letter"]; _input = _this; _inputLetters = toArray _input; _inputLength = count _inputLetters; _leftStartPosition = 0; _rightEndPosition = _inputLength; _output = ""; _whitespaceCharacters = [9, 10, 13, 32]; for "_i" from 0 to _inputLength do { _letter = _inputLetters select _i; if !(_letter in _whitespaceCharacters) exitWith { _leftStartPosition = _i; }; }; for "_i" from _inputLength to 0 step -1 do { _letter = _inputLetters select _i; if !(_letter in _whitespaceCharacters) exitWith { _rightEndPosition = _i + 1; }; }; if (_leftStartPosition > 0 || _rightEndPosition < _inputLength) then { _output = toString (_inputLetters select [_leftStartPosition, _rightEndPosition - _leftStartPosition]); } else { _output = _input; }; _output
  10. chaveezy

    RPG7 Rockets Don't Load All the Way?

    Anyone ever seen this before? Tried various rockets in the RPG7, they stick out all the way.. Can still fire them just looks weird...
  11. chaveezy

    DualArms - Two Primary Weapons

    @aussie battler All good brother, got it fixed.. Andrew actually pointed out the secondary hook not firing, I verified all files, re-pbo'd and its working again. I did get the error again once just a bit ago but died/respawned and it was working again, at the time I was moving my primary to secondary and getting hit by a zombie at the same time, this is the pastebin: https://pastebin.com/znGhBp2Y Anyways, it seems to be working, just played for about 2 hours, swapping weapons like I would do normally and besides the .paa errors that it cannot display certain attachments, it worked great!
  12. chaveezy

    DualArms - Two Primary Weapons

    Can anybody help me with this error.. I ended up merging my enigma revive and dual arms and it was working up to recently. Now I'm getting this error... After this error it kills my ability to open inventory at all. Thanks
  13. chaveezy

    DualArms - Two Primary Weapons

    Looking for some clarification to this, I am having three of these functions being called twice. Can you provide an example of calling both of these functions under one event?
  14. Hey fellas, having an issue crafting full fuel canisters. The interaction group does not seem to be registering at the fuel sources specified in config.cpp. It looks like it is calling .p3d files (models?). I'm running a Chernarus Redux map and only way to fill canisters currently is by draining fuel from vehicles. Any help is appreciated (Using Easy Trader / crafting solutions). class FillFuelCanister: Exile_AbstractCraftingRecipe { name = "Fill Fuel Canister"; pictureItem = "Exile_Item_FuelCanisterFull"; requiredInteractionModelGroup = "FuelSource"; returnedItems[] = { {1, "Exile_Item_FuelCanisterFull"} }; components[] = { {1, "Exile_Item_FuelCanisterEmpty"} }; category = "Fuel"; }; class CfgInteractionModels { class FuelSource { name = "Fuel pumps, stations or barrels"; models[] = { "fuelstation_feed_f.p3d", "Land_A_FuelStation_Feed.p3d", "Land_FuelStation_Feed_F", // EBM craftable "metalbarrel_f.p3d", "flexibletank_01_f.p3d", "fs_feed_f.p3d", //Tanoa "fuelstation_01_pump_f.p3d", "fuelstation_02_pump_f.p3d", //Redux "Land_lnd_TankSmall2", "Land_Fuel_tank_big" }; }; }; Note: I have added in the //Redux and // EBM craftable classes as a test. However, I also do not want to be able to directly fuel vehicles from tanks, as this may do as well?
  15. chaveezy

    [XM8 APP] BRAma Cookbook [UPDATED]

    Hey fellas, having an issue crafting full fuel canisters. The interaction group does not seem to be registering at the fuel sources specified in config.cpp. It looks like it is calling .p3d files (models?). I'm running a Chernarus Redux map and only way to fill canisters currently is by draining fuel from vehicles. Any help is appreciated (Using Easy Trader / crafting solutions). class FillFuelCanister: Exile_AbstractCraftingRecipe { name = "Fill Fuel Canister"; pictureItem = "Exile_Item_FuelCanisterFull"; requiredInteractionModelGroup = "FuelSource"; returnedItems[] = { {1, "Exile_Item_FuelCanisterFull"} }; components[] = { {1, "Exile_Item_FuelCanisterEmpty"} }; category = "Fuel"; }; class CfgInteractionModels { class FuelSource { name = "Fuel pumps, stations or barrels"; models[] = { "fuelstation_feed_f.p3d", "Land_A_FuelStation_Feed.p3d", "Land_FuelStation_Feed_F", // EBM craftable "metalbarrel_f.p3d", "flexibletank_01_f.p3d", "fs_feed_f.p3d", //Tanoa "fuelstation_01_pump_f.p3d", "fuelstation_02_pump_f.p3d", //Redux "Land_lnd_TankSmall2", "Land_Fuel_tank_big" }; }; }; Note: I have added in the //Redux and // EBM craftable classes as a test. However, I also do not want to be able to directly fuel vehicles from tanks, as this may do as well?
  16. chaveezy

    ExtDB2 Errors on Server Boot

    ? No hablo
  17. chaveezy

    ExtDB2 Errors on Server Boot

    Hey pros! I have had some interesting errors on boot now that I installed CBA_A3 and CUP Weapons. If someone could take a look at these errors and give me some guidance that would be amazing. The server seems to run fine and all items are saved seemingly correctly. I do get script errors now when I sell a crate at the trader with IgiLoad and R3F logistics (only certain crates) and also when I store vehicles in vgarage (Infistar XM8 apps) but you get money and respect for selling the crates still and the vehicles will store and retrieve. Much appreciated! Pastebin Link to error report https://pastebin.com/Hdf5TCN6
  18. chaveezy

    ExtDB2 Errors on Server Boot

    Yeh I totally understand, it's for code re-usability. However, how will I track that down to a specific call?
  19. chaveezy

    ExtDB2 Errors on Server Boot

    Thanks! That helps a little. So looking into the first error, in ExileServer_system_database_query_insertSingle.sqf, the code is; private["_parameters", "_query", "_result"]; _parameters = _this; _query = [0, ExileServerDatabaseSessionId, _parameters] joinString ":"; _result = call compile ("extDB2" callExtension _query); (_result select 1) select 0 So line 16 is (_result select 1) select 0, this is calling a compile function, what column could be missing in this instance?
  20. chaveezy

    ExtDB2 Errors on Server Boot

    Thank you for the reply, those logs are all clean.. extDB2: Version: 70 extDB2: https://github.com/Torndeco/extDB2 extDB2: Windows Version Message: All development for extDB2 is done on a Linux Dedicated Server Message: If you would like to Donate to extDB2 Development Message: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2SUEFTGABTAM2 Message: Also leave a message if there is any particular feature you would like to see added. Message: Thanks for all the people that have donated. Message: Torndeco: 20/02/15 extDB2: Found extdb-conf.ini extDB2: Detected 16 Cores, Setting up 6 Worker Threads [19:34:33:566782 --7:00] [Thread 9564] extDB2: Database Type: MySQL [19:34:33:593656 --7:00] [Thread 9564] extDB2: Database Session Pool Started [19:34:33:613707 --7:00] [Thread 9564] extDB2: SQL_CUSTOM_V2: Loading Template Filename: D:\TCAFiles\Users\richards\158\@ExileServer\extDB\sql_custom_v2\exile.ini [19:34:33:613965 --7:00] [Thread 9564] extDB2: SQL_CUSTOM_V2: Version 12 Detected, Latest Version 12 Available
  21. chaveezy

    Sell Crates at Wastedump [R3F required]

    Was there ever a solution for this? I'm getting this error as well with only certain crates...
  22. chaveezy

    strange battleye filter issue

    Instead of trying to add a *, just use the following in your remoteexec.txt (line 3), !"exileserver_system_network_dispatchincomingmessage" This accepts variables with the exception included.
  23. chaveezy

    BE Script Restriction #3

    Any fix for this issue?
  24. chaveezy

    Exile 1.0.4 Bugs Megathread !! READ THE RULES!!

    So I made this network request fix and I still got the same error on storing the vehicle then i couldn't retrieve the vehicle at all. My question is that if you're checking the territory ID and all my DB entries say "NULL", won't that throw an error? Shouldn't this be adding the territory ID upon purchasing/obtaining the vehicle? Regardless, this fix didn't work for me, more errors (can't retrieve vehicle).. Reverted back to the original. Any news on this fix?
  25. chaveezy

    CUP Items not showing

    Solved how?