Форум администраторов игровых серверов

Форум администраторов игровых серверов (https://forum.zone-game.info/TT.php)
-   Lineage II (https://forum.zone-game.info/forumdisplay.php?f=34)
-   -   tutorial guide, mixing manual (https://forum.zone-game.info/showthread.php?t=11699)

SkAvenger 21.12.2010 23:02

tutorial guide, mixing manual
 
как сделать чтобы при клики на айтем в рюкзаке открывалась определенная htm`ка?
аля tutorial guide, mixing manual

incognito 22.12.2010 21:38

Re: tutorial guide, mixing manual
 
например сделать 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;
        }
}



Текущее время: 06:31. Часовой пояс GMT +3.

Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd. Перевод: zCarot