Don't like ads? PRO users don't see any ads ;-)
Guest

blakw setup

By: a guest on Apr 30th, 2012  |  syntax: None  |  size: 7.29 KB  |  hits: 28  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /*                                        
  2.                  MMMM                  
  3.                 MMMMMMM                
  4.                MMMMMMMMM                
  5.              MMMMMMMMMMMMM              
  6.             MMMMMMMMMMMMMMM            
  7.           MMMMMMMMMMMMMMMMMMM          
  8.         MMMMMMMMMMMMMMMMMMMMMM          
  9.        MMMMMMMMMMMMMMMMMMMMMMMMM      
  10.       MMMMMMMMMMMMMMMMMMMMMMMMMMM      
  11.      MMMMMMMMMMMMMMMMMMMMMMMMMMMMM      
  12.      MMMMMMMMMMMMMMMMMMMMMMMMMMMMM      
  13.     MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM      
  14.     MMMMMM $MMMMMMMMMMMMMMM$ MMMMM      
  15.     MMMMMM   MMMMMMMMMMMMM  .MMMMM      
  16.     MMMMMM     MMMMMMMMM.   .MMMMM     __________ .__            __     __      __      _________               .__          __          
  17.      MMMMMM     MMMMMMM     MMMMMM     \______   \|  |  _____   |  | __/  \    /  \    /   _____/  ____ _______ |__|______ _/  |_  ______
  18.      MMMMMMMM. . MMMMM   .MMMMMMMM      |    |  _/|  |  \__  \  |  |/ /\   \/\/   /    \_____  \ _/ ___\\_  __ \|  |\____ \\   __\/  ___/
  19.       MMMMMMMMMMMMMMMMMMMMMMMMMMM       |    |   \|  |__ / __ \_|    <  \        /     /        \\  \___ |  | \/|  ||  |_> >|  |  \___ \  
  20.        MMMMMMMMMMMMMMMMMMMMMMMMM        |______  /|____/(____  /|__|_ \  \__/\  /     /_______  / \___  >|__|   |__||   __/ |__| /____  >
  21.         MMMMMMMMMMMMMMMMMMMMMMM                \/            \/      \/       \/              \/      \/            |__|              \/  
  22.           MMMMMMMMMMMMMMMMMMM                                                                                                     RELOADED
  23.             MMMMMMMMMMMMMMM            
  24.                 MMMMMMMM                
  25.                                        
  26.  
  27.  
  28.  
  29.  
  30. +-+-+-+-+-+-+    <><><><><><><>
  31. | Important |    [ Important ]
  32. +-+-+-+-+-+-+    <><><><><><><>
  33.  
  34.     Before you run the script read the script post/page info and RBPSetup.
  35.  
  36.     Found a bug or error? Report it here:   http://scripts.blakw.com/index.php/support-helpdesk/
  37.    
  38.     Need support? Visit:   http://scripts.blakw.com/index.php/support-helpdesk/
  39.  
  40.     Have an outdated version? Request the latest one here:   http://scripts.blakw.com/index.php/request-new-copy
  41.  
  42.     Visit our forums:   http://scripts.blakw.com/index.php/forum/index
  43.    
  44.  
  45.    
  46. Disable all persistents while editing values here or you will get a lot of errors!
  47.  
  48.  
  49. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  50. |                   User configurable settings                      |
  51. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  52.  
  53.     +-+-+-+-+-+-+-+-+-+-+-+-+
  54.     |  Backpack Settings    |
  55.     +-+-+-+-+-+-+-+-+-+-+-+-+
  56.                                                                                                                                                 */
  57.    
  58.     //Name of Main backpack:
  59.     string mainBp = ("Backpack Of Holding");
  60.  
  61.     //Name of loot backpack:
  62.     string lootBp = ("Blue Backpack");
  63.  
  64.     //Name of supplies backpack:
  65.     string supBp = ("Green Backpack");
  66.  
  67.     //Name of gold backpack:
  68.     string goldBp = ("Golden Backpack");
  69.  
  70.                                                                                                                                                 /*
  71.     +-+-+-+-+-+-+-+-+-+-+-+-+
  72.     |  Depot Settings       |
  73.     +-+-+-+-+-+-+-+-+-+-+-+-+
  74.                                                                                                                                                 */
  75.    
  76.     //Name of backpack inside depot box with multiple backpacks inside for loot:
  77.     string mainDpBp = ("Red Backpack");
  78.    
  79.     //Id of stackable items to deposit:
  80.     int[] stackables = {0, 3029, 3061, 238, 236, 237};
  81.  
  82.     //Id of non-stackable items to deposit:
  83.     int[] nonStackables = {0, 823, 8043, 815, 8083, 3297, 9666, 3049, 3098, 8050, 9303};
  84.  
  85.                                                                                                                                                 /*
  86.     +-+-+-+-+-+-+-+-+-+-+-+-+
  87.     |  Supplies Settings    |
  88.     +-+-+-+-+-+-+-+-+-+-+-+-+
  89.                                                                                                                                                 */
  90.    
  91.     //Name of mana potion to use:
  92.     string nameManaPot = ("mana potion");
  93.  
  94.     //Maximum amount of mana potions to carry:
  95.     int maxManaPot = 1000;
  96.  
  97.     //Minimum amount of mana potions to carry:
  98.     int minManaPot = 230;
  99.  
  100.     //Name of health potion to use:
  101.     string nameHealthPot = ("ultimate health potion");
  102.  
  103.     //Maximum amount of health potions to carry:
  104.     int maxHealthPot = 100;
  105.  
  106.     //Minimum amount of health potions to carry:
  107.     int minHealthPot = 20;
  108.  
  109.     //Minimum amount of capacity (cap):
  110.     int minCapacity = 100;
  111.    
  112.                                                                                                                                                 /*
  113.     +-+-+-+-+-+-+-+-+-+-+-+-+
  114.     |  Bank Settings        |
  115.     +-+-+-+-+-+-+-+-+-+-+-+-+
  116.                                                                                                                                                 */
  117.    
  118.     //Price of single mana potion:
  119.     int priceManaPot = 50;    
  120.  
  121.     //Price of single health potion:
  122.     int priceHealthPot = 310;
  123.  
  124.     //Extra amount to withdraw (for trips and others):
  125.     int extraCash = 2000;
  126.  
  127.                                                                                                                                                 /*
  128.     +-+-+-+-+-+-+-+-+-+-+-+-+
  129.     |  Extra Settings       |
  130.     +-+-+-+-+-+-+-+-+-+-+-+-+
  131.                                                                                                                                                 */
  132.  
  133.     //Minimun amount of Worn Soft Boots to go repair:
  134.     int minWornSbCount = 1;
  135.  
  136.     //Server type (PVP or OPT-PVP):
  137.     string serverType = ("PVP");
  138.    
  139.                                                                                                                                                 /*
  140.     +-+-+-+-+-+-+-+-+-+-+-+-+
  141.     |  Waypoint Options     |
  142.     +-+-+-+-+-+-+-+-+-+-+-+-+
  143.                                                                                                                                                 */
  144.  
  145.     //Go direct to lower floor (levitate mode):
  146.     string directLow = ("no");
  147.    
  148.     //Go to lower floor:
  149.     string lowerFloor = ("no");
  150.    
  151.     //Stay on lower floor (considering no direct lower floor option):
  152.     string stayLowerFloor = ("no");
  153.    
  154.     //To stay on top floor only just disable all options.
  155.                                                                                                                                                
  156.                                                                                                                                                
  157.  
  158.  
  159. /*-------------------------------------------------------------------------------------------------------------------------------------------
  160.  
  161.                                 --  BlakW Scripts / 2010 - 2012      Visit: www.BlakW.com  --
  162.  
  163. -------------------------------------------------------------------------------------------------------------------------------------------*/