Jump to content

fortun

Member
  • Content Count

    177
  • Joined

  • Last visited

  • Medals

Everything posted by fortun

  1. Seems like they added a module to do Radio chat now. What i've done is to create a trigger, and then sync it to the Radio Chat, so it starts when im in the trigger area. Problem is that i want another player to "Text the message" rather than the one reaches the trigger first. Right now it says "Alpha 1-1 (My name): Hi, this is the text" but i want it for the mission to be something like "Commander: Hi, this is the name i want to be displayed instead". Any ideas?
  2. Can i somehow disable the AI to use Prone? I know about this command loon1 setUnitPos "UP" But then they will stand all the time, i want them still to be able to crouch. Just disable the prone for the AI.
  3. Is this possible? Want to link to my Workshop in my briefing, so when i click on it i will be transported to my workshops homepage. However, is this even possible to do? Wants this because i want to tell player to go there to get the newest update of a mission.
  4. So, im working on a old mission i have and are trying to make it playable again. However, before i could call my UAV how many times i wanted with this script: camUseNVG true; // set side colors private ["_colorWest", "_colorEast"]; _colorWest = WEST call BIS_fnc_sideColor; _colorEast = EAST call BIS_fnc_sideColor; // set transparency for colors {_x set [3, 0.73]} forEach [_colorWest, _colorEast]; true SetCamUseTi 1; [ markerPos "obj2", // Target position (replace MARKERNAME) "Suspect village, look for hostages", // SITREP text 700, // 400m altitude 200, // 200m radius 0, // 0 degrees viewing angle 0, // Clockwise movement [ // add Icon at player's position ["\a3\ui_f\data\map\markers\nato\b_inf.paa", _colorWest, getPos Tim, 1, 1, 0, "Jack", 0], ["\a3\ui_f\data\map\markers\nato\b_inf.paa", _colorWest, getPos Jallert, 1, 1, 0, "Sawyer", 0], // add Icon at enemy/target position ["\a3\ui_f\data\map\markers\nato\o_inf.paa", _colorEast, markerPos "Obj2", 1, 1, 0, "Suspect Village", 0] ] ] call BIS_fnc_establishingShot However, now when i try call it second time, it just results in a black screen that won't dissappear. Is there any fix to that?
  5. Still no one? I can't finnish and repack the mission until i get a fix for it. I have searched everywhere for it. Please, anyone know whats wrong?
  6. Anyone that can help? Question is quite simple. How can i call "intro uav" multiple times? Second time always gets to a black screen
  7. Okey, so i noticed when i opened a old mission that objects that i had placed like wrecks and things didn't fall anymore, they just stuck in the air. So are props like wrecks not simulated anymore when placed in editor? They are just stuck in the air not falling, before they were falling down on the ground but something seems to have changed
  8. Probably, the mission that im editing and have this error with is long before the EDEN update
  9. Thanks for the answers guys! I will soon test your latest reply. The problem is that i had alot of objects, like heli wrecks, apc wreck and towler wreck that i had above water level, and i wanted it to fall down to the bottom simulated, as it was before. Now they're just floating in the air where they were placed. Not using physics just floating in the middle of the air not falling into the bottom of the water. I guess they must have been made simple objects as you said.
  10. Hello! Working on a really good idea i got yesterday. Problem is in this mission, that i want to disable the ability for me and my group/m8s to loot other players. Just use the things they have and use the things they find in boxes. But can't find anything about how to make that work. Anyone? In short terms, How to disable squad/group to loot killed AI players?
  11. Can someone explain how to make it really work? I figured out how to make it follow a unit, just Sync the "Livefeed - Init" to You, then sync "Livefeed - Source" to the unit you want to follow and to your "Livefeed - Init" But what is the Livefeed Target all about? And how do i start it and shut it down at some point?
  12. Anyone knows a script that works for a Mission? I tested this http://www.armaholic.com/forums.php?m=posts&q=21300 But getting error on line 67, unknown variable hcam_cam when closing the camera - alt + *. So anyone that knows another script that can do the same but that works?
  13. I have tried the most things i can find. Looking through Multiplayer framework (At which i don't understand a shit) and trying different things. But how am i able to make a script execute on all clients? This is my Suitcase.sqf deleteVehicle suit; ////This deletes a editor placed suitcase, works fine on both host and client deleteVehicle c2; ////This deletes a Chemlight placed in editor. This however won't delete if Client is the one starting the script. Weird since client can delete the Suitcase? ///// This is FHQ_TT TaskTracker. This needs to be executed serverside, however. If the client is the one opening the script, then nothing will happen But if the Host open it works fine. How to fix? [ west, ["Hidden Task", "Find the hidden suitcase on the wreck (This objective is one of the hidden tasks. There are 3 hidden suitcases, try find them all). Well done!", "Hidden Objective: Find suitcase 1", "", "Succeeded" ] ] call FHQ_TT_addTasks; ["Hidden Task", "succeeded"] call FHQ_TT_setTaskState; This gets executed when aiming at the suitcase via this this addAction ["Take Suitcase","Suitcase.sqf" ,[suit],1,false,true,"","(_target distance _this) < 3"]; Think i may need to use publicvariable somewhere, but how would i do that if it helps? Please anyone, help me.
  14. Thanks, would never figured it out without an example of it! The only thing i get now after this change is (This is in the script aswell) _per = _this select 0; // Person who had the addAction _ldr = _this select 1; // Person who used the addAction _act = _this select 2; // ID of the addAction Now is says _act is zero divisor But has the Id of the action changed then? If i have _unit RemoveAction 0; Then it works perfectly. Why?
  15. Hmm, tested the code this addAction ["Take Suitcase","Suitcase.sqf" ,[suit],1,false,true,"","(_target distance _this) < 3"] call BIS_fnc_MP; Still doesent seems to broadcast it when client uses the action. Don't get any new task. Also, this is the errorcode i get for the chemlight (called c2) when client uses Deletevehicle on it (in the script). However, as i said it works on the Suitcase (called suit in script). Have no freaking idea how it should look like. If its to messy to do i think i skip the whole multiplayer thing..
  16. So i would simply put it like this then? this addAction ["Take Suitcase","Suitcase.sqf" ,[suit],1,false,true,"","(_target distance _this) < 3"] call BIS_fnc_MP; Also, why doesen't them chemlight dissappear but the suitcase? Getting error on it when client execute the script
  17. Hello, doing some mission bug testing. However, is it any command so i can do the same as If (task1complete) then {hint "blabla"} but for another player and not me? Like Player2 If (task1complete) then {hint "blabla"}
  18. Thanks guys. However, when using publicvariables, it seems it doesen't work. If i use publicvariable "task1complete" and then after if (task1complete) then {hint "works"}; I don't get anything.
  19. How would i do it? To go in to the problem a bit more. I have a security check in my mission. From beginning, i have Check1 = true Check2 = true Check3 = true And for every task the players make, it sets it to Check1/2/3 = false If any is of the "Checks" it true in the end of mission, in a trigger it will then kill the players if they has skipped the task/checks.. It seems to work great, unless they stop and use "Save & Exit game" and then resumes it. Then the Checks that have been set to false (to not kill players), will only be made for the Host of the server, not for the other player (Player2. Which then bugs the mission as it kills everyone in the end because Player2 didn't sync the "Checks", only the host.
  20. fortun

    R3F_AiComTarget

    R3f no longer script based? Wanted to integrate it with the server without any needs of the host or clients to run anything but the mission.
  21. Hello. For my mission, im looking for a good Revive script. It seems there are few of the sort i want. I want it to have: *3D marker in game (As BTC Revive) that shows where a injured person is (A3 Wounding system icon doesn't work, also Farooqs doesen't have it). *Support Revive. I don't want any respawn at all in it. (With BTC it seems you can't use without respawn). *Be able to Configure so that you can revive with FAKs (First aid kit). (Farooqs revive doesn't do this) *Be a working Revive script that isn't full with problems. Have tested as said, Farooq revive (Does not support Icon/3d marker in game and also can't use FAKs to revive). BTC Revive (Needs to have respawn enabled which is a dealbreaker for me, otherwise it would be perfect!) and A3 Wounding system (Bugs in it aswell as doesen't support Ingame/3d marker/icon). Anyone that knows of a stable revive that has those mentioned above? I don't asks of much but does not seems like it is any available that does this things. BTC would be perfect if it weren't for Respawn dependency
  22. Seems to be a bug in this script. When doing a simple restart while in-game (Press restart button) to reload the game, it end up in a error. Tested in both the example mission (untouched and changed to disable respawn), same problem. Also tested in my own, same problem. (Only using CBA + JSRS 2.1 addon) http://i.imgur.com/GhGomYo.jpg Seems also like you get an error when changing to 2 in this command If i have "G_Unit_Tag_Display = 2;" then i get an error "[bis_Fnc_mpexec] function g_fnc_enablesimulation does not exist"
  23. Thanks! Used it alot in arma 2. However. Doesen't seem to have a 3d ingame icon as BTC. Only a marker on map. I have tested with BTC, many different settings, can't get it to work. When your "unconscious" time goes out, you simply respawn.
  24. Getting a error when loading mission with this: decription.ext, Line 96: .RscTitles: Member already defined. How to fix? * Seems to be conflict with Tajins Helmetcam. Hcam.hpp. Seems like it uses the same "class RscTitles" in beginning. How to fix? Think i got it working after combining it. However. I get no 3d tag, also, the "heal" icon you get when aiming at your player is the original icon, and if you press it, then you just do a normal heal. The player is still needing to get one more First aid kit before he can do the "A3 wounding system" heal. Is this right? The only marker is on the map that i get.
×