crash devkit

02/08/2021 03:32 sigel123456789#1
i want to receive string and send it at this function
Code:
 std::n_string CharN;
        *MsgBuffer >> CharN;
        CharTitleColors.insert(std::pair<std::wstring, int>(CharNameHERE, 0xff004b));
i have to change it towstring i think but how

fixed :
Code:
  std::n_string input_text = CharName;
        std::wstring CharN = (TO_WSTRING(input_text));
02/08/2021 10:10 Devsome#2
Quote:
Originally Posted by sigel123456789 View Post
i want to receive string and send it at this function
Code:
 std::n_string CharN;
        *MsgBuffer >> CharN;
        CharTitleColors.insert(std::pair<std::wstring, int>(CharNameHERE, 0xff004b));
i have to change it towstring i think but how

fixed, #request to close
Maybe you wanna share how you fixed it? + a request to close is not only editing your post with a "request to close", just report your post.
02/09/2021 11:22 sigel123456789#3
Quote:
Originally Posted by Devsome View Post
Maybe you wanna share how you fixed it? + a request to close is not only editing your post with a "request to close", just report your post.
well thanks