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

Форум администраторов игровых серверов (https://forum.zone-game.info/TT.php)
-   Работа со скриптами (https://forum.zone-game.info/forumdisplay.php?f=37)
-   -   Admin command (https://forum.zone-game.info/showthread.php?t=3507)

ElectroMySty 26.04.2009 10:08

Admin command
 
Сборка: L2J Server Interlude (исходники)


Суть проблемы: вот есть у меня от l2Archid самая простая команда ".online" :
PHP код:

package com.l2jarchid.gameserver.handler.voicedcommandhandlers;

import com.l2jarchid.gameserver.handler.IVoicedCommandHandler;
import com.l2jarchid.gameserver.model.L2World;
import com.l2jarchid.gameserver.model.actor.instance.L2PcInstance;
import com.l2jarchid.gameserver.network.SystemMessageId;
import com.l2jarchid.gameserver.network.serverpackets.SystemMessage;

public class 
Online implements IVoicedCommandHandler
{
    private static 
String[] _voicedCommands =
    {
        
"online"
    
};

    public 
boolean useVoicedCommand(String commandL2PcInstance activeCharString target)
    {
        if (
command.equalsIgnoreCase("online"))
        {
             
SystemMessage sm = new SystemMessage(SystemMessageId.S1_S2);
            
sm.addString("======<Players Online!>======");
            
activeChar.sendMessage(" " L2World.getInstance().getAllPlayers().size() + " игрок(ов) online!.");
            
sm.addString("=======================");
        }
        return 
true;
    }
    
    public 
String[] getVoicedCommandList()
    {
        return 
_voicedCommands;
    }


Суть её работы показовать онлайн людей на сервере.

Вопрос: Можно ли её прикрепить к моим исходникам L2J server Interlude(последней ревизии), если можно объясните как это сделать?

PROGRAMMATOR 26.04.2009 12:16

Ответ: Admin command
 
А Вы пытались вникнуть в код?
PHP код:

import com.l2jarchid.gameserver.model.actor.instance.L2PcInstance

PHP код:

import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance


ElectroMySty 26.04.2009 17:11

Ответ: Admin command
 
нет, а что там? :о :\


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

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