-
Content Count
66 -
Joined
-
Last visited
-
Medals
Everything posted by citazenman
-
Hello and thank you for reading. I'm currently working on a script in which I want a group icon to get bigger when the player mouses over it. onGroupIconOverEnter "(_this select 1) setGroupIcon (Can't figure out)"; onGroupIconOverLeave "(_this select 1) setGroupIcon (Can't figure out)"; No matter what I do in the setGroupIcon parameters I can't get it to work. The wiki page is very poorly explained for this command. https://community.bistudio.com/wiki/setGroupIcon Thanks in advance if anyone can help.
-
That only affects text size, not icon size. If you look at the setGroupIcon, command it does mention _iconsize but it is very cryptic.
-
Yes, I already have done that. Neither of those commands pertain to size . _markGrp = _this select 0; _shape = _this select 1; _color = _this select 2; _markGrp addGroupIcon [_shape,[0,0]]; _markGrp setGroupIconParams [_color,"",1,true]; onGroupIconOverEnter "(_this select 1) setGroupIcon (Can't figure out)"; onGroupIconOverLeave "(_this select 1) setGroupIcon (Can't figure out)";
-
TransportSoldier Config Entry Problem
citazenman replied to citazenman's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks Larrow, this sounds like it will work. I'll try it in my script tomorrow. -
TransportSoldier Config Entry Problem
citazenman posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello and thank you for reading, I am currently working on a decently large project that included an extraction script. The script is supposed to send a helicopter with a sufficient amount of seats to pickup a group. However, since the introduction of firing from vehicles, there is an issue. The config entry "TransportSoldier" no longer represents a real amount of passenger seats in a vehicle. The entry only accounts for seats where FFV is unavailable. This makes it impossible for my script to ever use the MH-9 or many of the RHS vehicles because they use a lot of ffv slots. I'll give an example below: if ( (getNumber(_vehicle >> "transportSoldier")) >= (count (units _extractGroup)) ) then {extractNames = extractNames + [configName _vehicle]}; //The MH-9 only has 2 non FFV seats so it is almost never in the array I am aware that there is already a ticket open for this but it is getting little attention and I doubt this is a priority at all for the Devs right now. http://feedback.arma3.com/view.php?id=21602 Thank you in advance if anyone can think of a work around for this that doesn't involve spawning each vehicle and using emptyPositions. -
1 hit kills mod?
citazenman replied to Daves_Gaming_Adventures's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
you could add this to the mission init.sqf of any mission you want one shot kills in. {if ((side _x) == east) then {_x addEventHandler ["hit", {_this select 0 setDamage 1}];}} forEach allUnits; -
I have a small problem. I have a very complex mission that I have solved nearly every issue with, except this pesky one. I have the players in the mission get placed in a C-130 with equipment for a HALO jump.(The AI just teleport to the team leader after everyone is on the ground.) I can't get the units to properly apply new equipment after all units are on the ground. Here is the relavent parts of the init and equipment SQFs.(I omitted most of it for space.) Init example of a loadout Thanks for taking the time to read and for any help you can give. I assume this is a locality issue because It works fine in SP. only certain aspects of the scripts fail.(backpacks,vest items, etc...)
-
Loadout / Equipment Issue.
citazenman replied to citazenman's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks I was wondering if BIS_fnc_mp would fix it, but I wasnt sure how to use it in this context. works perfectly -
Virtual Garage - possible to use as spawner like VVS?
citazenman replied to rlex's topic in ARMA 3 - QUESTIONS & ANSWERS
[] spawn { while {true} do {{_x allowdamage true} forEach vehicles; sleep 15;}; }; This would work, but I'm not sure it is worth the weight. Another reason why the garage is still not a great option yet is that it can only have one vehicle per player at a time it seems. I'm sure the devs will fix it up for us soon. :) -
I have a bit of brain melter today.(at least for me it is) I have an issue trying to set up repeatable, randomly generated side missions for a Firing Range/Bootcamp mission I'm making for ACE . Players will be able to walk over to a Mission Board(filled with addactions for each mission type) and start missions. I have a system in place so that only one of the missions can be active at once and a reset option to clear the active mission. In single player testing the mission is great. There are no loops or heavy weight scripting at all. However, it doesn't transition well into MP(not much ever does for a learning scripter). Hopefully the code will explain itself. I've tried all sorts of varieties of IsServer and BIS_FNC_MP but I can never get a result that will work for all the different missions. I'm just going to show an example of one of the side missions in singleplayer form. Init specopmission.sqf LV\fillHouse.sqf is from here http://www.armaholic.com/page.php?id=19832 <- Probably not the problem or solution If you have any optimizations or ways I can get this functioning in MP I would be very grateful. Thanks.
-
[SP][Campaign][RHS] The East Wind RHS Remake
citazenman replied to DenyWilCo's topic in ARMA 3 - USER MISSIONS
sounds awesome! -
ACE3 - A collaborative merger between AGM, CSE, and ACE
citazenman replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
I was wondering if setHitPointDamage still works with medical and how it is affected? https://community.bistudio.com/wiki/setHitPointDamage Haven't been able to test it myself yet. -
ACE3 - A collaborative merger between AGM, CSE, and ACE
citazenman replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Congrats! -
No Text In GUI From Editor?
citazenman replied to citazenman's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks it works fine now. @BearBison thanks for the tip. -
I'm always bothered when I see these "fix this for me" posts, but I'm quite clueless when it comes to GUI and I've been working on this all day. My issue is that I can't seem to get text to show up on the RscButtons in my GUI. My issue will most likely be obvious to anyone who knows stuff about GUI. The GUI is simply a menu with ten buttons and frame. Each button will activate one of my scripts. Here is how it looks http://i.imgur.com/KxtggTl.jpg (649 kB) Here is the code (mostly copy and pasted stuff from tutorials.) Dialog.hpp Defines.hpp I feel like it's something with the color options. However, it really could be anything for all I know. :) Thanks for reading.
-
No Text In GUI From Editor?
citazenman replied to citazenman's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks for the reply. I'd need some help with that, seeing as I don't really know how or why this whole define thing works yet. I assume it would look like this: #define GUI_GRID_H (something here) My question is, what should i put in the (something here) spot? Is there anywhere you suggest I go to actually learn about this? Most tutorials seem to be made with the assumption that the viewer knows about defines. Thanks -
Hello and thank you for reading, I'm trying to create a cargo drop script and I'm a little stuck. Everything is working fine except the part where the cargo plane actually drops the cargo box. Here is what I have now. Once the C-130 is in the air and on the way to the player, the script waits with the following: waitUntil {_c130pilot distance player < 350}; This of course works fine and as soon as the pilot gets close enough the rest of the script continues and the cargo box drops. However, I have the aircraft flying at 750 meters. So it never actually is within 350 meters of the player. Is there anyway I can get the code above to stop using the Z axis and thus not factor in the height of the aircraft? Thanks
-
Distance command without Z
citazenman replied to citazenman's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Wow. I just checked back in on this. I appreciate all the additional suggestions, but I've been using Killzone's recommendation and even in a script heavy environment it is fast enough. -
Distance command without Z
citazenman replied to citazenman's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Works perfectly. Thanks -
ACE3 - A collaborative merger between AGM, CSE, and ACE
citazenman replied to noubernou's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Yep, rabbits everywhere! -
X-55 stops working after opening controls
citazenman replied to John Kozak's topic in ARMA 3 - TROUBLESHOOTING
I have track ir too. My problem seems identical to yours. I seem to remember this happening now and then even when I didn't have track ir but I may be wrong. Unfortunately, I don't have a whole lot of time to test this. I really hope you guys can figure this out though. -
ACE3 - A collaborative merger between AGM, CSE, and ACE
citazenman replied to noubernou's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
k... April 30th... I'll take my ACE now. Just kidding! Take your time! :cool: I just really wanted to thank you guys for all the patience you've shown. I'm really excited for this release and I'm certain it will be awesome. -
British Armed Forces All In One Mod
citazenman replied to robj's topic in ARMA 3 - ADDONS & MODS: COMPLETE
I was wondering how modular this is? Am I able to delete the PBOs for the C-17, F-35 and Apache or does something else have a dependency on them? -
X-55 stops working after opening controls
citazenman replied to John Kozak's topic in ARMA 3 - TROUBLESHOOTING
yep I get this sometimes. It affects my pedals and logitech 3d pro. I had heard that it was a power problem with windows. windows likes to power things off when they are not in use. However altering my power settings for my peripherals hasn't helped. If your interested here's a link http://answers.microsoft.com/en-us/windows/forum/windows_8-hardware/windows8pro64-suddenly-loses-connection-to-saitek/8edc6dd3-21cd-458b-9391-4f5bb6b20e19 -
Insurgent Actions (Kunduz, Afghanistan Missions)
citazenman replied to citazenman's topic in ARMA 3 - USER MISSIONS
The whiteboard is at the meeting point. It allows you to recruit a group or two of infantry. I'm currently in heavy development of some ACE 3 showcases and an ACE 3 sandbox/boot-camp. I'm making these because I really want to have some quality content out as soon as ACE 3 releases. I'll post some links here but when they're ready, but they will be in their own threads. This campaign may actually take me quite a while to get out. Something should definitely be out by the end of May though.