What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

How to modify LevelBotSettings.xml ?

jungly

New Member
Joined
Apr 19, 2010
Messages
394
Reaction score
5
What i'm trying to do:
I want my 10 accounts to mail to a specific 'toon'. I would change "mailing toonname" randomly throughout the week at my discretion via a windows 'scheduled task job'.

I dont want to manually change 10 accounts via the gui, but prefer to modify a single .xml file in one shot when all my bots are on downtime.

Question: can i delete all the LevelBotting_Toon<x>.xml , and leave only the default LevelBotting_.xml, so when i open the bots next day they all default to a new mailing toon?



Code:
<?xml version="1.0" encoding="utf-8"?>
<LevelbotSettings>
  <GroundMountFarmingMode>False</GroundMountFarmingMode>
  <FoodAmount>0</FoodAmount>
  <DrinkAmount>0</DrinkAmount>
  <FormLocationX>115</FormLocationX>
  <FormLocationY>145</FormLocationY>
  <SelectedBotIndex>0</SelectedBotIndex>
  <UseFlightPaths>False</UseFlightPaths>
  <FindMountAutomatically>True</FindMountAutomatically>
  <UseRandomMount>True</UseRandomMount>
  <MailRecipient></MailRecipient>
  <FoodName></FoodName>
  <DrinkName></DrinkName>
  <MountName></MountName>
  <LootMobs>True</LootMobs>
  <SkinMobs>False</SkinMobs>
  <NinjaSkin>False</NinjaSkin>
  <LootChests>True</LootChests>
  <HarvestMinerals>False</HarvestMinerals>
  <HarvestHerbs>False</HarvestHerbs>
  <UseMount>True</UseMount>
  <PullDistance>30</PullDistance>
  <LootRadius>45</LootRadius>
  <FindVendorsAutomatically>False</FindVendorsAutomatically>
  <TrainNewSkills>False</TrainNewSkills>
  <LearnFlightPaths>True</LearnFlightPaths>
  <LastUsedPath></LastUsedPath>
  <MountDistance>75</MountDistance>
  <RessAtSpiritHealers>False</RessAtSpiritHealers>
</LevelbotSettings>
 
Question: can i delete all the LevelBotting_Toon<x>.xml , and leave only the default LevelBotting_.xml, so when i open the bots next day they all default to a new mailing toon?

Quick answer: No, you can't.
 
After a more detailed look on your first post i understood whats your goal,but as wownerds said its not possible :(
 
You can create a simple C# CLI program passing as arg1 the new toon name, read the settings files and rewrite them with the edited node. Then you call it via the scheduled task.
 
Back
Top