Jump to content

Icaruk

Member
  • Content Count

    217
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by Icaruk

  1. I don't want to use mods :/ that's the problem. Thanks anyways :D
  2. You can choose your class each time you respawn, on all maps. You can press C twice to jump. Conquest http://i.imgur.com/lheQvdz.jpg (455 kB) Objective: Hold the bases to get points. Features: - A bonus will appear in the middle base, 4 times during the game. To get it just stand near it during 3 seconds. - This is the UI Download: https://www.dropbox.com/s/mv06iytu84yrcd4/Icaruk_PvP_Conquista_el_rio.Altis.pbo King of the Hill http://i.imgur.com/qdCrn9z.jpg Objective: Hold the base as much time as possible. Features: - A bonus will appear 4 times during the time at a random "?" spot. - The officer of the losing team will get mortar strikes. Just click on map to use it. - This is the UI Download: https://www.dropbox.com/s/zy40vm6550yeb6n/Icaruk_PvP_Rey_de_la_colina.Altis.pbo Seek & Destroy http://i.imgur.com/AIEWJ7N.jpg (418 kB) Objective: Destroy/defend the objective. Features: - If the first objective gets destroyed, the next round will start, both teams will move to the next objective. - To activate/defuse the bomb, just stay near it 3 seconds. - The officer of the attacking team can call a mortar strike. Just click on map to use it (2 min cooldown). - This is the UI Download: https://www.dropbox.com/s/ezsxvvtakfrk33v/Icaruk_PvP_Athira_la_bomba.Altis.pbo Athira la bomba A&D-16 Search & Capture http://i.imgur.com/TuqPU7I.jpg (258 kB) Objective: Follow the flare and capture the box. Features: - Random respawns. - The flare will fall near the box. - This is the UI Download: https://www.dropbox.com/s/wr3amjmbas56ftr/Icaruk_PvP_Busca_y_Captura.Altis.pbo Busca y Captura TvT-16 Push the box http://i.imgur.com/5l8x7Zw.jpg (551 kB) Objective: Push the box to your base. Features: - Pushing the box will award your team 1 point each push. - Entering the box in your base will award your team with 200 points. - Random respawns. - The UI is the same as all maps xD Download: https://www.dropbox.com/s/gw3nf3kdhy0ul6e/Icaruk_PvP_Mueve_la_caja.Altis.pbo Mueve la caja TvT-16 VIP http://i.imgur.com/rlbgWy3.jpg Objective: Complete the VIP's evac. Features: - Each time the VIP escapes will score blue team 1 point. - Each time the VIP dies will score the red team 1 point. - The team that reaches 3 points wins. - There are 3 possible evac zone, selected randomly each round. - Red team can use the Hunter and the Hummingbird to scout and travel faster. - The UI is the same as all maps xD Download: https://www.dropbox.com/s/nghqs7m0p8neb3h/Icaruk_PvP_VIP.Altis.pbo VIP TvT-x Steal the quads http://i.imgur.com/SlUsLd8.jpg Objective: Steal the enemy's quads and protect yours. Features: - The team that keeps 4 quads wins. - When a team reaches the score of 4, he must keep them during 1 minute. - Quads are invulnerable to damage. - There is 1 neutral quad at the middle of the map. Download: https://www.dropbox.com/s/7wu6955gj5ymb66/Icaruk_PvP_El_taller.Altis.pbo El Taller TvT-x Intermittent TDM http://i.imgur.com/IbI7Bkl.jpg Objective: Kill more and win. Features: - The team that reaches 30 (can be modified) points wins. - If 1 blue dies, red gets 1 point. - Therea are 2 bases, holding one gives your team 1 point each 10 seconds. - No NV, just flashlight, flares and the awesome intermittent light. Be smart moving on the dark. Download: https://www.dropbox.com/s/454w1pnh8gp7tw0/Icaruk_PvP_Intermitente.Altis.pbo Intermitente TDM-x Note: I'm new at scripting, so expect bugs. If you report them I'll try to fix them. Edit: How can I put images? is not working, is being replaced with (url=) (/url).
  3. Thanks! Edit the mission and add more "playable" units on each side, link them (F2 key) with the leader and it should be fine. I don't know if these missions will be balanced with more players, let me know.
  4. Icaruk

    was buying arma 3 worth it ?

    ArmA3 is the best 30€ I've never spent on a videogame.
  5. I've the same problem, I tried to make AI do the sit on high thing animation, but it appears flying, or just doesn't even appears. There is a way to make it working?
  6. while {a == 2} do { bla; sleep 1; }; or while {true} do { if (a == 2) then { bla; }; sleep 1; };
  7. It just works with "lefthand" and "righthand". At least for me.
  8. Something like this? while {true} do { if (_var == true) then { // When _var is true we start to read the script dosomething; waitUntil {_var == false}; // We wait until _var changes to continue reading the script dosomething2; }; sleep 0.5; // Now we'll wait until _var is true on the beggining of the script };
  9. [VIP] - Fixed the issue with the VIP spawning naked.
  10. Icaruk

    Urban Patrol Script

    bump T_T
  11. At the moment I have 2 items: init.sqf missionNamespace setVariable ["Log",1]; missionNamespace setVariable ["Wood",1]; When you open he menu: craftingmenu.sqf list = ["Log", "Wood"]; Q = [Log, Wood]; inventory = []; { _itemName = list select _forEachIndex; _itemQ = Q select _forEachIndex; _where = count invntory; inventario set [_where, [_itemNname, _itemQ]]; } foreach list; table = []; createDialog "crafting_dialog"; { _item = format ["%2 x %1", _x select 1, _x select 0]; _index = lbAdd [1500, _item]; } foreach inventory; When you click the button to move the selected item from the left to the right box: move.sqf _selected = _this select 0; ¿? Here is the problem, I don't know how to get the variable name and value from the listbox, any thoughts? Also, I would like too when you have 0 units from one item, it just doesn't show on the listbox.
  12. But I need to set 2 values, name of the item (variable) and quantity :/
  13. Icaruk

    Urban Patrol Script

    I have the same problem. Yes, the problem persists.
  14. You mean this? When you select something on the left listbox and then click the "move button" it exec this: move.sqf _selected = lbData [1500,0]; hint format ["%1",_selected];
  15. All the code I'm using is there, except the dialogs, 1500 is my inventory 1501 is the table.
×