Advertisement
FIDANzza

Untitled

Jan 19th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. if (m_SmallStorageBox->m_itemContainer() != 0)
  2. {
  3. for (int i = 0; i < m_SmallStorageBox->g_itemContainerSize; i++)
  4. {
  5. ///////////////////////////////////ITEM_NAME/////////////////////////////////////////////////////////////////////////
  6. char str_stash_loot_name[50];
  7. WCHAR w_stash_loot_name[50];
  8. swprintf(w_stash_loot_name, L"%s", m_SmallStorageBox->m_itemContainer()->m_itemName()->Data);
  9. WideCharToMultiByte(CP_ACP, 0, w_stash_loot_name, 256, str_stash_loot_name, 256, 0, 0);
  10. /////////////////////////////////////ITEM_NAME/////////////////////////////////////////////////////////////////////////
  11.  
  12. MENU::text_arial.DX11DrawEx(str_stash_loot_name, Screen.X - text_width / 2, Screen.Y - 40, 20, BGUI::color_green, 0, 0, 0, 1, *BGUI::color_black);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement