Jump to content

jajavst

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About jajavst

  • Rank
    Rookie
  1. The "LAPD Squad Gaming Clan" is mainly Europe based, though we also have members from all over the world. Our main goal in "ARMA 3" is to play together and have fun. We mostly play custom missions, made by one of our clan leaders, as well as the "EVORA" and "FX Liberation" Capture the Island missions. As far as big MODs go, we are usually using vanilla ARMA 3, the UNSUNG Mod or the Global Mobilisation DLC. We still follow our roots as "police roleplaying clan" and sometimes play a special, custom police mission pack. (see below). https://steamcommunity.com/sharedfiles/filedetails/?id=3109831099 Note that, since we are an international roleplaying & gaming clan, with members from different countries, the main language used is English. If the above peaked your interest and if you love role-playing, the GM and the Unsung settings and long to play with a group of serious, mature players, this clan and unit might be what you are looking for. How to join? All you need to do is visit the 'LAPD Squad Gaming' Discord channel at https://discord.gg/h2XXK9dsrP" and enjoy your stay! Clan rules and regulations The following list of mandatory rules and official clan regulations has to be followed at all times by our members: be at least 18+ years old and display a mature, respectful behaviour towards clan members and other players have at least a basic understanding of the English language (as this is the main language we use to communicate with one another) be friendly to all clan members as well as all other players and clans (even if you loose badly) be willing follow clan regulations and directions given by NCOs and officers while playing grouped with members, especially in RP situations absolutely no obnoxious or abusive behaviour (aka griefing) of any kind towards members, other players or clans Links LAPD Squad Gaming Clan - Discord: https://discord.gg/h2XXK9dsrP Additional information "LAPD Squad" has its roots in the game "APB Reloaded", where it has been founded as a "police roleplying clan" back in the year 2014 by Deckard. Our clan's "LAPD" tag stems from that time, as we used customized Los Angeles Police Department vehicles, uniforms and gear. Having a microphone is NOT needed to play with us, since we prefer good old text messages.
  2. thank you very much!! It worked in the editor so I think it will also work when I test it on the server I paste the code below. to call the truck this addaction ["<t color='#ff0000'>call towtruck</t>", { [towtruck, getPosATL MGI157] remoteExec ["doMove", towtruck]; }, [],1,false,true,"","_this distance _target < 2"]; to return the truck this addaction ["<t color='#ff0000'>dismiss towtruck</t>", { [towtruck, getMarkerPos "towtruck west"] remoteExec ["doMove", towtruck]; }, [],1,false,true,"","_this distance _target < 2"];
  3. Hi everyone, I am making a MP police mission to play on a server and I want to be able to call a tow truck. I have this code to call the tow truck with a doMove order and it works in SP but not in MP. this addaction ["<t color='#ff0000'>call towtruck</t>", { towtruck doMove getPosATL MGI157; }, [],1,false,true,"","_this distance _target < 2"]; // MGI157 is the name of the car I called the tow truck from I have this code to return the tow truck to the starting location and it also doesn't work in MP but it does work in SP. this addaction ["<t color='#ff0000'>dismiss towtruck</t>", { towtruck doMove (getMarkerPos "towtruck west"); }, [],1,false,true,"","_this distance _target < 2"]; I tried to make code with remoteExec but it didn't work. To call the truck: this addaction ["<t color='#ff0000'>call towtruck</t>", { [towtruck, [getPosATL MGI157]] remoteExec ["doMove"]; }, [],1,false,true,"","_this distance _target < 2"]; //does not work To return the truck: this addaction ["<t color='#ff0000'>dismiss towtruck</t>", { [towtruck, [getMarkerPos "towtruck west"]] remoteExec ["doMove"]; }, [],1,false,true,"","_this distance _target < 2"]; //does not work Does someone know a way to make it work with remoteExec?
×