Jump to content

1g0rS1lv4

Community
  • Content Count

    141
  • Joined

  • Last visited

  • Days Won

    15

Posts posted by 1g0rS1lv4


  1. 50 minutes ago, Myrddin said:

    Bug Title: Tickets do not always work

    Bug Description: Sometimes I can use Tickets (to Argent, Icicle, Shaitan) to teleport. Other times, nothing happens and item is not consumed

    How to replicate: Double click one of the tickets. Most of the time nothing happens

    Status: OPEN

    Author (whoever that fixes it):

    the tickets if I'm not mistaken you have to forward all the ItemUse of the tickets found on iteminfo for a new function that can be found in lua / plugins / ticket.lua 

    something like that I'm not on the computer.

    Sorry for bad inglish.


  2. Bug Title: when logging out of his character he disappears
    Bug Description: when logging out of his character he disappears
    How to replicate: when logging out of his character he disappears
    Status: CLOSED
    Author (whoever that fixes it): Eviles and GustavoHMA Reported Error location.

    opens the ItemContent.h file located at: Client\Common\common\include

     search for the function:   

    short    sNeedLv;

    and above it add this:

    bool bIsLock;

    getting like this:

    image.png.e53d779537e6eaf23134655aa7bfa99e.png

    now search for this function:

    inline SItemGrid :: SItemGrid (short sId, short sINum)

    find:

    sNeedLv = 0;

    and above it add this:

    bIsLock = 0;

    getting like this:

     

    image.png.484ebd4675f3cca662d000d214fdd570.png

    • Like 3
    • Thanks 2

  3. 33 minutes ago, blankode said:

    Hello, anyone experiencing this ? Can't see the lamb mount and I started copying stuff from one client to another, but always ending up with the working client showing a blue screen.

     

    image.png.ec33dc43e7cd0f8c8880501f3e6a33da.png

     

     

    any toughts ?

    did you throw MindPower3D_D8R in your system folder? or if you are using Corsair resolutions, you may be missing the CameraConf1024.clu file.


  4. Bug Title: Item Price on Invertory
    Bug Description: Item Price on inventory is not divided by 2 which means it shows same Trade Value as you see at NPC
    How to replicate: Visit any npc and buy any item, the Trade Value of that item will be same even after you purchase it!
    Status: CLOSED
    Author (whoever that fixes it):....

    open UIItemCommand.cpp and search for: 

     

    sprintf( buf, g_oLangRec.GetString(674), StringSplitNum( isMain ? _nPrice / 2 : _nPrice ) );

    replace with

    sprintf( buf, g_oLangRec.GetString(674), StringSplitNum(  _ItemData.sNum != 0 ? _nPrice / 2 : _nPrice ) );
    		

     

    • Like 1
    • Thanks 1

  5. website is not difficult to find and configure, you may be downloading a variety of websites from Public Link.

    to configure the website after having downloaded it, and some program to be able to run as Ex: Xampp or Zend, just go to the folder it is located in my case and this one: 😄 \ xampp \ htdocs \ includes \ inc.config .php.

     

    Public Link

    AutoPatcher Thor

    PKO Dev Guides

     

     

    I'm sorry for the bad English.

    • Like 1

  6. 50 minutes ago, bayne94 said:

    Hello,

     

    I'm getting the "MsgProc: function option unknown function" error when I try to add a function to an NPC that gives skills automatically.

     

    I added the function to the MsgProc function in npcsdk.lua

     

    Any assistance is appreciated. I'm using this as a guide:

     

    Add in Server File/lua/plugin/

     

     

    Capture+_2019-09-02-01-31-43.png

×
×
  • Create New...