Results 1 to 9 of 9

Thread: Budabot, the new server, and you

  1. #1

    Exclamation Budabot, the new server, and you

    Hi, guys!

    With the new server your good old org, raid and other Budabots will probably have died because they can't connect to the server. Well - ofcourse they can't, it's a new server!

    Basically, you will need to do the following. Patch the file /core/BotRunner.php from line 208.

    For Budabot 3.0, replace:
    Code:
       protected function getServerAndPort() {
          global $vars;
          // Choose server
          if ($vars['use_proxy'] === 1) {
             // For use with the AO chat proxy ONLY!
             $server = $vars['proxy_server'];
             $port = $vars['proxy_port'];
          } else if ($vars["dimension"] == 1) {
             $server = "chat.d1.funcom.com";
             $port = 7101;
          } else if ($vars["dimension"] == 2) {
             $server = "chat.d2.funcom.com";
             $port = 7102;
          } else if ($vars["dimension"] == 4) {
             $server = "chat.dt.funcom.com";
             $port = 7109;
          } else {
             LegacyLogger::log('ERROR', 'StartUp', "No valid server to connect with! Available dimensions are 1, 2, 4 and 5.");
             sleep(10);
             die();
          }
          return array($server, $port);
       }
    With:

    Code:
       protected function getServerAndPort() {
          global $vars;
          // Choose server
          if ($vars['use_proxy'] === 1) {
             // For use with the AO chat proxy ONLY!
             $server = $vars['proxy_server'];
             $port = $vars['proxy_port'];
          } else if ($vars["dimension"] == 1) {
             $server = "chat.d1.funcom.com";
             $port = 7101;
          } else if ($vars["dimension"] == 2) {
             $server = "chat.d2.funcom.com";
             $port = 7102;
          } else if ($vars["dimension"] == 4) {
             $server = "chat.dt.funcom.com";
             $port = 7109;
          } else if ($vars["dimension"] == 5) {
             $server = "chat.d1.funcom.com";
             $port = 7105;
          } else {
             LegacyLogger::log('ERROR', 'StartUp', "No valid server to connect with! Available dimensions are 1, 2, 4 and 5.");
             sleep(10);
             die();
          }
          return array($server, $port);
       }
    Then update your config.php file to use server "5":
    Code:
    $vars['dimension']  = 5;
    For Budabot 2.3 you will make the same change except in a different file. Make the change in /main.php starting on line 130.
    We'll put out a proper 3.0_RC6 or 3.0 GA as fast as possible with these changes.

    And as always, if you need help with Budabot (with this or otherwise) you can
    1. Reply here
    2. Go to http://budabot.com/forum
    3. Drop by in irc://irc.funcom.com:6667/#budabot
    4. '/tell Budanet !join' - there's usually someone around to help (note: give us a few to get Budanet running on the new server. This is basically dependent on when Tyrence's boss lets him get off work. :P )
    Last edited by Arguru; Feb 27th, 2013 at 01:14:39.

  2. #2
    Secondly, please keep in mind that a few functions rely (indirectly) on the People of Rubi-Ka database to be available and functioning. Until Funcom has this fixed you may experience problems with player lookups through '!whois', '!orghistory', etc.

  3. #3
    <3 Man if you lived near me i would do things to you. You dont even know!
    Communistic 220/70/30 Shade AKA CommuSoGood.
    Africa
    220/70/30 Shade

  4. #4
    I wanted some clarification on database file, is it possible to copy the old db/prefs over (which I saved) to updated bot post merge? My bot is up and running (buda) but i cant seem to get old friends list to stick. It also won't unlock to allow anyone to join unless I manually adduser. Is there a better more efficient way?
    ~Anyone can level, but only the wise gain experience~

    *Bronto Burger, serving 10,000 high level noobs daily*

    http://wolf-brigade.webs.com/

    My Story

    Don't feed the Mensa Tralalalala

    Everyday I'm Shuffling.

  5. #5
    Quote Originally Posted by Psikie View Post
    I wanted some clarification on database file, is it possible to copy the old db/prefs over (which I saved) to updated bot post merge?
    Please see the instructions at: http://budabot.com/forum/viewtopic.php?p=4329#p4329

  6. #6
    tyvm
    ~Anyone can level, but only the wise gain experience~

    *Bronto Burger, serving 10,000 high level noobs daily*

    http://wolf-brigade.webs.com/

    My Story

    Don't feed the Mensa Tralalalala

    Everyday I'm Shuffling.

  7. #7
    Hi i am having trouble with my bot, I have got it up and running again after the merge but it kees coming up with the error guildcontroller - error downloading the guild roster xml file. can anyone help me please?
    Billy216
    Wolfsmeta
    Wolfman216
    GordonRamsay

  8. #8

  9. #9

    Smile

    hi noi didn't try that b4, but I have just changed it and my bot now works. thanks for your help
    Billy216
    Wolfsmeta
    Wolfman216
    GordonRamsay

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •