I am calling an event on the character from the inventory that SHOULD:
Send an integer value
trigger the next node
currently the next node is triggered, which causes an item to drop and a slot to clear. However, the integer value serverside is never updated and always sits at zero.
due to this, if I drop or equip an item, the first slot in the inventory is always cleared - even if I click a different one.
These are the relevant BP nodes with watched values:
If I put a random int between 0-7 in on the server side, or indeed a fixed value within that range, the slot indicated will clear. So the only issue is the integer value not being sent/received.
Bump, I have tried absolutely everything. Interfaces, functions, replicated custom events, casting to the inventory to retrieve it, casting to the player to set it. Why can’t I send a simple integer value from my inventory to my character? I’ve been trying to solve this for a week now.