Page 1 of 1

[NOT A BUG] Error compiling Buddy List

Posted: 20 Jan 2007, 01:12
by KaTSuo
Hi !

I'm trying to enable the Buddy List feature in TMW 0.0.22 but when I try to compile it, I get an error...

Code: Select all

obj/popupmenu.o(.text+0x14db): In function `ZN9PopupMenu10handleLinkERKSs':
C:/Documents and Settings/Rémi Le Talludec/Mes documents/RPG Maker/TheManaWorld/tmw-0.0.22-evol/src/gui/popupmenu.cpp:164: undefined reference to `buddyList'
collect2: ld returned 1 exit status

make.exe: *** [evol.exe] Error 1

Execution terminated
It seems that the problem is in this portion of code... :

Code: Select all

// Add Buddy action
    else if ((link == "buddy") && mBeing != NULL)
    {
        if (!buddyWindow->isVisible())
            buddyWindow->setVisible(true);

        buddyList->addBuddy(mBeing->getName());
    }

Posted: 20 Jan 2007, 02:50
by Crush
Those lines that mention a buddy list are commented out for a reason: The buddy list is not implemented completely and it is unlikely that anyone of the tmw team will finish the implementation of it in the 0.0 branch. So when you want a buddy list in evol you have to do some coding yourself.

Posted: 20 Jan 2007, 09:48
by i
guichan 0.0.6 is the answer :D

Posted: 20 Jan 2007, 11:07
by KaTSuo
Ok thanks for your reply. I'll try...

Posted: 20 Jan 2007, 11:49
by Matt
BECK rules.