Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

Vigil Vindex

Member
  • Content Count

    373
  • Joined

  • Last visited

  • Medals

Everything posted by Vigil Vindex

  1. Vigil Vindex

    ARMA 3 - TrueSky Weather, Effects

    I have a feeling this is not being enabled due to the performance hit it would cause while other areas are still being worked on to improve performance. Similar to how the TOH flight model was removed because it would cause a 10fps hit and would bring averages down to unplayable levels. I think most people are lucky to get 30fps in an active situation.
  2. Vigil Vindex

    Basic Income, a new human right

    I find the responses rather defeatist and embarrassing as a human being, some people think we are doomed no matter what we do, that human reproduction is a danger that can end our world, so are happy to let people live in poverty as a means to population reduction. I find that a despicable position to hold. The whole history of life is example after example of life beating the odds, overcoming the challenges that nature presents us. How anyone can think anything is impossible because we can't afford to is delusional. Economics is an abstract notion, created by us, our own self imposed limitation. The materials are in the ground, we just need to use them, and stop claiming ownership of them and trying to peddle them to each other. Simple as that. As for population explosion, there is a whole universe full of planets out there for us to colonize. If we stopped playing the money game we could actually start to seriously work towards colonies on other planets, but just now we can't "afford" it. Part time moralists are happy to slate the poor jobless as "lazy" while crying about protecting old age pensioners, that is part time ethics, bitter people with a chip on their shoulder because they have to pay taxes, which is also a despicable and ignorant attitude. Nobody wants to live an idle and boring life, we all have skills and talents to share, we just need an equal opportunity to develop those skills and talents. And this system just doesn't cut it. No amount of excuses and rationalising will change the facts.
  3. I also find it hard to understand why weapon resting isn't in the game yet. When some of the guns have bipods clearly modelled, it does make you wonder why it hasn't been done.
  4. I think the possibility of legal action from using other peoples intellectual property drove this decision. It would be nice to have real names, but ultimately it's adds little to the overall experience, and the potential resources this would take up in the event of legal action just isn't worth the effort.
  5. Vigil Vindex

    Performance problems

    I too think there is much work to be done before we get a game up to the standards of A2/OA, but I accept that this is no easy task, and I am happy to wait until things get polished. Broken is a bit of an exaggeration I think.
  6. Vigil Vindex

    Basic Income, a new human right

    Capitalism isn't feasible. Over 7 billion people on planet earth. Does everyone honestly think there can be jobs for everyone? It's never going to happen, technology won't let us be so inefficient.
  7. I find it interesting that the majority seem to have 8GB ram and Quad core CPU...
  8. I think running a dedicated server is more complex and shouldn't be considered the same as trying to do something within the client. Search your steam folder and copy the mission from there, simple as that.
  9. Apart from the missing addons and dependency management, I am quite happy with the steam workshop integration. I am sure it will only get better in the future.
  10. Vigil Vindex

    Enemy occupation system (eos)

    if (isServer) then { if ((isNil ("server"))) then { private["_game_logic_center","_game_logic_group"]; _game_logic_center = createCenter sideLogic; _game_logic_group = createGroup _game_logic_center; server = _game_logic_group createUnit ["LOGIC",[0,0,0],[],0,"NONE"]; publicVariable "server"; }; };
  11. I have been trying to make parameters for this script and thought I would share them here to see if there is any feedback on the best way to define them. Params: class core_time_switch { title = "Time Sync Settings:"; values[] = {0,1}; texts[] = {"Disabled","Enabled"}; default = 1; }; class core_time_skip_time { title = "Time Sync Settings - Day Cycle Time To Skip:"; values[] = {1,10,20,30}; texts[] = {"1 Minute","10 Minutes","20 Minutes","30 Minutes"}; default = 1; }; class core_time_method { title = "Time Sync Settings - Method:"; values[] = {0,1}; texts[] = {"SkipTime","SetDate"}; default = 1; }; class core_time_sync_interval { title = "Time Sync Settings - Sync Interval:"; values[] = {1,10,20,30}; texts[] = {"1 Minute","10 Minutes","20 Minutes","30 Minutes"}; default = 10; }; class core_time_skip_interval { title = "Time Sync Settings - Skip Interval:"; values[] = {1,10,20,30}; texts[] = {"1 Minute","10 Minutes","20 Minutes","30 Minutes"}; default = 1; }; class core_time_night_cycle { title = "Time Sync Settings - Custom Night Cycle:"; values[] = {0,1}; texts[] = {"Disabled","Enabled"}; default = 0; }; class core_time_night_cycle_skip_time { title = "Time Sync Settings - Custom Night Cycle Time To Skip:"; values[] = {1,10,20,30}; texts[] = {"1 Minute","10 Minutes","20 Minutes","30 Minutes"}; default = 1; }; Init: if (core_time_method == 1) then { if (core_time_night_cycle == 1) then { [core_time_skip_time,true,core_time_sync_interval,core_time_skip_interval,true,core_time_night_cycle_skip_time] execFSM "core_time.fsm"; }else{ [core_time_skip_time,true,core_time_sync_interval,core_time_skip_interval,false,core_time_night_cycle_skip_time] execFSM "core_time.fsm"; }; }else{ if (core_time_night_cycle == 1) then { [core_time_skip_time,false,core_time_sync_interval,core_time_skip_interval,true,core_time_night_cycle_skip_time] execFSM "core_time.fsm"; }else{ [core_time_skip_time,false,core_time_sync_interval,core_time_skip_interval,false,core_time_night_cycle_skip_time] execFSM "core_time.fsm"; }; };
  12. An Arma voyeurism script, I like it! ;)
  13. I think the smoke effect particles going through the terrain when the wind is blowing the smoke down to the ground is the problem.
  14. Vigil Vindex

    =BTC= Revive

    Could the spectator mode be activated when you are needing revived as well as when your lifes run out?
  15. Vigil Vindex

    Low CPU utilization & Low FPS

    HC is a poor solution until it is easier to use, and is properly implemented and documented.
  16. Hello everyone, I have been trying out all the cool scripts the community has made. While doing this I have found that I am spending a lot of time rearranging files and folders and searching through scripts to make sure they are all pointing to the right place. Since I am sure I am not the only one doing this I thought I would share what I have been doing and see if we can get some ideas on what is the best way to organise scripts so they can all work together in a useful way. I have tried to keep it simple, I have taken the way MSO handles modules and used the code to get mission parameters as variables so I can do some switches for turning scripts on and off from the mission parameters. It's not original but I think it's something that could be put to good use. By choosing to place single file self contained scripts in the "scripts" folder, and placing more complicated scripts that have multiple files into their own folder within a folder called "modules". With this folder structure in place it is relatively easy to hook things together. Perhaps it could be expanded upon to include other best practices the community are using. It looks something like this: mission_name.map_name\config.conf #include <modules\modules.conf> class Params { #include <params.conf> }; mission_name.map_name\description.ext #include <config.conf> mission_name.map_name\init.sqf #include <modules\modules.conf> call compile preprocessfilelinenumbers "scripts\get_params.sqf"; #ifdef mod_name if ((mod_name_switch) == 1) then { call compile preprocessfilelinenumbers "modules\mod_name\init.sqf"; }; #endif mission_name.map_name\params.conf #ifdef mod_name #include <modules\mod_name\params.conf> #endif mission_name.map_name\modules\modules.conf #define mod_name mission_name.map_name\modules\mod_name\params.conf class mod_name_switch { title = "Mod Name Switch:"; values[] = {0,1}; texts[] = {"Disabled","Enabled"}; default = 1; }; mission_name.map_name\scripts\get_params.sqf for [ {_i = 0}, {_i < count(paramsArray)}, {_i = _i + 1} ] do { call compile format [ "%1 = %2", (configName ((missionConfigFile >> "Params") select _i)), (paramsArray select _i) ]; }; Anyways, I thought I would make a thread and see what people think.
  17. Vigil Vindex

    General Discussion (dev branch)

    I noticed this too, thought it was something to do with where I was standing, but it appears to happen everywhere when you are in the stance below crouch.
  18. Vigil Vindex

    Enemy occupation system (eos)

    Is it possible to add a delay on despawning zones? I played with EOS and BTC Revive and noticed that upon dying the AI instantly despawn, it would be useful if it was possible to specify a delay to help prevent those types of situations. Any ideas?
  19. That black gimp mask looks sweet!
  20. Vigil Vindex

    Volumetric clouds in ARMA 3?

    I really do hope we see the lightning and snow from this in the game at some point.
  21. Fact of the matter is steam has massive funds and infrastructure, if we can leverage any of those resources to our advantage then we should.
  22. Vigil Vindex

    Underwater patrol script?

    I've ran into this problem too, not sure what will work or if it will be fixed with an update to the AI.
  23. Vigil Vindex

    Enemy occupation system (eos)

    Just tried it out tonight, got it working perfectly, loving it so far! Many thanks BangaBob!
  24. Vigil Vindex

    ARMA III & Steam WORKSHOP

    I wonder if it might be useful to contact Valve regarding the dependency issue, it must be something they are aware of that needs addressing within SWS.
  25. Vigil Vindex

    ARMA III & Steam WORKSHOP

    In regards to dependency management, I don't know what SWS can do or cant do, but I know it can be done outwith SWS relatively easily. As I said earlier something along the lines of npmjs.org would be great, a place to register mods and such, supply a url and version number and then arma can parse that registry for the relevant stuff when it is specified within the mission.
×