Jump to content

Error server syserr Questlua_Global.cpp


Recommended Posts

Hi there!

I would like to know if ou can please help me. I keep getting this error on the syserr serverside and i cant understand what it means :S 

The error is:

SYSERR: Jun 25 01:05:55 :: number_ex: number(): first argument is bigger than second argument 1 -> 0, questlua_global.cpp 144

The content of questlua_global.cpp 144 is:

    int _number(lua_State* L)
    {
        if (!lua_isnumber(L, 1) || !lua_isnumber(L, 2))
            lua_pushnumber(L, 0);
        else
            lua_pushnumber(L, number((int)lua_tonumber(L, 1), (int)lua_tonumber(L, 2)));
        return 1;
    }

The line 144 is:

            lua_pushnumber(L, number((int)lua_tonumber(L, 1), (int)lua_tonumber(L, 2)));

 

Can someone please tell me what this error means? I thougth it could come from quests, however this error persists even without any quests installed :S

 

Thank you for your time.

Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.