Advertisement
kolton

Untitled

Nov 15th, 2011
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var players = [
  2.     "kolx-m", // leader
  3.     "kolx-g", // baalHelper
  4.     "kolx-a", // chaosHelper
  5.     "kolx-l", // shrineHelper
  6.     "kolx-c" // boHelper
  7. ];
  8.  
  9. /* chars can assume a different number of roles
  10.     precastBO - BO party at river of flame WP
  11.     clearThrone - clear throne
  12.     killBaal - kill baal, leader goes to worldstone chamber regardless but doesn't attack if false
  13.     clearChaos - clear chaos, leave Diablo to leader
  14.     findShrine - find XP shrine, checks act 1. requires stony field and dark wood WP
  15. */
  16.  
  17. var config = {
  18.     leader : { // leader kills Baal and Diablo. can't clear chaos
  19.         precastBO : false,
  20.         clearThrone : true,
  21.         killBaal : true
  22.     },
  23.     baalHelper : { // assuming clearThrone, rest is optional. can't clear chaos
  24.         precastBO : false,
  25.         findShrine : false,
  26.         killBaal : false,
  27.     },
  28.     shrineHelper : { // assuming findShrine, rest is optional. can clear chaos, but it's not recommended
  29.         precastBO : false,
  30.         clearThrone : false,
  31.         killBaal : false,
  32.         clearChaos : false
  33.     },
  34.     boHelper : { // assuming precastBO, rest is optional
  35.         findShrine : false,
  36.         clearThrone : false,
  37.         killBaal : false,
  38.         clearChaos : false
  39.     },
  40.     chaosHelper : { // assuming clearChaos, rest is optional. findShrine isn't recommended
  41.         precastBO : false,
  42.         findShrine : false,
  43.         clearThrone : false,
  44.         killBaal : false,
  45.     }
  46. };
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement