Corrected cplayer typos.
This commit is contained in:
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
@@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
|
|||||||
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
|
||||||
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
|
||||||
// StopMove smwl = new StopMove(player);
|
// StopMove smwl = new StopMove(player);
|
||||||
// cplayer.getPlayer().sendPacket(smwl);
|
// player.getPlayer().sendPacket(smwl);
|
||||||
// cplayer.getPlayer().broadcastPacket(smwl);
|
// player.getPlayer().broadcastPacket(smwl);
|
||||||
//
|
//
|
||||||
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
|
// StopRotation sr = new StopRotation(player.getPlayer(),
|
||||||
// _heading);
|
// _heading);
|
||||||
// cplayer.getPlayer().sendPacket(sr);
|
// player.getPlayer().sendPacket(sr);
|
||||||
// cplayer.getPlayer().broadcastPacket(sr);
|
// player.getPlayer().broadcastPacket(sr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
|
|||||||
|
|
||||||
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
|
||||||
// ExEnchantSkillInfoDetail - not really necessary I think
|
// ExEnchantSkillInfoDetail - not really necessary I think
|
||||||
// cplayer.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
// player.sendPacket(new ExEnchantSkillInfoDetail(SkillEnchantType.NORMAL, _skillId, _skillLevel, _skillSubLevel , activeChar));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
|
|||||||
@Override
|
@Override
|
||||||
public void run(GameClient client)
|
public void run(GameClient client)
|
||||||
{
|
{
|
||||||
// Player player = cplayer.getPlayer();
|
// Player player = client.getPlayer();
|
||||||
// TODO: Implement it.
|
// TODO: Implement it.
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
|
|||||||
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
import org.l2jmobius.gameserver.network.OutgoingPackets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet used to draw points and lines on cplayer.<br/>
|
* A packet used to draw points and lines on player.<br/>
|
||||||
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
* <b>Note:</b> Names in points and lines are bugged they will appear even when not looking at them.
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
*/
|
*/
|
||||||
@@ -62,7 +62,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -76,7 +76,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -88,7 +88,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -100,7 +100,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -124,7 +124,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param name the name that will be displayed over the point
|
* @param name the name that will be displayed over the point
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param isNameColored if {@code true} name will be colored as well.
|
* @param isNameColored if {@code true} name will be colored as well.
|
||||||
@@ -136,7 +136,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param x the x coordinate for this point
|
* @param x the x coordinate for this point
|
||||||
* @param y the y coordinate for this point
|
* @param y the y coordinate for this point
|
||||||
@@ -148,7 +148,7 @@ public class ExServerPrimitive implements IClientOutgoingPacket
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a point to be displayed on cplayer.
|
* Adds a point to be displayed on player.
|
||||||
* @param color the color
|
* @param color the color
|
||||||
* @param locational the ILocational to take coordinates for this point
|
* @param locational the ILocational to take coordinates for this point
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user