ASFEnhance
                                
                                 ASFEnhance copied to clipboard
                                
                                    ASFEnhance copied to clipboard
                            
                            
                            
                        Schedule claimitem daily
Describe what feature you want / 描述需要加入的新功能 There are quite often free items to get with the claimitem command that require running this command daily to get all items. Would it be possible to add an option to do this automatically once a day?
wip, maybe add in next version
Before official support is available, this can already be achieved by setting up a cron job (or using Task Scheduler) that sends the CI [Bots] command to the ASF API.
Before official support is available, this can already be achieved by setting up a cron job (or using Task Scheduler) that sends the
CI [Bots]command to the ASF API.
Not so easy under Windows.
Before official support is available, this can already be achieved by setting up a cron job (or using Task Scheduler) that sends the
CI [Bots]command to the ASF API.
A little more details, you can easily do this using bash or Powershell
bash (Linux or more)
curl -X POST \
  'http(s)://[your ASF instance domain or IP]/Api/Command' \
  --header 'Authentication: [your ASF IPC Password here]' \
  --header 'Content-Type: application/json' \
  --data-raw '{ "Command": "CI asf" }'
PowerShell (Windows)
Invoke-WebRequest -Method POST `
  -URI "http(s)://[your ASF instance domain or IP]/Api/Command" `
  -ContentType "application/json" `
  -Headers @{ 'Authentication' = '[your ASF IPC Password here]' } `
  -Body "{ 'Command': 'CI asf' }"
Under Linux, create a cron job with crontab -e to execute the command periodically (or save it as a script).
Windows also comes with a Task Scheduler can do the same job as cron, you can save the above command as a .ps1 script, and execute it with powershell.exe.
added, ASFEnhance will execute CLAIMITEM for bots which set AutoSteamSaleEvent to true, every 8 hours, after 2.0.8.0
I assume AutoSteamSaleEvent was made into AutoClaimItemBotNames ?
Unfortunately there is no Steam Sale up so that I could check if it is working, but thank you for the added functionality!
I assume
AutoSteamSaleEventwas made intoAutoClaimItemBotNames? Unfortunately there is no Steam Sale up so that I could check if it is working, but thank you for the added functionality!
nope, AutoSteamSaleEvent   now don't work for ASFEnhance, use AutoClaimItemBotNames to control which bot to enable this future
I assume
AutoSteamSaleEventwas made intoAutoClaimItemBotNames? Unfortunately there is no Steam Sale up so that I could check if it is working, but thank you for the added functionality!nope,
AutoSteamSaleEventnow don't work for ASFEnhance, useAutoClaimItemBotNamesto control which bot to enable this future
请问具体怎么设置asf.json啊。如果我有连个bot:0和1,是写"AutoClaimItemBotNames": "0,1"吗?
I assume
AutoSteamSaleEventwas made intoAutoClaimItemBotNames? Unfortunately there is no Steam Sale up so that I could check if it is working, but thank you for the added functionality!nope,
AutoSteamSaleEventnow don't work for ASFEnhance, useAutoClaimItemBotNamesto control which bot to enable this future请问具体怎么设置asf.json啊。如果我有连个bot:0和1,是写
"AutoClaimItemBotNames": "0,1"吗?
是的