Jump to content

Kava_Brasil

Member
  • Content Count

    8
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About Kava_Brasil

  • Rank
    Private
  1. Hi EO, theres is any version for Gulfcoast Islands? https://steamcommunity.com/sharedfiles/filedetails/?id=1617004814 thanks
  2. Hi, I'm trying to use this program ( https://github.com/realbadidas/Arma-Remote-Code-Executor#how-to-install ) but I couldn't. I just connected to the server, but I can't run any scripts. Can you put some simple tutorial with examples to run this program correctly? Like: curl -X POST "http://192.168.0.3:6601/send" -d "user=XXX" -d "pass=XXX" -d "execute=nul = [this] execVM "functions\Missions\fn_missionRequest.sqf"" Server LOG: 22:25:30 "New execution! | RES: nul" 22:25:30 Error in expression <nul> 22:25:30 Error position: <nul> 22:25:30 Error Undefined variable in expression: nul Thank you so much!
  3. Hi Maff, thank you for the help. It still does not work. Maybe it's because I'm using ACE and ACHILLES mod?!
  4. Is there anything that I may be doing wrong? Any idea ? Thank you.
  5. Hi pierremgi, i apreciate for the help, but your script isnt working =( Image error: https://imgur.com/pUryHh9
  6. Hi, i got a script below (by killzone_kid), but when civilian killed by EAST or suicide by falling, then this script "bug". How can i do it if only WEST units killed a civilian? Thank you! On 5/28/2016 at 7:32 AM, killzone_kid said: Try this, put it in init.sqf in mission directory if (isServer) then { FNH_civilians_killed = 0; addMissionEventHandler ["EntityKilled", { _killed = _this select 0; if (side group _killed == civilian) then { FNH_civilians_killed = FNH_civilians_killed + 1; if (FNH_civilians_killed > 2) then { hint "XXXXXXXX"; tank enableAI "MOVE"; }; }; }]; };
  7. Kava_Brasil

    Number of Civs Killed > 5 end mission

    Hi killzone_kid, your code works great. How do I run this code only if "WEST" units kill civilian ? Thank you 😃
×