-
I am trying to set the seed of an item. Reading the variable works fine, but writing doesn't. auto item = InventoryItem; // assume this is set correctly
auto seed = Inventory::dynamicSkinData(item.getDynamicDataIndex()).seed;
seed = 1337; // this does not work
std::cout << seed << std::endl; |
Beta Was this translation helpful? Give feedback.
Answered by
KurastikO
Oct 19, 2021
Replies: 3 comments 3 replies
-
I assume the seed you have inputted is >1000? If so then it'll not work as CS:GO does not recognize these types of numbers. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
aoqia194
-
seed must be less than 1000 |
Beta Was this translation helpful? Give feedback.
0 replies
-
This doesn't fix my problem.
…On Wed, 20 Oct 2021, 03:48 Mohamed Mohsen, ***@***.***> wrote:
seed must be less than 1000
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#3342 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHKC3NIH32JS5GNWXJYKXCTUHWOPHANCNFSM5GE7O7EA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I assume the seed you have inputted is >1000? If so then it'll not work as CS:GO does not recognize these types of numbers.