Jump to content

PixelTheory

Member
  • Posts

    4
  • Joined

  • Last visited

  • Feedback

    0%

About PixelTheory

Informations

  • Gender
    Not Telling

PixelTheory's Achievements

Rookie

Rookie (2/16)

  • Conversation Starter
  • Dedicated
  • Reacting Well
  • First Post
  • Week One Done

Recent Badges

0

Reputation

  1. If I'm not mistaken, in the qc.cc after searching `// make when argument` i should replace what's below with ostringstream os; while (lexstate.lookahead.token == '.') { next(&lexstate); os << '.'; next(&lexstate); t = lexstate.t; if (t.token == TK_NAME) { os << getstr(t.seminfo.ts); // Append the function name if (lexstate.lookahead.token == '(') { os << '('; // Append the opening parenthesis lookahead(&lexstate); // Parse function arguments while (lexstate.lookahead.token != ')') { os << lexstate.t; lookahead(&lexstate); } os << ')'; // Append the closing parenthesis lookahead(&lexstate); } } else { os << t; } lookahead(&lexstate); } current_when_argument += os.str(); I'm going to test it out, and come back, but if somebody knows, you could let me know. Thanks.
  2. Hello i have a couple of questions regarding LUA scripting for a quest. 1. Can i use the npc.chat."some text" function with a function that returns a string? I tried but it didn't work. Example: ```lua npcVNUM.chat.someFuncReturningString() ``` 2. by using the 'define' keyword can i define an array on the top of the lua script? Because although i tried, when i compile my code, i get error when trying to iterate this array. When Im using the same array as a local variable there it's no problem, it compiles. Thanks for your time.
  3. I've changed Lzo and Xtea, first in my .exe then unpacked the files of pack with eternexus changed the lzo xtea keys in eternexus as well packed them all put them back in my client. The .exe opens i login the server but while loading the window close. Sysser: 0102 17:53:40183 :: LZObject: key incorrect 0102 17:53:40771 :: LZObject: key incorrect 0102 17:53:40787 :: LZObject: key incorrect 0102 17:53:40960 :: LZObject: key incorrect 0102 17:53:41128 :: LZObject: key incorrect 0102 17:53:41137 :: LZObject: key incorrect 0102 17:53:41144 :: LZObject: key incorrect 0102 17:53:41153 :: LZObject: key incorrect 0102 17:53:41159 :: LZObject: key incorrect 0102 17:53:41164 :: LZObject: key incorrect 0102 17:53:41181 :: LZObject: key incorrect 0102 17:53:41446 :: LZObject: key incorrect 0102 17:54:39903 :: CMapBase::LoadProperty(FileName=metin2_map_a1MapProperty.txt) - LoadMultipleTextData ERROR ÆÄÀÏÀÌ ¾øÀ» °¡´É¼ºÀÌ ¸¹½À´Ï´Ù. 0102 17:54:39903 :: CMapManager::LoadMap() Invalid Map Type 0102 17:54:39903 :: CPythonBackground::SelectViewDistanceNum(int eNum=0) mc_pcurEnvironmentData is NULL
×
×
  • 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.