Jump to content

webbie.

Member
  • Content Count

    30
  • Joined

  • Last visited

  • Medals

Everything posted by webbie.

  1. webbie.

    Ravage

    Hi all, Love the mod. I don't want to flog a dead horse here and I know its been asked a few times but maybe someone has gotten onto a way to do it. Zombies Spawn and Blacklisting works perfect with the exception that the blacklist areas have to be quite large to stop zombies from roaming into a safe zone. I have Safe Zones setup to stop AI from entering the safe areas but regardless of whether its on delete or retreat they still come to the area. My module is setup to no side owns the area because its only for players, Ithink I have that reasoning right. Is anyone else experiencing an issue with them either deleting or retreating? I do see it work from time to time so I suspect the repeatable trigger may need to be on a loop or timer to run every 30 secs or whatever so it resets the trigger. Thanks in advance
  2. Hi all, This may or may not have been answered. I did have a good look but couldnt find what I was looking for. Is their a fix or even a reason why the inventory in arma moves around when right clicking to move items around. eg. click an item in backpack to move to crate, click same item and it moves down the list. Thx in advance.
  3. webbie.

    Player Proximity Scan

    Thank You and apologies my thinking was that I didnt want it to be running the checks constantly so I thought this method would be better suited so players could run it as needed. Thank you I do appreciate the time you've given.
  4. Hi all, Im looking for a way to add a player proximity scan to my pvp server. Similiar thing has been done in exile using an XM8. all i want to ba able to do is see a hint when you activate the scan that counts players in within a given range. Thanks in advance for any assistance offered.
  5. webbie.

    Player Proximity Scan

    1 more question Do you think rather than being a toggle it could be an action you actually select and it runs it for say 5 secs and scans once everytime you select it?
  6. webbie.

    Player Proximity Scan

    ah sorry nevermind "player" having a bit of brainfart, thanks again
  7. webbie.

    Player Proximity Scan

    Im obviously doing something wrong, Ive added it to the initplayerlocal, The script is running but its looking for a variable to apply it too eg. GOM_fnc_scan = { params [["_scanObject",objNull],["_scanRadius",15],["_debug",false]]; if (_debug) then {systemChat "Starting to scan!"}; hint "Starting to scan!"; sleep 1; waitUntil { _nearPlayers = _scanObject nearEntities _scanRadius select {isPlayer _x}; hintsilent format ["Players detected:\n%1",count _nearPlayers]; !(_scanObject getVariable ["GOM_fnc_scanActive",true]) }; if (_debug) then {systemChat "Stopped scanning!"}; hint "Stopped scanning!"; }; //add scan action to object ???What goes here??? addAction ["Scan for Players",{ params ["_object","_caller","_ID"]; if (_object getVariable ["GOM_fnc_scanActive",false]) exitWith { _object setUserActionText [_ID,"Scan for Players"]; _object setVariable ["GOM_fnc_scanActive",false,true]; }; _object setUserActionText [_ID,"Stop scanning for Players"]; _object setVariable ["GOM_fnc_scanActive",true,true]; _scan = [_object,15] spawn GOM_fnc_scan; },[],0,true,true,"","_this isEqualTo vehicle _this",5];
  8. webbie.

    Player Proximity Scan

    ah nevermind I see what you've done their, perfect, Thank you so much for your assistance!
  9. webbie.

    Player Proximity Scan

    So I want to add the function to all players, obviously I cant call all of them test so is their a fuction to add that to allplayers globally?
  10. webbie.

    Player Proximity Scan

    so thinking on it I thought maybe it could run all the time but how could I do it so the variable would apply to all players
  11. webbie.

    Player Proximity Scan

    @grumpyoldman is their something I could do here //call function in object init field _scan = [test,15] spawn GOM_fnc_scan; to just allow a addaction? so basically it runs only when selected
  12. webbie.

    Player Proximity Scan

    Fantastic @Grumpy Old Man Ill give it a try now. Much appreciated!
  13. Hi all, so I've been involved in the arma community coming up to 2 years and 2000 hours of which half would be in development and who knows how much scripting. I have run a variety of servers including my current exile server , been apart of clans and units, created and uploaded missions, And would consider myself a moderate to advanced user and developer. My question is now what? I love arma both playing and developing. I've struggled to find an arma community that doesn't have a high and mighty mentality so I just plod along doing my own thing. Any thoughts appreciated. Im an aussie and would really like to join in an aussie community and enjoy milsim games but the whole high mighty thing is a bit shite. I do play with the yanks a fair bit but after quiks server shut down it became less of a thing.
  14. Because I just want this damn thing to work with the direction did you just put _direction = random 360; in place of _direction = [_tempPos, _connectedRoad] call BIS_fnc_DirTo; Also im trying to implement this on malden however all the units are spawning on the roads only this worked really well in tanoa so im unsure of what part needs to be changed.
  15. Credit on the server for you Larrow
  16. Hi, I have searched far and wide for an answer but have gotten nowhere any help appreciated. Heres the issue. My MP mission has MHQ bikes that work perfect however when they are destroyed they lose the virtual arsenal. I have tried various methods to fix it hoever nothing seems to be working even when no errors are displayed. Ive tried via init and add actions also by following the guidelines on arsenal from BIS. Ive also tried doing via expression field in the vehicle respawn. Thanks.
  17. Thank You @Larrow That did the trick. Cant be thankful enough! Dont know anything about the support modules at all do you?
  18. really I didnt think case made a difference, ok, well thats good to know thank you for your help ill give it a go. Thank you for your help its appreciated
  19. @Larrow I added this to the expression line and while arsenal does display the arsenal itself isnt loading. Perhaps I need to add arsenal to init line? EDIT: Nope, tried that still no joy, arsenal is displaying though so thats progress EDIT: Is params[ "_vehicle" ]; in the expression line or am i actually using that as a param on the vehicle?
  20. Thank you @Larrow @Jigsor @NikanderI'll give it a try, I don't think I've attempted with the add action. You do good work here thank you kindly. I did actually try your implementation jigsor but my scripting is still fairly noobish.
  21. Hi all, Simple question is can support provider/requester modules be used with a dedicated server? Here is my problem. I set everything up the way it should be and I test it in multiplayer and it works great hwoever as soon as I put the file on the server it doesnt show up at all. If anyone has any further suggestion even better but im just checking as im just chasing my own tail at the moment. Thanks for any help that can be provided.
  22. Im also experiencing this, they are actually running at me when this occurs. Im also using BI revive. Im using it in on COS as well and everything works fine but it does throw that error up.
  23. Id really love to know how to add a custom sound to this, like i know some of the basics like adding the cfgsounds etc. (i think ive got that part right) but Id like a sound ive recorded to play when they approach just via the playsound functionality. any help appreciated. can i add something like playsound into this section? if (_is_vec) then { _boom = createVehicle ["Bo_GBU12_LGB", getPos _bomber, [], 0, "CAN_COLLIDE"]; } else { _boom = createVehicle ["R_60mm_HE", getPos _bomber, [], 0, "CAN_COLLIDE"]; }; deleteVehicle _bomber;
  24. Love the script thank yous so much made the process very easy to understand. I truly appreciate that. Havent found any issues with it. was alot of fun setting it to 100 and having every single civ run at me at once lol.
  25. So heres what I found: Vectoring has largely been tied in with the throttle, you cant just crank the throttle up anymore and expect a smooth take off, instead you have to allow the engines to spin up first then pull back on your stick to allow it to centre the weight landing is a pain in the ass again largely tied in with throttle, almost easier to land on the runway at speed. It can be done but it will take alot of practise It will basically just take a bit of time to get used to the throttle and you have to watch it like a hawk because your airspeed gives zero indication of your actual momentum. Hope that helps, personally id rather the old flight model as well.
×