El Rabito

Member
  • Content count

    148
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by El Rabito

  1. Not really, it's much easier to find anything here than on discord. But i guess the peak is over anyways and Arma 3 / Exile is going to die sooner or later.
  2. El Rabito

    Enhanced Movement Mod in Exile (Working!)

    Yea it can happen when you climb on certain objects, it's a known EM bug. Relog and you can move normally.....
  3. El Rabito

    VG pop-tab's "dupe" fix

    Small fix for VG poptab dupe bug. Problem: If you store a Vehicle with pop-tabs inside, the vehicle is saved with the pop-tabs and in addition they are dropped on the ground. So every time you store your vehicle you double the amount of pop-tabs. To fix the problem i just removed the possibility to store pop-tabs in vehicles and adjusted the "Warning message". ######> Installation ## #-> Add this two files to your mission file and your CfgExileCustomCode part of the config.cpp. #-> Download (GoogleDrive) # ######> CfgExileCustomCode class CfgExileCustomCode { //VG Poptab dupe fix ExileClient_gui_virtualGarageDialog_event_onConfirmButtonClicked = "custom\fix\ExileClient_gui_virtualGarageDialog_event_onConfirmButtonClicked.sqf"; ExileServer_object_vehicle_network_storeVehicleRequest = "custom\fix\ExileServer_object_vehicle_network_storeVehicleRequest.sqf" };
  4. El Rabito

    VG pop-tab's "dupe" fix

    As long as you have the right path linked in the CfgExileCustomCode it doesn't matter. I would make a folder, it's tidier.
  5. El Rabito

    [SOLVED] Safe Loot Explosion

    That's a bug ! It confuses container ID somehow and he got the stuff from another player owned safe/container. Edit: You have container/storage with 1 Million poptab storage ? If not it can't be that bug and he was cheating.
  6. Since there are a couple of Exploits with Auto-run and avoiding getting scanned with thermal scanners by re-placing doors/gates/windows etc. or using them to steal a safe after you hacked it, i tried my best to fix a few things. You just need to create these custom-code overrides and that's it. ExileClient_system_autoRun_canAutoRun.sqf Lock/Thermalscanner fix files (GoogleDrive) class CfgExileCustomCode { //Auto-run-Fix ExileClient_system_autoRun_canAutoRun = "custom\fix\ExileClient_system_autoRun_canAutoRun.sqf"; //Lock/Thermalscanner fix ExileServer_object_construction_network_addLockRequest = "custom\fix\ExileServer_object_construction_network_addLockRequest.sqf"; ExileServer_object_lock_network_hackLockRequest = "custom\fix\ExileServer_object_lock_network_hackLockRequest.sqf"; ExileServer_object_lock_network_setPin = "custom\fix\ExileServer_object_lock_network_setPin.sqf" }; If you have different overrides for this files you can do this #### Fix for re-placing objects with locks to avoid getting scanned. (Door and safes) ### ## File: ExileServer_object_lock_network_setPin.sqf # Line 22 add _object setVariable ["ExileLastLockToggleAt", time]; ## File:ExileServer_object_construction_network_addLockRequest.sqf # Line 60 add _door setVariable ["ExileLastLockToggleAt", time]; #### Fix for hacking safes and then scan it to get the code and pack it (stupid imho). ### File: ExileServer_object_lock_network_hackLockRequest.sqf # Find and remove (default line 42) _object setVariable ["ExileLastLockToggleAt", time]; For the Auto-run fixes: At the current state it blocks auto-run in territories (VG + auto-run exploit) and spamming auto-run to shorten certain animations like getting run over and the healing animations. You can simply add more animations to restrict, easiest way is getting the names by putting this into your Infistar debug console. The name of the animation in the ExileClient_system_autoRun_canAutoRun.sqf must be in lowercase! animationstate player;
  7. El Rabito

    No Damage Einstellung (Solved)

    /* This whole handleDamage does not effect admins! */ enable = "true"; Sollte daran liegen
  8. El Rabito

    Flag Hacking 1.0.4

    I tested it on my test server with a DB from our live server and it worked without a problem.
  9. El Rabito

    Flag Hacking 1.0.4

    Sharing is caring, thank you very much guys. One small error for VG hacking without ExAd, the folder ServerSide should be called ServerFiles.
  10. Now it works Never had this problem before, but thx for the info
  11. El Rabito

    ebm items being used as storage ( need help)

    Everything already part of the EBM installation (If done properly) config.cpp class CfgInteractionMenus { #include "EBM\menus.hpp" menus.hpp class Cargo40 { targetType = 2; target = "Land_Cargo40_light_green_F"; class Actions { class ScanLock: ExileAbstractAction { title = "Scan Lock"; condition = "('Exile_Item_ThermalScannerPro' in (magazines player)) && !((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 1) && !ExilePlayerInSafezone"; action = "_this call ExileClient_object_lock_scan"; }; // Locks a vehicle class Lock : ExileAbstractAction { title = "Lock"; condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 0)"; action = "true spawn ExileClient_object_lock_toggle"; }; class Unlock : ExileAbstractAction { title = "Unlock"; condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo -1)"; action = "false spawn ExileClient_object_lock_toggle"; }; class SetPinCode : ExileAbstractAction { title = "Set PIN"; condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 0)"; action = "_this spawn ExileClient_object_lock_setPin"; }; class Hotwire: ExileAbstractAction { title = "Hotwire"; condition = "((locked ExileClientInteractionObject) isEqualTo 2) && ((locked ExileClientInteractionObject) != 1)"; action = "['HotwireVehicle', _this select 0] call ExileClient_action_execute"; }; class HackLock: ExileAbstractAction { title = "Hack Lock"; condition = "(getNumber(missionConfigFile >> 'CfgHacking' >> 'enableHacking') isEqualTo 1) && ('Exile_Item_Laptop' in (magazines player)) && ((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo -1) && !ExilePlayerInSafezone"; action = "['HackLock', _this select 0] call ExileClient_action_execute"; }; }; };
  12. Hhmhm not working for me on my live server. I placed a new flag on my test server with the same files and it works. https://gyazo.com/4ca444d5d459a772fea936f5e69a9f3e
  13. El Rabito

    Hopefully someone knows

    If you use DMS you can do this in the config. DMS_PlayerNotificationTypes = [ "dynamicTextRequest", //"standardHintRequest", //"textTilesRequest" "systemChatRequest" //"ExileToasts" ];
  14. El Rabito

    Database Error (Solved)

    GSP autsch ^^ Damit kenne ich mich nicht aus, nur mit Root Servern. Vllt weiß jemand anders hier weiter und vllt auch mal auf englisch fragen ^^
  15. El Rabito

    Surrender

    target = "Exile_Unit_Player"; This is only for other players, i don't think there is an easy way to do this kind of self-interaction. If you have infistar you can just use !surrender command in the chat.
  16. El Rabito

    Database Error (Solved)

    Nochmal, benutze #shutdown anstatt #restart und starte die server exe mit einer .bat neu. Die bat kannst du z.b hier finden ->
  17. El Rabito

    Database Error (Solved)

    Vermutlich ein Syntax Fehler in irgendeinem script/config. Dann gibt er die gleichen Fehlermeldungen aus ;-) Die letzten Änderungen rückgängig machen. Und benutze #shutdown anstatt restart.....
  18. El Rabito

    Arma Update und nichts geht mehr.

    Dann bleibt dir nichts anderes übrig außer auf den fix von Bohemia zu warten ^^
  19. El Rabito

    region lock?

    Just set the ping limit to < 100 and you have your region lock
  20. El Rabito

    Arma Update und nichts geht mehr.

    -mod=@CBA_A3;@ExileMod;curator;kart;heli;mark;expansion;jets;argo;orange;tacops;tank;dlcbundle;dlcbundle2;@Chernarus2035;@CUPCore;@EnhancedMovement;@TRYK;@ExtendedBaseMod;@NIA;@KA;@ExtendedSurvivalPack;@WalkerA2Vehicles;@RyanZombies;@AeoG -servermod=@exileserver;@infiSTAR_Exile;@infiSTAR_TM;@ENIGMA;@ESM
  21. El Rabito

    Arma Update und nichts geht mehr.

    We have no problems ! VerifySignatures set to 2 and no problems so far.
  22. El Rabito

    My friend can't spawn he stuck in the ground

    Run this on your database and let him try again. DELETE FROM `player` WHERE damage = 1
  23. El Rabito

    Random AI/Person glitching into vehicles

    The issue is from RyanZombies. But i never saw this NPC, for me he is always invisible. I just kill all zombies nearby and it stops and i can get into the vehicle again.
  24. El Rabito

    i need to add a zeus in my server.

    No need to for this stuff. Copy mission.sqm into your Arma 3 profiles so you can open it with the Editor. Place the module, configure it, save the mission.sqm and copy it back to your mission .pbo and done.... C:\Users\YOURUSERNAME\Documents\Arma 3 - Other Profiles\YOURPROFILENAME\missions\
  25. El Rabito

    i need to add a zeus in my server.

    Open your mission.sqm with the editor, place the Zeus module adjust the settings and put it back into your mission file.