Dedmen Miller

Results 377 comments of Dedmen Miller

The messages I pin to the channel are my todo list. No need to have that todo entry twice.

> We would like to held some ingame briefings but without being moved to our TFAR-channel. You can un-set the teamspeak channel name, then it won't move you because it...

I love the idea with the memory point. https://community.bistudio.com/wiki/selectionPosition That would definetly be neat and probably not too slow. but maxDepth config entry would also work.

does boundingBox update with animations? Like extending the antenna thingy?

There is only one Pilot and Copilot. Why can't they just stay on the same channel? It's theoretically possible to add that yes.

Scripts don't easilly know how many Intercom channels are available. And it can be different from vehicle to vehicle. Can't make a keybind to switch between crew/cargo because can't know...

could use #109 for the callback. That could also directly pass _this in the function call. a unary function intercept_event ``` target addEventHandler ["killed", "intercept_event _this"]; ``` could also format...

#109 is implemented now.. How about `target addEventHandler ["killed", " interceptEvent _this"];` `sqf::add_event_handler(target, "killed", "intercept_event ['killed',_this]");` We just have to provide some way to route that eventhandler to a specific...

Additionally to the addEventhandler CODE wrapper we could add addEventhandler that takes std::function. People can pass their lambda or whatevers in there and in the backend intercept assigns a ID...

Okey easy to implement. On Pluginside we have `holder addEventhandler(object obj_, std::string_view ehname_, std::function func_)` _(Notice the naming difference from sqf::add_event_handler. In the end it will also be called add_event_handler...