Jump to content

ins3821

Member
  • Content Count

    22
  • Joined

  • Last visited

  • Medals

Everything posted by ins3821

  1. I tried to respawn. But it stops on the loading screen. Does anyone know why? Everyone has a problem. Please help me. I'm using [GHST] EnemyAsault.
  2. _group = group player; _name = name player; format ["[%1] %2.", _group, _name] remoteExec ["systemChat", 0]; it is not working.. plz help
  3. i solved this problem. just reloading mission.
  4. arma 3 cant recognize the teamspeak 3. I've used it well in the past with no problems. i tried with ACRE2 addon. ACRE too not working. but ACRE send to me error message. so i know what the hell this ploblem. that's Arma 3 and TeamSpeak 3 are diffrent path. so i made with two progrem same path. testing resualt is ACRE2 is nice working. but TFAR still not working.. i need help..
  5. ins3821

    TFAR not working..

    yes installed plugin by TFAR addon folder
  6. ins3821

    TFAR not working..

    yes installed plugin by TFAR addon folder
  7. hi everyone i used this map to dedicatited server. but dedicatited server send me error message. "Script scripts\Gemini\fnc_lightSource.sqf not found" plz help me..
  8. I want to create specific data from the player and save it on my computer. I'm trying to save it in text format, but I don't know how. Do you have any good ideas? It is also good to send it directly by discode message. However, this requires a bot and uses it in real time.
  9. variable working to strange. when I try test, "IF" not find variable(Armed_car, APC). but another variable(Car, Air, Ship, Autonomous, heli, AH, po etc) is very good finded. so i very confuse. is anyone familiar with this problem? private["_filter","_ret","_vehicleList"]; _filter = [_this,0,"",[""]] call BIS_fnc_param; systemChat format["%1",_filter]; //test <<------------------- good find here but if(_filter == "") exitWith {[]}; //can't find here. <<------------------- here cant find //Setup our array. _ret = []; _vehicleList = switch(_filter) do { case "All": {(VVS_pre_Car + VVS_pre_Air + VVS_pre_Ship + VVS_pre_Armored + VVS_pre_Support + VVS_pre_Autonomous + VVS_pre_Heli + VVS_pre_bigsusong + VVS_pre_AH + VVS_pre_po + VVS_pre_Cas + VVS_pre_armed_car + VVS_pre_APC)}; case "Car": {VVS_pre_Car}; case "Armed_car": {VVS_pre_armed_car}; case "APC": {VVS_pre_APC}; case "Air": {VVS_pre_Air}; case "Ship": {VVS_pre_Ship}; case "Armored": {VVS_pre_Armored}; case "Autonomous": {VVS_pre_Autonomous}; case "Support": {VVS_pre_Support}; case "Heli": {VVS_pre_Heli}; case "bigsusong": {VVS_pre_bigsusong}; case "AH": {VVS_pre_AH}; case "po": {VVS_pre_po}; case "Cas": {VVS_pre_Cas}; default {[]}; };
  10. I solved the problem. Thank you for your interest. Thank you so much for your hard work despite my terrible English. I wrote the wrong code because of some mistakes.
  11. what I'm doing now is adding APC, Armed_car. It worked well when I did this before.
  12. do output by systemChat, but doesnt skip the "if(_filter == "") exitWith {[]};" code. so i confuse.
  13. code "systemChat" receives variables, but code "if(_filter == "") exitWith {[]};" does not receive variables. this is the point.
  14. Q - What kind of data you are passing as _filter? _filter is recive string from server. ex) VVS_fnc_openVVS private["_filter","_ret","_vehicleList"]; _filter = [_this,0,"",[""]] call BIS_fnc_param; systemChat format["%1",_filter]; //test <<------------------- good find here but if(_filter == "") exitWith {[]}; //can't find here. <<------------------- here cant find  //Setup our array. _ret = []; _vehicleList = switch(_filter) do { case "All": {(VVS_pre_Car + VVS_pre_Air + VVS_pre_Ship + VVS_pre_Armored + VVS_pre_Support + VVS_pre_Autonomous + VVS_pre_Heli + VVS_pre_bigsusong + VVS_pre_AH + VVS_pre_po + VVS_pre_Cas + VVS_pre_armed_car + VVS_pre_APC)}; case "Car": {VVS_pre_Car}; case "Armed_car": {VVS_pre_armed_car}; case "APC": {VVS_pre_APC}; case "Air": {VVS_pre_Air}; case "Ship": {VVS_pre_Ship}; case "Armored": {VVS_pre_Armored}; case "Autonomous": {VVS_pre_Autonomous}; case "Support": {VVS_pre_Support}; case "Heli": {VVS_pre_Heli}; case "bigsusong": {VVS_pre_bigsusong}; case "AH": {VVS_pre_AH}; case "po": {VVS_pre_po}; case "Cas": {VVS_pre_Cas}; default {[]}; }; this addaction["spawn APC",VVS_fnc_openVVS, ["spawnlocation","APC"]]; and _filter = "APC". test code(systemChat) recive "APC", but if(_filter == "") exitWith {[]}; recive noting. so that's code is exitwith. Q - What are your variables VVS_pre_APC or VVS_pre_armed_car? just classname. Q - What did you expect with if(_filter == "") exitWith {[]}; //can't find here. <<------------------- here cant find ?? _filter recived "APC" then switch code execute.
  15. Hi everyone i have an issue making a simple economy function in my mission. i want write negative number using to BIS_fnc_numbertext. when i use negative number then this function show me scientific notation. BIS_fnc_numbertext use reason is scientific notation. here my code. plz help... befor_basicbudget = 0; basicbudget_killciv = 30000; culclear = 10000; _getculmoney = profileNamespace getVariable "befor_basicbudget"; systemchat format["$ %1 collection",[basicbudget_killciv * culclear] call BIS_fnc_numberText]; after_basicbudget = _getculmoney - basicbudget_killciv; profileNamespace setVariable ["befor_basicbudget", after_basicbudget]; systemchat format["$ %1",[after_basicbudget * culclear] call BIS_fnc_numberText];
  16. Hi! I'm Korean and I'm preparing to run a server. The mission is being modified based on GHOST's ENEMY ASSAULT. After completing all missions and initializing, some Zeus modules do not work. In particular, all modules of ACHILLES are not worked. Does anyone know the reason? The debug below says '[FUNCTION] "BIS_functions_mainscope" missing'. In the initial mission, all functions of Zeus work well. Additionally, ZEUS ENHANCED ADDON will also fail. Does anyone know the solution? I'm sorry for my terrible English skills.
  17. hi, i need RHS USAF vehicles class name. but i cant see http://class.rhsmods.org/ site. occurred time out error. help me...
  18. Thx! Thanks to you, I can study scripts. An error is occurring as shown below. Is there an error in "getMarkerPos"? I put in the VVS_SP marker. and can i zoom in on the black error window when i start the mission? It comes out too short.
  19. Thx! Thanks to you, I can study scripts. An error is occurring as shown in the picture below. Is there an error in "getMarkerPos"? I put in the VVS_SP marker. And I can only see the error as shown in the picture below. Is there a way to expand it?
  20. Hi. I want a vvs script file. Armaholic is closed and cannot be obtained. Can anyone help me?
×