My Meph Bot is not Buying potions but lookat my config...and it wont by hp or mana pots at all wtf is the problem??



// Belt configuration
//================================================== ==================
// MXP_UseBeltManager = true/false Set to true if you want to be able to use the
// belt management to buy potions. May slow the bot.
//--------------------------------------------------------------------
MXP_UseBeltManager = true;
//--------------------------------------------------------------------
// Type of potion used in each belt column
// Available types : "hp" = health | "mp" = mana | "rv" = rejuv. Can use other potion types too (untested!).
// Keep equal types at adjacent columns. First HP then MP and then HP again is a bad choice.
// Keep HP and MP at the beginning of the belt (in case you want to use rejuv and other types).
// Rejuvenations MUST, I REPEAT MUST be at the end of the belt (last x columns).
// To use rejuvenations only, put "rv" in all columns.
//--------------------------------------------------------------------
DT_BeltColType[0]="mp"; // Column 1 in belt
DT_BeltColType[1]="mp"; // Column 2
DT_BeltColType[2]="hp"; // 3
DT_BeltColType[3]="hp"; // Yep, you guessed it, 4.
//--------------------------------------------------------------------
// Minimum amount of potions in each column before needing refilling
// If there's less potions then this number in the column we go and shop.
// Set to 4 to go shopping as soon as there's a potion missing.
// Recommend leaving columns set to "rv" at 0. Since shops won't carry rejuvs.
//--------------------------------------------------------------------
DT_BeltColMin[0]=3;
DT_BeltColMin[1]=3;
DT_BeltColMin[2]=3;
DT_BeltColMin[3]=0;




My Configs are right arnt they?