L2JCommand Center Final version 1.1.0

Have you created a useful tool? or Do you want to get help building one? This is the right place!
Forum rules
READ NOW: L2j Forums Rules of Conduct
User avatar
iliqbg
Posts: 27
Joined: Thu Nov 26, 2009 10:12 am
Contact:

Re: L2JCommand Center

Post by iliqbg »

This will be in Version 1.5 now im finished final version 1.0 frist post updated
darkwolf999
Posts: 87
Joined: Fri May 27, 2005 10:31 pm

Re: L2JCommand Center Final version 1.0

Post by darkwolf999 »

good job :D
Attila
Posts: 441
Joined: Mon May 05, 2014 10:15 am

Re: L2JCommand Center Final version 1.0

Post by Attila »

I now have these errors with new ubdate

Image

Image
darkwolf999
Posts: 87
Joined: Fri May 27, 2005 10:31 pm

Re: L2JCommand Center Final version 1.0

Post by darkwolf999 »

chat ban and un chat ban added. only i'm not sure if it is right.

txtPlayerName_6 = new JTextField();
txtPlayerName_6.setText("Player Name");
txtPlayerName_6.setBounds(125, 428, 116, 22);
panel.add(txtPlayerName_6);
txtPlayerName_6.setColumns(10);
JButton cban = new JButton("Chat Ban");
cban.addActionListener(e ->
{
int charId = CharNameTable.getInstance().getIdByName(txtPlayerName_6.getText());

if (charId > 0)
{
long expirationTime = 10000;
PunishmentManager.getInstance().startPunishment(new PunishmentTask(charId, PunishmentAffect.CHARACTER, PunishmentType.CHAT_BAN, expirationTime, "Contact to the GM For more Info Thanks!.", " Admin: "));
_log.info("Character : " + txtPlayerName_6.getText() + " has been Chat-Banned");
}
else
{
_log.info("Character : " + txtPlayerName_6.getText() + " was not found!");
}
});
cban.setBounds(16, 427, 97, 25);
panel.add(cban);

txtPlayerName_7 = new JTextField();
txtPlayerName_7.setText("Player Name");
txtPlayerName_7.setBounds(125, 464, 116, 22);
panel.add(txtPlayerName_7);
txtPlayerName_7.setColumns(10);

JButton nochatban = new JButton("No Chat Ban");
nochatban.setHorizontalAlignment(SwingConstants.LEFT);
nochatban.addActionListener(e ->
{
int charId = CharNameTable.getInstance().getIdByName(txtPlayerName_7.getText());

if (charId > 0)
{
PunishmentManager.getInstance().stopPunishment(charId, PunishmentAffect.CHARACTER, PunishmentType.CHAT_BAN);
_log.info("Character : " + txtPlayerName_7.getText() + " Chat Ban is over.");
}
else
{
_log.info("Character : " + txtPlayerName_7.getText() +" was not found!");
}
});
nochatban.setBounds(16, 463, 97, 25);
panel.add(nochatban);
User avatar
iliqbg
Posts: 27
Joined: Thu Nov 26, 2009 10:12 am
Contact:

Re: L2JCommand Center Final version 1.0

Post by iliqbg »

Attila wrote:I now have these errors with new ubdate

Image

Image
Attila i don't know what you doing why change traders? and delete > " < and background panel this is not error and something ignore it
Attila
Posts: 441
Joined: Mon May 05, 2014 10:15 am

Re: L2JCommand Center Final version 1.0

Post by Attila »

do nothing I replace only the new update with the old
but now I can no longer see if I need to replace or delete things with the new update
you only put the new update
the update is now different that he was first time .
but I got it working it works well
User avatar
iliqbg
Posts: 27
Joined: Thu Nov 26, 2009 10:12 am
Contact:

Re: L2JCommand Center Final version 1.0

Post by iliqbg »

you eclipse have bug .. . :D change JLabel Traders = new JLabel( Traders: " + shops); to JLabel Traders = new JLabel("Traders: " + shops);
darkwolf999
Posts: 87
Joined: Fri May 27, 2005 10:31 pm

Re: L2JCommand Center Final version 1.0

Post by darkwolf999 »

how's going ? any news ?
User avatar
Aikimaniac
L2j Inner Circle
L2j Inner Circle
Posts: 3048
Joined: Sun Aug 07, 2005 11:42 pm
Location: Slovakia

Re: L2JCommand Center Final version 1.0

Post by Aikimaniac »

Android version for smartphones would be nice too :P
Image
User avatar
iliqbg
Posts: 27
Joined: Thu Nov 26, 2009 10:12 am
Contact:

Re: L2JCommand Center Final version 1.0

Post by iliqbg »

im now create new design for command center nice admin panel :) mm chat logger option and etc :) for new version and android version on this my android knowledge its very very low :D more time will try :P
darkwolf999
Posts: 87
Joined: Fri May 27, 2005 10:31 pm

Re: L2JCommand Center Final version 1.0

Post by darkwolf999 »

ok nice can't wait to see it :D
User avatar
iliqbg
Posts: 27
Joined: Thu Nov 26, 2009 10:12 am
Contact:

Re: L2JCommand Center Final version 1.0.5

Post by iliqbg »

BUMP

Frist Page Updated :) New Version 1.0.5
Attila
Posts: 441
Joined: Mon May 05, 2014 10:15 am

Re: L2JCommand Center Final version 1.0.5

Post by Attila »

iliqbg wrote:BUMP

Frist Page Updated :) New Version 1.0.5
Nice good work i will try it but

I have installed the Final version 1.0 L2JCommand Center now
but now I don't know what I need to remove or replace with the new update :?:
Can You also post the changes you've done here and not only put a new version update to first page,
thanks
User avatar
iliqbg
Posts: 27
Joined: Thu Nov 26, 2009 10:12 am
Contact:

Re: L2JCommand Center Final version 1.0.5

Post by iliqbg »

Remove old version use revert in Eclipse
User avatar
maneco2
Initiates
Initiates
Posts: 664
Joined: Sat Aug 24, 2013 7:10 am

Re: L2JCommand Center Final version 1.0.5

Post by maneco2 »

I think a waste of time to do these things, instead of doing so could do something that is missing in L2J. only opnion :P
Post Reply