Рейтинг темы:
  • 0 Голос(ов) - 0 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
tutorial guide, mixing manual
#1
как сделать чтобы при клики на айтем в рюкзаке открывалась определенная htm`ка?
аля tutorial guide, mixing manual
Ответ
#2
например сделать handler Для сия итема:
Код:
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package org.efi.gameserver.handler.items;

import org.efi.gameserver.handler.IItemHandler;


public class Item implements IItemHandler
{
    
    public void useItem(L2PlayableInstance playable, L2ItemInstance item)
    {
        int itemId = item.getItemId();
        L2PcInstance activeChar = (L2PcInstance) playable;
        {...}<-- Здесь побаловать со стринг/техт билдером
        activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false); // Remove item from char's inventory
        
        activeChar = null;
        castle = null;
    }
}
Ответ


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


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