-
BUG: It seems item placers using Icons have a bug where when picked up from far enough away, they don’t replicate the icon hidden state to clients. So players who later move through the world see the icon, but can’t interact with the Item Placer.
-
EVENT HELP: As a workaround, I’d like to just move the item placer device when it grants an item. However, the “User Options - Events On Item Granted” is not an available even to subscribe in Verse? It’s available for Item Grantors, but not Item Placers? Is there another way to get at this event in verse without needing to direct link to another device in the properties window? Due to the number of these item placers that would be very cumbersome.
-
If there isn’t, and I just have to link them manually, how would I go about figuring out if the agent coming in from the trigger device is a creative_object I can move? This fails at trying to turn Agent into the creative object:
ItemGrantedTriggerEvent(Agent:?agent):void=
Print("An Item was Looted")
if (ValidAgent := Agent?, ItemPlacer := creative_object[ValidAgent]):
Print("Passed the Test.")
Is the Agent in a direct event link not the device that triggered it?
Thanks so much for the help!