Jump to content

Салом

Banned
  • Posts

    50
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by Салом

  1. You can't do that. You have to open wiki metin2 and make it manually
  2. Char.cpp bool CAN_NOT_RIDE_IN_THIS_MAP(int32_t map_index) { switch (map_index) { case 9999: // MAP INDEX OF MAP return true;; } return false; } CHAR.H bool CAN_NOT_RIDE_IN_THIS_MAP(int32_t map_index); QUESTLUA_PC // int pc_mount(lua_State* L) auto map_index = ch->GetMapIndex(); if (CAN_NOT_RIDE_IN_THIS_MAP(map_index)) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("blabla.")); return 0; }
  3. No one is a wizard to know, it can be anything. I suspect a system fucked, I mean the FreeBSD operating system. Not the server.
  4. Do you need pictures when u put penis in pussy ? </ Joke /> In item_proto you have a colum named specular, change the specular numbers maximum is 10 i think. Put specular 10 intro item_proto client, then repack Specular is shining intensity, and 1-10 is the power. You have to change these values in item_proto client.
  5. You need to set the specular value in item_proto client, if you change in server don't have effect
  6. Change whole serverfiles, if these basic functions don't work. Think about systems
  7. He sure know to write in english. He is doing in his own way, he only want to learn more programming. Don't complain about a free release, take the system and name how you want the variable names
  8. Is it possible to drive a car without a driver? Is it possible to drive a car without a engine? You better hire a developer or go play minecraft.
  9. if (!peer) { if (fdwatch_check_event(m_fdWatcher, m_fdAccept, idx) == FDW_READ) { AddPeer(m_fdAccept); fdwatch_clear_event(m_fdWatcher, m_fdAccept, idx); } else { sys_err("FDWATCH: peer null in event: ident %d", fdwatch_get_ident(m_fdWatcher, idx)); } continue; } int fdwatch_get_ident(LPFDWATCH fdw, unsigned int event_idx) { assert(event_idx < fdw->nfiles * 2); return fdw->kqrevents[event_idx].ident; } LPKEVENT kqrevents; typedef struct kevent* LPKEVENT; sys/event.h struct kevent { uintptr_t ident; /* identifier for this event */ short filter; /* filter for event */ u_short flags; u_int fflags; intptr_t data; void *udata; /* opaque user data identifier */ }; from kqueue documentation The fields of struct kevent are: ident Value used to identify this event. The exact interpretation is determined by the attached filter, but often is a file descriptor. Now use your brain and identify event with number 21.
  10. What do you mean by extra money? Regarding your problem, there is the possibility that the cause is the wrong implementation of the 4 inventories. Check the existing tutorials on the internet about the 4 inventories. Anyway, I sent you a private message. Your problem requires checks. xD
  11. In your head exploit. Do you even know what's an exploit?
  12. Compile the launcher in debug mode, starts a new debugging instance and make the crash happen.
  13. You should shut up, dog. If you're hungry go to work, do not cheat people anymore.
  14. I think you do not understand. He does not have the source at that private server, he wants to make PythonLoader functional. It does not help what you say about DynamicLib.
×
×
  • 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.