Advertisement
liweichen6

settings

Dec 9th, 2016
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. enfacehp = 29; //hp of enemy when your hero is allowed to attack the enemy face with his weapon
  2. maxwide = 6500; //number of boards which are taken to the next deep-lvl where another move may be added to them
  3. twotsamount = 1300; //number of boards where the next turn is simulated
  4. simEnemySecondTurn = true; //simulate a 2nd enemy turn (might have been removed?)
  5. playarround = false; //play around some enemy aoe spells?
  6. playaroundprob = 50; //probability where the enemy plays the aoe spell but your minions are forced to survive
  7. playaroundprob2 = 80; //probability where the enemy plays the aoe spell and your minions can die!
  8. enemyTurnMaxWide = 40; //boards calculated in enemy first turn in first AI step (lower than enemySecondTurnMaxWide)
  9. enemyTurnMaxWideSecondTime = 260; //boards calculated in enemys-first-turn BUT in the second AI step (higher than enemyTurnMaxWide)
  10. enemySecondTurnMaxWide = 26; //number of enemy boards calculated in enemys second TURN (might have been removed?)
  11. nextTurnDeep = 6; //maximum deep-lvls (total moves) in your second turn (recommended = dont touch this)
  12. nextTurnMaxWide = 26; //maximum boards calculated in one second turn deep-lvl
  13. nextTurnTotalBoards = 260; //maximum boards calculated in second turn simulation
  14. useSecretsPlayArround = true; //try to play around enemy secrets
  15. alpha = 50; //weight in % of your 2nd turn vs your 1st (0<= alpha <= 100) eg. 30 = 30% 2nd turn result + 70% first turn result
  16. simulatePlacement = true; //simulate all placements for direwolfalpha/flametongue/defenderofargus
  17. behave = face; //select the behavior of the ai: control, rush, face (new) or mana (very experimental, dont use that :D)
  18.  
  19.  
  20. // everything below is recommended to only be in your base settings.txt because they are personal choices
  21. // some may purposefully not reload with auto-config-switching
  22. // deck builders please start omitting these from your deck specific settings
  23.  
  24. useExternalProcess = true; //use silver.exe for calculations, a lot faster than turning it off (recommended = true)
  25. concedeOnBadBoard = false; //concede if the enemy board is too good (recommended = false)
  26. //concedeOnBoardValue = -900 //concedeOnBadBoard will trigger if our best board is lower value than this (recommended = dont touch this)
  27. speed = false; //set this true to support sending multiple actions to bot (currently buggy so forced false)
  28. useNetwork = false; //use networking to communicate with silver.exe instead of a file (experimental, likely to fail after some time)
  29. netAddress = 127.0.0.1; //network address where silver.exe is running (127.0.0.1 = this computer)
  30. tcpPort = 14804; //tcp port to connect on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement