H

Hansson0728

Member

Last active 7 years ago

  1. 7 years ago
    Fri Jan 13 17:46:19 2017
    H Hansson0728 started the conversation Tasks.

    So how do i go about completing tasks ?

    i got a task to pickup troops, i went there, but hey they didnt enter my veh. and i cant order them to either, should i do it with the commanders tablet ?? also is it possible to change the text size in the tablet, the text is so small i cant read it...

  2. Thu Jan 12 06:44:15 2017
    H Hansson0728 posted in Alive and Scripting.

    Okey, ill use this threads to post some stuff..

    found this function to add objectives to opcom

    //Example:[["ID_Name", Position, Obective size,"MIL",300],["EAST"]] call cjb_addObjectiveToSides;
    
    cjb_addObjectiveToSides = 
    {
    	private["_objectiveParams","_factions","_faction","_opcom","_opcomSide"];
    	_objectiveParams = _this select 0;
    	_factions = _this select 1;
    	{
    		_opcom = _x;
    		{
    			_faction = _x;
    			_opcomSide = [_opcom,"side",""] call ALiVE_fnc_HashGet;
     
    			if( _opcomSide == _faction) then {
    				[_opcom, "addObjective", _objectiveParams] call ALiVE_fnc_OPCOM;
    			};
    		} forEach _factions;
    	} forEach OPCOM_INSTANCES;
    };

    and i figuered this would work in similar fasion (iam not at home so its untestedcode)

    //Example:["ID_Name","SIDE"] call cjb_addObjectiveToSides;
    
    cjb_RemoveObjectiveToSides = 
    {
    	private["_factions","_faction","_opcom","_opcomSide"];
    	_id = _this select 0;
    	_factions = _this select 1;
    	{
    		_opcom = _x;
    		{
    			_faction = _x;
    			_opcomSide = [_opcom,"side",""] call ALiVE_fnc_HashGet;
     
    			if( _opcomSide == _faction) then {
    				[_opcom, "removeObjective", _id] call ALiVE_fnc_OPCOM;
    			};
    		} forEach _factions;
    	} forEach OPCOM_INSTANCES;
    };
  3. Thu Jan 12 06:30:53 2017
    H Hansson0728 started the conversation ALiVE Compositions.

    i cant find ALiVE Compositions in eden editor, what could be wrong??

  4. Thu Jan 12 04:57:00 2017
    H Hansson0728 posted in Alive and Scripting.

    :( well well will give it a go, thanks

  5. Thu Jan 12 04:52:03 2017
    H Hansson0728 started the conversation Alive and Scripting.

    So i have some questions, if anyone can help.

    i found some stuff on the wiki, and i tried looking trough the functions on the Github.

    i can see that you can add objectives to OPCOM. but can i remove objectives from opcom ?
    also i can see that you can Profile new units to AI Profiler, but can i remove virtualised profiles ?

    is there somewhere i can have a look at more alive functions from a scripting perspective ? (ithout roaming trough the functions on github)

  6. Thu Jan 12 03:48:52 2017
    H Hansson0728 posted in SP save.

    Okey, Thanks cool. ill mess around with it some, iam thinking maybe trying to deactivate opcom and and Zones before saving or someting like that and then re virtualise upon reloading. iam not sure, ill get bakck with my results :) maybe maybe some day we will be able to use the complete alive suite offline, like make it avilable but with no support, alot of the Arma forums around has plenty of really clever people and most of them are very helpful so i dont think the alive team would have to deal with the hassles that may come with it.

  7. Wed Jan 11 07:00:06 2017
    H Hansson0728 started the conversation SP save.

    Hi, i was just wondering, i just started playing with Alive, and since i mostly do SP games and alive has a hard time saving persistent Mission (will this still be an issue on 64bit?) are there any modules in particulary that causes problems for SP saving, i was thinking maybe i can at least utilize some elements from live in SP mission making. (i would like to use all of it, looked at NWR for saving tolocal DB without DBserver running, but it is not complete, and it is a bit above me to complete it :( ) the thing is i dont have a stable internet connection at home otherwise it is easy to sign up for an warroom account.. i have one but i can utilize it. anyoone ideas ? like playerstats and stuff is not that imprtant i think, but spawnPos and Opfor movments att stuff would be a good thing to be able to save... i know this has been brought up alot, trust me ive googled everything. but the answers are allways the same, so maybe someone has something new to try out _

  8. Wed Jan 11 04:19:15 2017
    H Hansson0728 joined the forum.