Jump to content

xoo

Member
  • Content Count

    51
  • Joined

  • Last visited

  • Medals

  • Medals

Community Reputation

10 Good

About xoo

  • Rank
    Lance Corporal

core_pfieldgroups_3

  • Occupation
    Freelancer

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Ok for the APERS... so we need to choose if we want some dummy APERS and APERS tripwire mines or not !! For bounding who disappear and don't detonate it was my bad, another script was in fault
  2. I don't understand how the population is calculated and how to lower the population... 90 civilians in Kavala and a few AI in there and the framerate is under 20 FPS... without the civilians: 45-55 FPS I don't want to exclude kavala in my OP Could you give me any tips ? i wanna lower the population at night and have less civilians in big cities I just need some tips to modify the script by my own !
  3. Another issue: sometimes APERS bounding mines disappear when u've already placed another one EDIT: another script was bugged
  4. Thx for the update ! I found another issue when disarming a demo charge armed with remote option: 1:53:59 Error in expression < { _x set [0, objNull]; [_control] call vip_fnc_mines_menuRemote; }; } forEach v> 1:53:59 Error position: <vip_fnc_mines_menuRemote; }; } forEach v> 1:53:59 Error Undefined variable in expression: vip_fnc_mines_menuremote 1:53:59 File mpmissions\__CUR_MP.Altis\vip_sms\fn\fn_cl_menuAction.sqf, line 50 EDIT: two more issues: APERS and APERS bounding mines won't detonate. APERS only bip and bounding do nothing. another script was bugged
  5. Works well, even on dedicated (windows) they are doing some great evasive maneuvers when they are under fire... but units are in god mode !! :confused:
  6. xoo

    Unit Markers

    Quiksilver Multiplayer Basic Icons works for AI and players but don't have the same features
  7. tested on A3 vanilla: nul = [_target,1,150,[true,false],[true,false,false],false,[10,0],[10,0],"default",nil,nil,_id] execVM "LV\militarize.sqf"; armor spawned: Slammer, Panther, Cheetah, Marshall
  8. You probably said that because i trans-typed _target... but _target is only my marker name (string) "cm_to_therisa" In this case it's used to get the position for creating the logic. cm_to_therisa is a marker placed in the editor and a simple test.sqf with missionNamespace getVariable ["cm_to_therisa", objNull] always returns objNull I'm totally unable to get an object name from a string and this turn me mad. EDIT ------------------------------------------- problem solved with: case "FH": { _logicCenter = createCenter sideLogic; _logicGroup = createGroup _logicCenter; _targetLogic = _logicGroup createUnit ["LOGIC", (getMarkerPos _target), [], 0, "NONE"]; diag_log format["DEBUG#FH | LOGIC: %1 - LPOS: %2 - TPOS: %3 - target: %4",_targetLogic,(str getPos _targetLogic),(str getMarkerPos _target),_target]; nul = [_targetLogic,2,true,2,[10,20],6,"default",nil,nil,_id] execVM "LV\fillHouse.sqf"; }; 22:53:35 "DEBUG#FH | LOGIC: L Charlie 2-1:1 - LPOS: [16073.3,16995.1,0] - TPOS: [16073.3,16995.1,0] - target: cm_mi_telos" But fillhouse units wont spawn !?
  9. The logic have been created... it's missionNamespace getVariable which don't work, it always returns objNull :mad: 10:21:03 "DEBUG#FH | LOGIC: L Charlie 2-1:1 - LPOS: [0.46875,0.46875,0] - TPOS: [0,0,0] - targetObject: <NULL-object> - target: cm_to_therisa" i don't understand why missionNamespace getVariable ["cm_to_therisa", objNull] don't give me: cm_to_therisa
  10. is there any way to generate game logic with script in order to call fillhouse dynamically ? my last try: //_target -> string with the marker name _targetObject = missionNamespace getVariable [_target, objNull]; _logicCenter = createCenter sideLogic; _logicGroup = createGroup _logicCenter; _target = _logicGroup createUnit ["Logic", (getPos _targetObject), [], 0, "NONE"]; nul = [_target,2,true,2,[10,20],100,[0.3,0.4,0.6,0.4,0.4,0.7,1,0.6,1,0.6],nil,nil,_id] execVM "LV\fillHouse.sqf"; with no success
  11. i hope this sync client and server tasks, cause the tasks are created on server side. thx
  12. Hello, in my mission a single marker can have many missions... for example: a conquest task and just after, a defend task... and later an assassination mission etc etc I tried SHK_Taskmaster and FHQ TaskTracker but with both i can't remove the tasks (always on map and in tasklist). Only update tasks. In my mission the tasks are created dynamically, in one hour more than 20 tasks could be created. Damn fucking mess on my map !! Is it possible to apply on each clients removeSimpleTask in order to remove tasks ? Or do i simply forget the idea of using the built-in tasks ?
  13. We might have to re-enable the disabled commands but i don't find any way to to it.
  14. It's some client actions...why do you want it server side !? ------------------------------------------------ Another issue: class CfgRemoteExecCommands disable remote execution of all commands so now a simple ["message","hint",nil,true] call BIS_fnc_MP; is disabled really annoying !!
  15. lol i saw it when trying to fix the error. :D _target is actually therisa... it's a marker. i call your script with a simple function to launch different AI spawns and actions on a specific marker on the map. I just started it today in order to test a few AI scripts, so, for now, it's really simple. The error came when the tangos had an eye on me...
×