Hey everyone,
I'm using the itm_send_tbl to send item from my webshop to the players. However once I moved over from php to C# it seems like items from the webshop are untradeable.
I'm using the following snippet in my webshop code to create an entry to the ITM_SEND_TBL,
ITEM_SEND_TBL sendItem = new ITEM_SEND_TBL()
{
m_idPlayer = selectedCharacter,
serverindex = "01",
Item_Name = shopItem.itemid.ToString(),
Item_count = shopItem.count.Value,
idSender = "0000000",
ReceiveDt = DateTime.UtcNow,
SendComment = "Bought from Webshop"
};
Any ideas? I haven't done anything in the code related to sending items or trading items and this worked without any problems in the php version of the website with the same method of sending items.
I'm using the itm_send_tbl to send item from my webshop to the players. However once I moved over from php to C# it seems like items from the webshop are untradeable.
I'm using the following snippet in my webshop code to create an entry to the ITM_SEND_TBL,
ITEM_SEND_TBL sendItem = new ITEM_SEND_TBL()
{
m_idPlayer = selectedCharacter,
serverindex = "01",
Item_Name = shopItem.itemid.ToString(),
Item_count = shopItem.count.Value,
idSender = "0000000",
ReceiveDt = DateTime.UtcNow,
SendComment = "Bought from Webshop"
};
Any ideas? I haven't done anything in the code related to sending items or trading items and this worked without any problems in the php version of the website with the same method of sending items.