Jump to content

NeV3rKilL

Member
  • Content Count

    31
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About NeV3rKilL

  • Rank
    Private First Class
  1. Finally I have created a script that creates waypoints dinamically
  2. Hi I have a dedicated server with more than 1 GB of addons and now the server is quite. How can I look for that inestable addon? Thank you
  3. NeV3rKilL

    BlackOps and desert mercs

    I'm interested on using this addon, but Which is the "medic" Vehiclecfg name? I need that name to use the Norris' Revive. Who knows? Thanks! (Solved) seeing mission.sqm
  4. Hi I want to do a convoy mission, but I have a problem. I have divided the way in waypoints, and the squad leader trought the radio alpha channel, can give the order to convoy to advance. My problem is that when I activate the alpha channel the convoy runs trought all waypoints, I want that the convoy walks to the next waypoint and then waits to the next radio alpha channel. Help me!! Thank you.
  5. I can't download the beta patch :( Server is down.
  6. with the file is not found.
  7. When I use: _genAct = _car addAction ["Saltar al Vehiculo!", "DMG_getin.sqf", _this ,10 , true , true , "GetOut", "!(_this in _target)" with "DMG_getin.sqf" on the mission folder, All works OK. If I use: _genAct = _car addAction ["Saltar al Vehiculo!", "/DMG/DMG_getin.sqf", _this ,10 , true , true , "GetOut", "!(_this in _target)" with "DMG_getin.sqf" in a "DMG" folder inside the mission folder. There is not error, arma2 find the file because not error is displayed, but the file is not opened. :-/ I have got this with another commands like execVM and works perfect, but with addAction seems not. Why?
  8. if (!isServer) exitWith {}; All was that line. I don't understand why, but i have commented that line and all works perfect now. Some good document explaining difference between exec in server or in clients?? Thank you very much.
  9. This is the whole script. if (!isServer) exitWith {}; private ["_car","_godmode","_damBol"]; _car = _this select 0; _godmode = _this select 1; _damBol = _this select 2; switch (_godmode) do { case "godall": { if (0 != (count crew _car)) then { {_x allowDamage false} foreach crew _car; }; _car addEventHandler ["GetIn", {(_this select 2) allowDamage false;}]; _car addEventHandler ["GetOut", {(_this select 2) allowDamage true;}]; }; case "godcargo": { if (0 != (count crew _car)) then { {_x allowDamage false} foreach crew _car; (gunner _car) allowDamage true; (driver _car) allowDamage true; (commander _car) allowDamage true; }; _car addEventHandler ["GetIn", {(_this select 2) allowDamage false;(gunner _car) allowDamage true;(commander _car) allowDamage true;(driver _car) allowDamage true; }]; _car addEventHandler ["GetOut", {(_this select 2) allowDamage true;}]; }; case "godallheli": { if (0 != (count crew _car)) then { {_x allowDamage false} foreach crew _car; }; _genAct = _car addAction ["Saltar al Vehiculo!", "getin.sqf", _this ,10 , true , true , "GetOut", "!(_this in _target)"]; _car addEventHandler ["GetIn", {(_this select 2) allowDamage false;}]; _car addEventHandler ["GetOut", {_this Call Compile PreProcessFile "DMG_Godalleli.sqf";}]; }; }; switch (_damBol) do { case "ha": { _car AddEventHandler ["handleDamage",{_this Call Compile PreProcessFile "DMG_Armour.sqf";}]; }; case "tercio": { _car addEventHandler ["handleDamage", { _this Call Compile PreProcessFile "DMG_Tercio.sqf" }]; }; }; How can i do to run code in every machine? hint dosen't work on the internet machines :( Why? This is by allowdamage?
  10. I have create a little script which I launch the script with: _an = [this,"godall","ha"] execVM "car.sqf"; Putted in vehicles init. It works perfect if I create a localserver or preview in my editor but I have upload a test mission with this in a internet server and the script not works. Why?? Thank you. The mission is: http://www.megaupload.com/?d=AMT8RL3W
  11. How can I create new menu entries to do special actions? For example I want that when a player go near a house, in his menu appears something like, "Spy house", and then the objective become complete. How can i add items to the menu action? In domination , for example, I can repair vehicles with this menu. Thanks
  12. NeV3rKilL

    Hit in the leg.

    I don't understand eventhandler "handleDamage". Just it dosn't works how it would have. This code extract from http://dev-heaven.net/boards/37/topics/show/949#message-1205 this addEventHandler ["handleDamage", { (damage (_this select 0)) + ((_this select 2) * 0.1) }]; // Take 10% damage. Destrois a T90 with 5 M16A1 hits when the T90 would must support 10 times most damage. Forgot hit locations just talking about global damage. I Don't undestand, the damage passed by (_this select 2) seems to be exponential, when it would have be constant value. I have done tests with this addEventHandler ["handleDamage", { (damage (_this select 0)) + 0.1 }]; And works perfect, after 10 shots T90 explodes but if I use _this select 2, then it's incontrolable and another question: I want to do normal damage, how can I do ? But if I use nil value then the T90 is invulnerable. I think that handleDamage is too green.
  13. Hi. How can i Hide the space GUI? I would like nothing happens when I press spacebar. With the munition number, the same thing. How can I disable the munition GUI? I just want GUI to change weapon, up and down vehicles... etc. Is it possible?
  14. I think that this is the better. I need an AREA marker, not an icon marker like "invisible".
×