Can anybody give a example of the short code? Not the API btw i know the api but i not sure how to use it.
This is my code
This is my code
Code:
public void MergeItem()
{
foreach (var item in me.getItems())
{
if (item.place == ItemPlace.Bag && MergeItems.Exists(s => s == item.id))
{
if (!item.Merge(item)) << This is where i stuck
Log("Items ID " + item.name);
Thread.Sleep(500);
}
}
}
Last edited: