Corrected cplayer typos.

This commit is contained in:
MobiusDevelopment 2022-07-29 22:30:37 +00:00
parent dd3c793102
commit bb9334a053
88 changed files with 352 additions and 352 deletions

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -84,6 +84,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/

View File

@ -65,12 +65,12 @@ public class CannotMoveAnymore implements IClientIncomingPacket
// PacketLogger.finer("client: x:"+_x+" y:"+_y+" z:"+_z+
// " server x:"+player.getX()+" y:"+player.getZ()+" z:"+player.getZ());
// StopMove smwl = new StopMove(player);
// cplayer.getPlayer().sendPacket(smwl);
// cplayer.getPlayer().broadcastPacket(smwl);
// player.getPlayer().sendPacket(smwl);
// player.getPlayer().broadcastPacket(smwl);
//
// StopRotation sr = new StopRotation(cplayer.getPlayer(),
// StopRotation sr = new StopRotation(player.getPlayer(),
// _heading);
// cplayer.getPlayer().sendPacket(sr);
// cplayer.getPlayer().broadcastPacket(sr);
// player.getPlayer().sendPacket(sr);
// player.getPlayer().broadcastPacket(sr);
}
}

View File

@ -83,6 +83,6 @@ public class RequestExEnchantSkillInfo implements IClientIncomingPacket
player.sendPacket(new ExEnchantSkillInfo(_skillId, _skillLevel, _skillSubLevel, playerSkill.getSubLevel()));
// 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));
}
}

View File

@ -34,7 +34,7 @@ public class RequestBRRecentProductList implements IClientIncomingPacket
@Override
public void run(GameClient client)
{
// Player player = cplayer.getPlayer();
// Player player = client.getPlayer();
// TODO: Implement it.
}
}

View File

@ -25,7 +25,7 @@ import org.l2jmobius.gameserver.model.interfaces.ILocational;
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.
* @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 color the color
* @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 color the color
* @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 x the x 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 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 color the color
* @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 color the color
* @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 x the x 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 locational the ILocational to take coordinates for this point
*/