EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Development::Development (https://www.eqemulator.org/forums/forumdisplay.php?f=590)
-   -   Straits fix to perlparser.cpp (quest::me, quest::echo, ect) (https://www.eqemulator.org/forums/showthread.php?t=23181)

Striat 07-09-2007 02:10 PM

The problem seems to be:

Code:

        XS_VERSION_BOOTCHECK ;
                newXS(strcpy(buf, "echo"), XS__say, file);
                newXS(strcpy(buf, "say"), XS__say, file);
                newXS(strcpy(buf, "me"), XS__say, file);

in perlparser.cpp

Change it to:

Code:

        XS_VERSION_BOOTCHECK ;
                newXS(strcpy(buf, "echo"), XS__echo, file);
                newXS(strcpy(buf, "say"), XS__say, file);
                newXS(strcpy(buf, "me"), XS__me, file);

Recompile and it should work fine for you.

Angelox 07-19-2007 09:10 PM

This works, I just tested it

gernblan 08-08-2007 09:31 PM

I hope this makes it into the tree.


All times are GMT -4. The time now is 07:34 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.