Bit of a thread necro, but to clarify for others:
In Perl...
$client->DeleteItemInInventory(252, 0, 1);
Will delete ALL of the item found in slot 252.
$client->DeleteItemInInventory(252, 1, 1);
Will delete 1 of the item found in slot 252.
For me, the client updates immediately when I use 1 for the last argument. Hope that helps!
|