Jump to content

Mano

Premium
  • Posts

    196
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Mano

  1. root/constinfo.py

    edit

    Spoiler

    def IS_ACCE_ITEM(itemVnum, abs):
        if itemVnum >= 85001 and itemVnum <= 85003:
            return TRUE
        elif itemVnum >= 85005 and itemVnum <= 85007:
            return TRUE
        
        if abs == 1 and itemVnum == 85004 or abs == 1 and itemVnum == 85008:
            return TRUE
        
        return FALSE

    to be like

    Spoiler

    def IS_ACCE_ITEM(itemVnum, abs):
        if itemVnum >= 85001 and itemVnum <= 85003:
            return TRUE
        elif itemVnum >= 85005 and itemVnum <= 85007:
            return TRUE
        elif itemVnum >= 85011 and itemVnum <= 85014:
            return TRUE
        elif itemVnum >= 85015 and itemVnum <= 85018:
            return TRUE
        
        if abs == 1 and itemVnum == 85004 or abs == 1 and itemVnum == 85008 or abs == 1 and itemVnum == 85014 or abs == 1 and itemVnum == 85018:
            return TRUE
        
        return FALSE

    and try to add it now

  2. hey

    as you can see in this image

    0b37404961f603.gif

    in official when compine the sashes the both has active slot effect like this image

    0b37404961f600.gif

     

    So anyone know a fix for this problem

    and there is another little problem

    the sash color is black but when moving it become bright

    if anyone know a fix for these two problems i'll be glad for that

  3. 1 hour ago, Jodie said:

    Just look at UserInterface.cpp and find 'python2.lib' with 'python27.lib' if you're using python 2.7. 'python22.lib' if you don't.

    - Jodie

    i tried what you said

    i changed

    Spoiler

    #pragma comment( lib, "python2.lib" )

    with

    Spoiler

    #pragma comment( lib, "python27.lib" )

    and still have the same problem

    Spoiler

    Error    13    error LNK1104: cannot open file 'python2.lib'    D:\Client Source\Lite Source\Backup\Client\UserInterface\LINK

     

  4. hey all

    i'd faced a strange error while compiling client source on vs 2012

    this is the error

    Spoiler

     error C1083: Cannot open include file: 'initializer_list': No such file or directory    E:\Beta3\Source\Client Source\Extern\include\boost\unordered\unordered_map.hpp    27

     

    I can compile it on vs 2013 but on Win7 the only version of vs which is working is 2012 not 2013

    so any idea how to fix ?

  5. 1 hour ago, Nickas said:

    open New_PetSystem.cpp

    search in function of bool CNewPetActor::Update(DWORD deltaTime)

      Hide contents

        if (m_pkOwner->IsDead() || (IsSummoned() && m_pkChar->IsDead()) || (IsSummoned() && (m_pkOwner->GetExchange() || m_pkOwner->GetMyShop() || m_pkOwner->GetShopOwner() || m_pkOwner->IsOpenSafebox() || m_pkOwner->IsCubeOpen() || m_dwduration <= 0))
            || NULL == ITEM_MANAGER::instance().FindByVID(this->GetSummonItemVID())
            || ITEM_MANAGER::instance().FindByVID(this->GetSummonItemVID())->GetOwner() != this->GetOwner()
            )
        {
            this->Unsummon();
            return true;
        }

    change to:

      Reveal hidden contents

        if (m_pkOwner->IsDead() || (IsSummoned() && m_pkChar->IsDead()) || (IsSummoned() && (m_pkOwner->IsCubeOpen() || m_dwduration <= 0))
            || NULL == ITEM_MANAGER::instance().FindByVID(this->GetSummonItemVID())
            || ITEM_MANAGER::instance().FindByVID(this->GetSummonItemVID())->GetOwner() != this->GetOwner()
            )
        {
            this->Unsummon();
            return true;
        }

     

    Fixed

    thanks dude

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