steam-76561198069261992
Member-
Content Count
26 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout steam-76561198069261992
-
Rank
Private First Class
Recent Profile Visitors
-
can be removed
steam-76561198069261992 replied to steam-76561198069261992's topic in ARMA 3 - MISSION EDITING & SCRIPTING
dont worry, I fixed it my way. (pretty much the same still) and it works without errors. I guess I have no idea how it works. -
.
-
Addaction cooldown?
steam-76561198069261992 replied to steam-76561198069261992's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks alot! -
Help, checking for item in inventory?
steam-76561198069261992 replied to HeisenS's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It works, thankyou. Also, is there a way to make it so it not only checks items of the player, but also magazines? Example would be: _items = items player, magazines player; But this doesnt work ofcourse. Edit: nevermind, found the solution. Thanks alot! -
Help, checking for item in inventory?
steam-76561198069261992 replied to HeisenS's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi, thanks for the quick response, though this is not what I am looking for. I am trying to make a crafting system and I want to make it so it uses multiple items. Lets say it uses "Scrap" twice, and uses a "Rifle_Body" once. So that would be 3 items that are all needed to execute the script. -
Hey, I am trying to make a small crafting system using addaction and dialogs. Though you can now just spam the addaction and just craft 1000 items at once. How would I go about adding a cooldown to my addaction? this addAction ["<t color=""#6FFFC2"">" +"Craft",{createDialog "CraftingUI";}];
-
Help, checking for item in inventory?
steam-76561198069261992 replied to HeisenS's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi, I know this topic is really old, but how do I use this to check for multiple items of 1 specific item, and how do I check for multiple different items? -
COP Key-Card
steam-76561198069261992 replied to steam-76561198069261992's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Whoops, that makes sense. Sorry haha. Thanks alot though. -
COP Key-Card
steam-76561198069261992 replied to steam-76561198069261992's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Right, I was over excited. It works when the classname in question is ToolKit. But when I change it to "vop_keycard_west" it doesnt work anymore, and yes it is the correct classname. Any ideas @pierremgi ? -
COP Key-Card
steam-76561198069261992 replied to steam-76561198069261992's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks alot, this works perfectly as how I wanted it to work. -
COP Key-Card
steam-76561198069261992 replied to steam-76561198069261992's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I already use the same script for a bank robbery system, "items player" automaticly searches through the vest, uniform and backpack already. -
Hi, I want to make a small key-card script but I need some help. I want to make it so that when you have a certain item in your inventory you automaticly get access to PD/DOC doors. ( player setVariable ["copLevel",1,true]; ) This is what I have tried: _items = items player; if ("Toolkit" in _items) then { player setVariable ["copLevel",1,true]; } else { player setVariable ["copLevel",0,true]; }; Though I can't get it to work this way, and I also dont know where I would put this script to make it work. Any help is appreciated.
-
Test for Item in Inventory
steam-76561198069261992 replied to MI6K's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Where would one put this script to make it work? 😄 -
Sort Weapons/Item/Backpacks/Magazines HELP
steam-76561198069261992 replied to .Marti's topic in ARMA 3 - MISSION EDITING & SCRIPTING
bump -
Sort Weapons/Item/Backpacks/Magazines HELP
steam-76561198069261992 replied to .Marti's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@Larrow @.Marti where would I put your script to make it work? I am kinda a rookie 😄