Jump to content

crazyshock

Members
  • Posts

    64
  • Credits

  • Joined

  • Last visited

    Never
  • Feedback

    0%

About crazyshock

Profile Information

  • Gender
    Not Telling

crazyshock's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. Hello folks ... I wonder if someone has already created something similar to interlude. works as follows: typing .sell a new window appear showing the name of the player who is selling the value and quantity of the item you are selling. typing .buy a new window appear showing the name of the player who is buying the value and quantity of the item you are looking to buy. typing .craft a new window appear showing the name of the player craftando the value and quantity of the item you are looking to craft You get the idea? Sorry bad english... Thanks :)
  2. played on a server, that everything that occurred on the server, which was announced example: start sieges, start tvt, and others announce. It was also posted on twitter,in real time. Does anyone have this mod? Thanks
  3. working high five? the colors have to be in what format?
  4. possible apply code for php, show online site?
  5. @Tryskell I am trying to create a new area see if I'm on track. /* * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>. */ package com.l2jserver.gameserver.model.zone.type; import java.util.Random; import java.util.StringTokenizer; import com.l2jserver.Config; import com.l2jserver.gameserver.model.actor.L2Character; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.zone.L2ZoneType; /** * @author Usuario * */ public class L2PvPZone extends L2ZoneType { public Random randomNome = new Random(); public String nick[] = { "tessRe" ,"asaEwRe", "fewrAr32" }; /** * @param id */ protected L2PvPZone(int id) { super(id); } @Override public void onDieInside(L2Character character) { } @Override protected void onEnter(L2Character character) { onArea(character,null); } public void onArea(L2Character cr ,L2PcInstance player) { cr.setInsideZone(L2Character.ZONE_PEACE, false); //noPeaceZone String nickAtual = nick(cr.getName()); //store old name cr.setName("sErdtR"); //add new name for test } public String nick(String _nome){ return _nome; } @Override protected void onExit(L2Character character) { } @Override public void onReviveInside(L2Character character) { // TODO Auto-generated method stub } } ------ Could you give me an example of how to accomplish this? ------------- would that be? creates a variable to store Name public String _nickAtual= null; @Override protected void onEnter(L2Character character) { character.setInsideZone(L2Character.ZONE_PEACE, false); //if (character instanceof L2PcInstance) //{ _nickAtual = ((L2PcInstance)character).getName(); ((L2PcInstance)character).setName("ZdRrgAG"); ((L2PcInstance)character).broadcastUserInfo(); //} } @Override protected void onExit(L2Character character) { ((L2PcInstance)character).setName(_nickAtual); ((L2PcInstance)character).broadcastUserInfo(); }
  6. Hiii! http://imageshack.us/photo/my-images/11/254al.jpg/ I wonder if there is a system that appears the damage of attack, like the image above. Thanks System for H5
  7. How do I change an area in which, when the player into it, automatically change your nickname, and he is unable to give trade, party, and talk in chat. Thanks!
  8. It is Armor : http://maxcheaters.com/forum/index.php?topic=81571.0
×
×
  • Create New...