-
Content Count
3566 -
Joined
-
Last visited
-
Medals
Everything posted by iceman77
-
How to make a mission LAG FREE?
iceman77 replied to Coolinator's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Post the mission file. Someone is bound to have a look. -
how to avoid bis arsenal wipining out my display dialogs?
iceman77 replied to twisted's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yeah well, my tutorial could use revising. It gets the job done, but I've learned alot myself since then. Austin_Medic made a dialog tutorial recently. It's floating around somewhere. I think it'd be a better "stepping stone" to KK's tuts. I haven't read it, but it has to be better than my old tut. -
script checking variable passed by eventhandler, correct me, how to?
iceman77 replied to creartan's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I guess? If variablezz is the unit the Eh is assigned to.. -
how to avoid bis arsenal wipining out my display dialogs?
iceman77 replied to twisted's topic in ARMA 3 - MISSION EDITING & SCRIPTING
99 cutRsc ["TAG_RscWhatever", "PLAIN"]; -
Looking for Developers
iceman77 replied to KingAlmond's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I sent you a PM. We can keep it there. Then TS or w/e you use afterwords (if applicable). -
Looking for Developers
iceman77 replied to KingAlmond's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Loot generator Digital loadout system light weight status hud Vehicle system Light vehicle respawn ---------- Post added at 17:51 ---------- Previous post was at 17:49 ---------- I haven't updated any of those in about a month. So I'm not sure if recent patches effected anything or not. -
Looking for Developers
iceman77 replied to KingAlmond's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Skilled!? I wanted you to pay me to sit there and look good! -
Looking for Developers
iceman77 replied to KingAlmond's topic in ARMA 3 - MISSION EDITING & SCRIPTING
If I wasn't essentially homeless I'd apply. Is there pay involved? -
how to avoid bis arsenal wipining out my display dialogs?
iceman77 replied to twisted's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Create the display on it's own layer. -
Is it worth using "execVM" instead of "spawn" to save RAM?
iceman77 replied to Heeeere's johnny!'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
No . -
I would like to add that a good place to start would be Beginner's Guide To Arrays thread. It covers the very basics of arrays. Such as your OP question.
-
isEqualTo is fast, but how to utlise this speed?
iceman77 replied to Tankbuster's topic in ARMA 3 - MISSION EDITING & SCRIPTING
== seems "safer". isEqualTo is for an exact comparison. I wouldn't say "stop using it". -
There are 4 elements in the selected array... eww.. Solved.
-
Nice work Champ! :)
-
isEqualTo is fast, but how to utlise this speed?
iceman77 replied to Tankbuster's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It may have come across that way since the only example provided was comparing two arrays. Other than that the description does clearly say Unless all of this has only recently changed. -
What kinds of things are possible in Arma 3?
iceman77 replied to Handle1's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Anything is possible. You are essentially the only one who can set a limit for yourself. It's a combination of a three things that make a legit game mode. The concept (imagination). The ability to see it through (coding skills) and people. Yes people. You can be super coder and make the best game mode since sliced bread.. but none of that matters if you don't have a solid base of people who are willing to give your game mode a try. Not only that, but stick it out through all of the potential debugging and faults. I've watched sooooo many good game modes fall through the cracks :p -
How to make this addaction available to all players in dedicated server?
iceman77 replied to Coolinator's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yes sorry. I meant "Newbie". Noob just sounds so harsh when I came back and re-read it. -
How to make this addaction available to all players in dedicated server?
iceman77 replied to Coolinator's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yeah you are right. Because when your typical noob come here and says "it wont work" that could mean any number of things... -
How to make this addaction available to all players in dedicated server?
iceman77 replied to Coolinator's topic in ARMA 3 - MISSION EDITING & SCRIPTING
But... where is the problem. Do the JIP clients receive the action? Does the code just not work? .. I do know at the very least the hint would need to be broadcasted to all clients. [ ["omg hello"], "hint" ] call bis_fnc_mp; -
isEqualTo is fast, but how to utlise this speed?
iceman77 replied to Tankbuster's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Can use it to compare just about any exact values from what I've seen. if (_number isEqualTo 0) then { // -- stuff }; or if (!(_number isEqualTo 0)) then { // -- stuff }; if ((typeOf _veh) isEqualTo "ClassNme") then { // -- stuff }; -
Thanks everyone for taking your time out to help. Thanks for helping straighten out my quagmire that I call code. Thankyou thankyou. I really do a appreciate it. Oh damn. Wrong thread apparently.
-
Hi lifeman live. I haven't used a map control in quite some time. Take a look @ this though. Should help. Ahh nvm I see you got it working.
-
How to make this addaction available to all players in dedicated server?
iceman77 replied to Coolinator's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Well technically no lol. It stands for join in progress, but you've got the idea. :). Does the action appear for the JIP players? Or does the code just not work for JIPs? Some more specifics would be nice. -
There I fixed it. That wasn't that hard was it? Ignore me I'm a fucking dick.
-
Yeah. Well I'm not gonna do something different and not mention it.. and have you potentially chasing your tail. ---------- Post added at 06:33 ---------- Previous post was at 06:31 ---------- Yeah. I said "button for example" long ago. You don't have to retrieve the edit box text via button action... I was only providing an visual example of how to retrieve the text from the edit box. Though is changing the VD and such as they type what you want :confused: I'll show myself the door :)