Jump to content

over

Miembro
  • Contador contenido

    7
  • Ingreso

  • Última visita

Mensajes publicados por over

  1. hola, tengo una duda, miren coloque la dugeon coloque la parte de la quest, los archivos en data > dugueon >  puse la carpeta  con los regent, le di permiso 777, cree en el mob proto y los id de los los mob igual que apareden en el regen y en la quest. y ise el reboot. la cosa es que cuando hablo con el npc que me envia al mapa, me aparecen en el mapa, las metines, pilares, monumento y jefes. no me toma la dugeon es decir no me sale la mision ni los mob del video. es como que mescla todo en un solo lugar.

    les dejo la quest.  " aclaro la dugeon esta semi traducida". que puede ser el error

     

    Debes iniciar sesión para ver el contenido del enlace en esta publicación.

  2. hola, me descargue los files eternia2 con cliente,source y binario, como servidor de base para empezar a crear mi primer server. enpese editando el source el cual le agrege el 6 y 7  bonus

    pero tengo un problema, el agregador de 6/7 bonus funciona bien, pero el cambiador no me lo toma, cuando arastro el cambiador al item este se pone en rojo. como si fuera un item prohibido o sin funcion alguno . les paso el char_item que edite. y la parte del item_proto.txt

    char_item.cpp

    Quote

    case 71051 : // 진재가
                                    {
                                        // 유럽, 싱가폴, 베트남 진재가 사용금지
                                        LPITEM item2;

                                        if (!IsValidItemPosition(DestCell) || !(item2 = GetInventoryItem(wDestCell)))
                                            return false;

                                        if (item2->IsExchanging() == true)
                                            return false;

                                        if (item2->GetAttributeSetIndex() == -1)
                                        {
                                            ChatPacket(CHAT_TYPE_INFO, LC_TEXT("속성을 변경할 수 없는 아이템입니다."));
                                            return false;
                                        }

                                        if (item2->AddRareAttribute() == true)
                                        {
                                            ChatPacket(CHAT_TYPE_INFO, LC_TEXT("성공적으로 속성이 추가 되었습니다"));

                                            int iAddedIdx = item2->GetRareAttrCount() + 4;
                                            char buf[21];
                                            snprintf(buf, sizeof(buf), "%u", item2->GetID());

                                            LogManager::instance().ItemLog(
                                                    GetPlayerID(),
                                                    item2->GetAttributeType(iAddedIdx),
                                                    item2->GetAttributeValue(iAddedIdx),
                                                    item->GetID(),
                                                    "ADD_RARE_ATTR",
                                                    buf,
                                                    GetDesc()->GetHostName(),
                                                    item->GetOriginalVnum());

                                            item->SetCount(item->GetCount() - 1);
                                        }
                                        else
                                        {
                                            ChatPacket(CHAT_TYPE_INFO, LC_TEXT("더 이상 이 아이템으로 속성을 추가할 수 없습니다"));
                                        }
                                    }
                                    break;

                                case 71052 : // 진재경
                                    {
                                        // 유럽, 싱가폴, 베트남 진재가 사용금지
                                        LPITEM item2;

                                        if (!IsValidItemPosition(DestCell) || !(item2 = GetItem(DestCell)))
                                            return false;

                                        if (item2->IsExchanging() == true)
                                            return false;

                                        if (item2->GetAttributeSetIndex() == -1)
                                        {
                                            ChatPacket(CHAT_TYPE_INFO, LC_TEXT("속성을 변경할 수 없는 아이템입니다."));
                                            return false;
                                        }

                                        if (item2->ChangeRareAttribute() == true)
                                        {
                                            char buf[21];
                                            snprintf(buf, sizeof(buf), "%u", item2->GetID());
                                            LogManager::instance().ItemLog(this, item, "CHANGE_RARE_ATTR", buf);

                                            item->SetCount(item->GetCount() - 1);
                                        }
                                        else
                                        {
                                            ChatPacket(CHAT_TYPE_INFO, LC_TEXT("변경 시킬 속성이 없습니다"));
                                        }
                                    }
                                    break;

    item_proto.txt

    Quote

    71051    anadir bonus 6/7    ITEM_USE    USE_SPECIAL    1    ANTI_MYSHOP    STACKABLE | LOG    NONE    NONE    0    0    0    0    0    LIMIT_NONE    0    LIMIT_NONE    0    APPLY_NONE    0    APPLY_NONE    0    APPLY_NONE    0    0    0    0    0    0    0    0    0    0     

       
    71052    cambio de bonus 6/7    ITEM_USE    USE_SPECIAL    1    ANTI_MYSHOP    STACKABLE | LOG    NONE    NONE    0    0    0    0    0    LIMIT_NONE    0    LIMIT_NONE    0    APPLY_NONE    0    APPLY_NONE    0    APPLY_NONE    0    0    0    0    0    0    0    0    0    0        

     

     

     

     

    ×
    ×
    • Crear nuevo...