User Details
User Details
- User Since
- Dec 3 2015, 11:27 PM (472 w, 2 d)
Jun 13 2019
Jun 13 2019
microbe changed Severity from severity:none to severity:minor on T127825: Terrain objects is <NULL-object> in EpeContact* events handlers.
Mar 1 2018
Mar 1 2018
microbe edited Steps To Reproduce on T127825: Terrain objects is <NULL-object> in EpeContact* events handlers.
microbe edited Steps To Reproduce on T127825: Terrain objects is <NULL-object> in EpeContact* events handlers.
microbe edited Steps To Reproduce on T127825: Terrain objects is <NULL-object> in EpeContact* events handlers.
May 10 2016
May 10 2016
microbe added a comment to T85164: Some building return cursortarget NULL & disapear from map on altis since 1.54.
It is possible to retrieve object via nearestObject[s] commands. Next step - use reveal command for retrieved object. After that cursorTarget returns correct object.
My workaround script:
_curTarget = cursorTarget;
if (isNull _curTarget) then {
_nearestProblemHouses = nearestObjects [player, ["Land_i_House_Small_03_V1_F"], 20]; { player reveal _x; } forEach _nearestProblemHouses; _curTarget = cursorTarget;
};
PS: 'nearestBuilding' command also don't see buggy objects.