WhatNitrous
Well-known member
- Messages
- 23,423
- Points
- 113
Screwed myself there too for the community event so definitely gonna passDon't forget to change artifacts
Screwed myself there too for the community event so definitely gonna passDon't forget to change artifacts
Will the bots win this time or the AWA employees?Screwed myself there too for the community event so definitely gonna pass![]()
The Precinct is already out of stockGame Vault Open, The Precinct gone
Typical I managed to get Entropy Survivors, but I wanted to claim The Precicnt or Hordes of Hunger. Still better, I hope next time they do as previous month, today I've been free all day and I checked every hour to see if it's gonna happen again.Game Vault Open, The Precinct gone
Lots of demand. I used to just buy whatever got discounted at the end of the month, and they even let you buy two games sometimes.How on earth did so many games go out of stock so quickly?
15% off most likely, so 3.4k, which is only slightly higher than most people make in a month.Did people actually pay 4000 ARP for Metal Hellsinger?!![]()
They never tell us how many they have, and it doesn't really matter, just less than the number of people (accounts) trying to get them.They must have had 10 copies of each game. Geez...
Yeah, they go like hotcakes.How on earth did so many games go out of stock so quickly? Did people actually pay 4000 ARP for Metal Hellsinger?!
They must have had 10 copies of each game. Geez...
Nah. There's no way that demand for something like Metal Hellsigner was that high. It's an old game, has been bundled several times and costs like $3. For it to sell out at 4k ARP in a matter of minutes is insane. Its supply must have been near zero.Lots of demand. I used to just buy whatever got discounted at the end of the month, and they even let you buy two games sometimes.
There's no way that demand for something like Metal Hellsigner was that high.
That's more than I'd pay for it. I doubt I'm alone in that. If you want to play, pirate. If you want to collect, get for free.It's an old game, has been bundled several times and costs like $3.
With all three discount artifacts, it's possible to get it for 3.1k. That's about what you can get each month. I think you're vastly overestimating ARP value.For it to sell out at 4k ARP in a matter of minutes is insane.
While also underestimating the number of people using AWA that have that much ARP. It has increased recently, the last few months. As I said, I used to be able to get a discount at the end of the month, or even get two games, that's how many keys ended up being left over.Its supply must have been near zero.
AWA employee.I GOT THE PRECINCT!!
It was that or Mutant...i got the ones that got out of stock in seconds....nice
View attachment 23203
View attachment 23185
Nothing...at...all?
View attachment 23186
Congrats @legolas , you won Gigantosaurus
View attachment 23187
Key is on the way
Seems karma took care of my debt for me, totally random and using cryptographic number generation functions
EDIT:
Meant to select the winner usingat the end and forgot...i'll add it in for the next raffle later todayPython:secrets.choice(entries)
Would have done something more complex, but I typed that in on my mobile browser
...no fun heh
The reason the wheel of names looks random is because it uses shuffle all the time (so it starts with the mixed list on a second run) and your forced to wait while it spins...since random is seeded by the clock, that prevents repetitive results...but usually if you try to get random numbers extremely fast using generic functions you'll end up with the same result, it actually happens in my minigame when I respawn the pixies at the same time, I plan to switch over to using the secrets library from random to prevent that.
You can also seed it yourself but using the same seed provides the same exact number every single time--proving its not random at all. So in order to seed it you would need to get random information to seed it with first...which is more of a pain than its worth and i'd likely use secrets to do that anyways![]()
Its actually worse in python
Oh ffs just let me have fun coding![]()
Also came from an AWA Bot with no concern of failureHas 500+ entries in under an hour.
I'd be interested in those results...particularly the cryptographic libs, again I dont trust code I can't see for the reasons you just explained and I mentioned above...if I were going to seed the random lib I would have used the secrets lib because I don't want to deal with pulling 95 different pieces of information to create my own--that's something I would do for my own encryption but most online based random generators just use a single library, be it javascript or python generic/cryptographic ones without even adding a loop into the mix like I did with my simple two minute one I just made.I really should steal a univ. lab again for a couple of hours and test different libraries and models