str 6
int 6
lucky 2
PHP Code:
class CSOItem
{
...
n_map<short,int>* pBluesMap;
DWORD dwBluesSize;
...
};
PHP Code:
printf("%d\n", dwBluesSize); //3
for (auto& it : *c.pBluesMap) {
//crash
printf("%d\n", it.first);
printf("%d\n", it.second);
}
but "for (auto& it : *c.pBluesMap)" will be crash.
How can i get the weapon's blue param ?
thank you!






