Jump to content

Салом

Banned
  • Posts

    50
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Posts posted by Салом

  1. 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;
    }

     

    • Love 1
  2. Acum 2 ore, 3talla a spus:

    Can you explain more to me?, if you can provide me with pictures to explain, I will be grateful to you.

    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.

    • Love 2
  3. Acum 1 oră, hachiwari a spus:

    I didnt read all code, but your names of function or variable is strange xD

    tip. read a book cleancode

    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

    • Confused 1
    • Love 5
  4. 1 oră în urmă, Dr3Ame3r a spus:

    Hello, can you please provide us a GDB report regarding your server crash?

    If you don't have a ".core" file, how did you find out that your server crashed?

     

    Please provide the output of the following commands too:

    dmesg

    tail -f /var/log/messages

     

    :facepalm:

     

    		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

     

    Acum 12 ore, .Avenue™ a spus:

    Process: FDWATCH: peer null in event: ident 21

    number 21.
     

  5. Acum 44 minute, Sandbone a spus:

    bump

    C'mon guys. Let's get some extra money.

    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

  6. Acum 17 ore, tierrilopes a spus:

    Build a Python lib on dynamic instead of static. Or use lib from original source

    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.

     

    xT7mrp4pSSyRzWQ2akJHlQ.png

×
×
  • 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.