Рейтинг темы:
  • 0 Голос(ов) - 0 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
Доработки сборки L2Phoenix 19748 rev.
#1
Куплю рабочий полностью готовый к употреблению комунити борд со скриптами под сборку 19748(!) ревизии,а так же фикс для нормального функционирования рестарта сервера. Цены прошу называть разумные.
Ответ
#2
Фикс рестарта в ядре 19749 есть, разве что декомпилом можно пофиксить.
Ответ
#3
декомпил сделать и ошибка исправится?Big Grin
Ответ
#4
Жду сообщений по теме...
Ответ
#5
наврятли это будет так как ни у кого нет исходников сией зборки и по этому фиг что сделют
а комунити борд можно и самому начиркать
ЛЮДИ ВКЛЮЧИТЕ ВАШИ МОЗГИ
а то китайцы уже андроидов в телефоны пихают
Nokia N810
[Изображение: Bez_nazvy-2.png]
[Изображение: account_detailed.gif]
Ответ
#6
Devilop Написал:наврятли это будет так как ни у кого нет исходников сией зборки и по этому фиг что сделют
а комунити борд можно и самому начиркать

Я бы начиркала,может быть,но нет скриптов,которые под эту сборку работают.. Вот что выдает ГС при попытке обработать один из скриптов PvP комунити для 18 ревизии

Код:
1. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 6)
        import l2p.gameserver.model.Inventory;
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import l2p.gameserver.model.Inventory cannot be resolved
----------
2. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 10)
        import l2p.gameserver.model.instances.L2ItemInstance;
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import l2p.gameserver.model.instances.L2ItemInstance cannot be resolved
----------
3. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 80)
        L2ItemInstance WeaponInSlot = null;
        ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
4. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 82)
        L2ItemInstance weaponType = player.getInventory().getPaperdollItem(Inven
tory.PAPERDOLL_RHAND);
        ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
5. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 82)
        L2ItemInstance weaponType = player.getInventory().getPaperdollItem(Inven
tory.PAPERDOLL_RHAND);
                                                                           ^^^^^
^^^^
Inventory cannot be resolved
----------
6. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 84)
        if(weaponType != null && weaponType.getEquipSlot() == Inventory.PAPERDOL
L_RHAND)
                                                              ^^^^^^^^^
Inventory cannot be resolved
----------
7. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 89)
        weaponType = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_
LRHAND);
                                                            ^^^^^^^^^
Inventory cannot be resolved
----------
8. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 90)
        if(weaponType != null && weaponType.getEquipSlot() == Inventory.PAPERDOL
L_LRHAND)
                                                              ^^^^^^^^^
Inventory cannot be resolved
----------
9. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\EnchC
B.java (at line 137)
        L2ItemInstance armorInChestSlot = null;
        ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
10. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 138)
        final L2ItemInstance armor = player.getInventory().getPaperdollItem(Inve
ntory.PAPERDOLL_CHEST);
              ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
11. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 138)
        final L2ItemInstance armor = player.getInventory().getPaperdollItem(Inve
ntory.PAPERDOLL_CHEST);
                                                                            ^^^^
^^^^^
Inventory cannot be resolved
----------
12. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 155)
        if(armor != null && armor.getEquipSlot() == Inventory.PAPERDOLL_CHEST)
                                                    ^^^^^^^^^
Inventory cannot be resolved
----------
13. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 160)
        for(final L2ItemInstance item : player.getInventory().getItems())
                  ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
14. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 160)
        for(final L2ItemInstance item : player.getInventory().getItems())
                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Type mismatch: cannot convert from element type l2p.gameserver.model.items.L2Ite
mInstance to L2ItemInstance
----------
15. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 195)
        final FastList<L2ItemInstance> equiped = new FastList<L2ItemInstance>();

                       ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
16. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 195)
        final FastList<L2ItemInstance> equiped = new FastList<L2ItemInstance>();

                                                              ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
17. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 197)
        for(final L2ItemInstance item : player.getInventory().getItems())
                  ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
18. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 197)
        for(final L2ItemInstance item : player.getInventory().getItems())
                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Type mismatch: cannot convert from element type l2p.gameserver.model.items.L2Ite
mInstance to L2ItemInstance
----------
19. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 216)
        for(final L2ItemInstance jewel : equiped)
                  ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
20. ERROR in D:\phoenix1\gameserver\data\scripts\services\PVPCommunityBoard\Ench
CB.java (at line 330)
        final L2ItemInstance Coin = player.getInventory().getItemByItemId(MONEY_
ID);
              ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
Ответ
#7
Анна и ИгорьJZ Разводилы с ними лучьше дел неиметь... Если надо есть доказательства.
Ответ
#8
Mangol,

Обо мне пожалуйста поконкретнее.

З.Ы.: Деньги перевожу вперед.
Ответ
#9
Я уже сказал мнение о вас 2-их. Каму интиресно мне в аську докажу покажу кто они такие.
Ответ
#10
получил от мангола предоставленые логи переписки
могу подтвердить что Анна разводит людей как и ИгорьJZ так как они в одной компании
ЛЮДИ ВКЛЮЧИТЕ ВАШИ МОЗГИ
а то китайцы уже андроидов в телефоны пихают
Nokia N810
[Изображение: Bez_nazvy-2.png]
[Изображение: account_detailed.gif]
Ответ


Возможно похожие темы ...
Тема Автор Ответы Просмотры Последний пост
  Aion сборки - по 5к продам LabertyDev 1 2,742 06-30-2020, 01:52 AM
Последний пост: ALeKsIuS
  ПТС сборки от команды AdvExt64 Xeonc 226 101,277 11-27-2019, 02:40 AM
Последний пост: Xeonc
  Сборки High Five Part 5, Freya DiagoD 63 28,053 12-17-2018, 11:06 AM
Последний пост: DiagoD
  Сборки Айон Salamandra 0 1,943 03-21-2018, 06:15 PM
Последний пост: Salamandra
  Компил сборки EmuRT Gracia Part 2 GOODPower 0 759 07-30-2016, 09:04 PM
Последний пост: GOODPower
  Продажа сборки Pain-Team DarvinEW 3 1,309 11-17-2015, 12:52 PM
Последний пост: Lucerat
  Запросы для сборки L2dev на GHTWeb 4 isuchone 3 1,254 10-09-2015, 08:33 AM
Последний пост: Kampina
  [ПРОДАЖА] Сборки с дополнения. Spectrum 3 1,841 05-14-2015, 11:39 AM
Последний пост: Spectrum
  Продажа Птс Сборки+Защита Interlude gmsum 1 1,630 08-23-2014, 08:42 AM
Последний пост: moveton
  Исходники сборки Lindvior Attack3Z 3 1,739 07-24-2014, 06:08 PM
Последний пост: Auri

Перейти к форуму:


Пользователи, просматривающие эту тему: 4 Гость(ей)