ASFEnhance icon indicating copy to clipboard operation
ASFEnhance copied to clipboard

EXPLORER

Open qirieshkaclwn opened this issue 6 months ago • 30 comments

  • 原始消息: EXPLORER asf
  • Access: Owner
  • ASF 版本: last
  • 插件版本: last ========================================== { "EULA": true, "Statistic": true, "DevFeature": true } the plugin does not view the list, the function only worked on 1 account

qirieshkaclwn avatar Dec 22 '23 19:12 qirieshkaclwn

i am retard

qirieshkaclwn avatar Dec 22 '23 22:12 qirieshkaclwn

Ты пофиксил это?

Я так понял при юзании эксплорера у тебя тоже не забирает карты? Но при этом если зайти вручную на акк ,то карта даётся?

d1ret avatar Dec 23 '23 00:12 d1ret

It doesn't collect from me

reanoff avatar Dec 23 '23 06:12 reanoff

It works fine for me on unlimited bot accounts.

Make sure the cards have not been automatically forwarded to your main account before you noticed.

woctezuma avatar Dec 23 '23 08:12 woctezuma

У меня это отлично работает с неограниченным количеством учетных записей ботов.

Убедитесь, что карты не были автоматически перенаправлены на ваш основной аккаунт до того, как вы заметили.

does not work

reanoff avatar Dec 23 '23 08:12 reanoff

<MASTER> Explore discovery queue task will start immediately But the cards don't fall out

reanoff avatar Dec 23 '23 08:12 reanoff

When manually, the card will drop out image

reanoff avatar Dec 23 '23 09:12 reanoff

same

d1ret avatar Dec 23 '23 11:12 d1ret

see ASF's manual https://github.com/JustArchiNET/ArchiSteamFarm/wiki/Configuration#autosteamsaleevent

what this command actually do is reset the ASF's timer.

chr233 avatar Dec 23 '23 14:12 chr233

Yes. Does not work.

CrazyGhostRider avatar Dec 23 '23 16:12 CrazyGhostRider

same, whats gonna be wrong?

Unriot avatar Dec 23 '23 20:12 Unriot

Do you guys use the latest version of ASF?

woctezuma avatar Dec 23 '23 20:12 woctezuma

Do you guys use the latest version of ASF?

yeah sure:

ASFEnhance 2.0.6.0 MobileAuthenticatorPlugin 5.5.0.11 ASF Achievemenevement Manager Ex 1.0.2.0 ItemsMatcherPlugin 5.5.0.11 SteamTokenDumperPlugin 5.5.0.11

image

but still no card

Unriot avatar Dec 23 '23 20:12 Unriot

This bug has a low priority, and I have to do more important work, it will be slow to fix it.

chr233 avatar Dec 24 '23 03:12 chr233

у меня была проблема в другом и я её пофиксил но сейчас у меня image

qirieshkaclwn avatar Dec 24 '23 06:12 qirieshkaclwn

пишет что 0 но если собрать вручную то пишет -1 в стим Come back tomorrow to earn another card by browsing your Discovery Queue! на всех аккаунтах

qirieshkaclwn avatar Dec 24 '23 06:12 qirieshkaclwn

@chr233 can you make a version of the plugin without checking if the card is available?

qirieshkaclwn avatar Dec 24 '23 06:12 qirieshkaclwn

@chr233 can you make a version of the plugin without checking if the card is available?

not understand what u want, can u explain more?

chr233 avatar Dec 24 '23 06:12 chr233

@chr233 can you make a version of the plugin without checking if the card is available?

Как отметил chr23 - команда всего лишь сбрасывает таймер, на который ориентируется ASF. А значит, это проверку нужно убирать в самом ASF

d1ret avatar Dec 24 '23 06:12 d1ret

what asfenhance do is reset the ASF's timer, the core logic is in the ASF, I cant do that

chr233 avatar Dec 24 '23 06:12 chr233

steam says "Today you can get 0 more cards if you continue to view the list of recommendations." if I register EXPLORER ASF I'll see it in the console "Come back tomorrow to earn another card by browsing your Discovery Queue!" but if you collect it manually, steam will write "Today you can get -1 more cards if you continue to view the list of recommendations." and will issue a card

qirieshkaclwn avatar Dec 24 '23 06:12 qirieshkaclwn

can you remove the check that leads us to "Come back tomorrow and get another card by looking at your discovery queue!"

qirieshkaclwn avatar Dec 24 '23 06:12 qirieshkaclwn

Today you can get -1 more cards

The -1 is a bit weird, no? Maybe it is part of the issue?

cf. https://github.com/chr233/ASFEnhance/issues/195#issuecomment-1868247945

Picture

cf. https://github.com/chr233/ASFEnhance/issues/195#issuecomment-1868442390

Picture

woctezuma avatar Dec 24 '23 10:12 woctezuma

Same error here.

darkdroider avatar Dec 26 '23 03:12 darkdroider

I fixed it in ASF SteamSaleEvent.cs code :)

Is this happening because ASF first checks if the sale card is available?

If so, a new recommendation list is generated.

To fix this, I cut out the code to make ASF send a request to generate a new recommendation list.

d1ret avatar Dec 28 '23 07:12 d1ret

Is this happening because ASF first checks if the sale card is available?

I see. So the issue stems from the negative number of cards available returned by Steam.

woctezuma avatar Dec 28 '23 09:12 woctezuma

This line checks whether the discovery queue is available? private async Task<bool?> IsDiscoveryQueueAvailable()

Igorelysss avatar Dec 28 '23 12:12 Igorelysss

This line checks whether the discovery queue is available? private async Task<bool?> IsDiscoveryQueueAvailable()

Yes. But I just cut the function call out of "for"

Was:

for (byte i = 0; (i < MaxSingleQueuesDaily) && Bot.IsConnectedAndLoggedOn && (await IsDiscoveryQueueAvailable().ConfigureAwait(false)).GetValueOrDefault(); i++)

became:

for (byte i = 0; (i < MaxSingleQueuesDaily) && Bot.IsConnectedAndLoggedOn; i++)

d1ret avatar Dec 28 '23 12:12 d1ret

Thanks

Igorelysss avatar Dec 28 '23 12:12 Igorelysss

honestly, this works fine in my environment

chr233 avatar Jan 04 '24 08:01 chr233