Register for your free account! | Forgot your password?

Go Back   elitepvpers > General > Main
You last visited: Today at 19:30

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Suche ein forum-"abteil"

Discussion on Suche ein forum-"abteil" within the Main forum part of the General category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2010
Posts: 10
Received Thanks: 0
Suche ein forum-"abteil"

Finde keinen passenden ort wo das rein soll. zudem finde ich nicht das forum wo man die codes oder so posten kann klinkt zwar dämlich aber es ist war

/* Created by St0rm.net
*
* This file is part of aion-emu <aion-emu.com>.
*
* aion-emu 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 3 of the License, or
* (at your option) any later version.
*
* aion-emu 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 aion-emu. If not, see <http://www.gnu.org/licenses/>.
*/
package admincommands;

import java.util.Iterator;

import com.aionemu.gameserver.configs.administration.Admi nConfig;
import com.aionemu.gameserver.model.gameobjects.player.Pl ayer;
import com.aionemu.gameserver.utils.PacketSendUtility;
import com.aionemu.gameserver.utils.chathandlers.AdminCom mand;
import com.aionemu.gameserver.world.World;

/**
* @author Ben, Ritsu
*
* Smart Matching Enabled
* //announce anon This will work. as well as //announce a This will work.
* Both will match the "a" or "anon" to the "anonymous" flag.
*
*/
public class Announce extends AdminCommand
{
public Announce()
{
super("announce");
}

@Override
public int getSplitSize()
{
return 2;
}

@Override
public void executeCommand(Player admin, String[] params)
{

if(admin.getAccessLevel() < AdminConfig.COMMAND_ANNOUNCE)
{
PacketSendUtility.sendMessage(admin, "You dont have enough rights to execute this command.");
return;
}

if(params == null || params.length != 2)
{
PacketSendUtility.sendMessage(admin, "Syntax: //announce <anonymous|name> <message>");
return;
}

String message;

if (("anonymous").startsWith(params[0].toLowerCase()))
{
message = "Announce: ";
}
else if (("name").startsWith(params[0].toLowerCase()))
{
message = admin.getName() + ": ";
}
else
{
PacketSendUtility.sendMessage(admin, "Syntax: //announce <anonymous|name> <message>");
return;
}
message += params[1];

Iterator<Player> iter = World.getInstance().getPlayersIterator();

while(iter.hasNext())
{
PacketSendUtility.sendSysMessage(iter.next(), message);
}
}
}



ist ein befehl in aion der aber nicht geht. kann mir bitte jemand helfen oder ins richtige fórum verlinken. bin neu
Chisaco is offline  
Old 09/09/2010, 19:15   #2
 
elite*gold: 6
Join Date: Nov 2009
Posts: 217
Received Thanks: 106
flow_getter is offline  
Thanks
1 User
Old 09/09/2010, 23:47   #3

 
Obilee's Avatar
 
elite*gold: 11
Join Date: May 2007
Posts: 62,452
Received Thanks: 29,520
#closed
Obilee is offline  
Closed Thread




All times are GMT +2. The time now is 19:30.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.