TutorialShowQuestionMark parameters are related with question mark.
This commit is contained in:
@@ -24,13 +24,13 @@ import com.l2jmobius.gameserver.network.OutgoingPackets;
|
|||||||
*/
|
*/
|
||||||
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
||||||
{
|
{
|
||||||
private final int _questId;
|
private final int _markId;
|
||||||
private final int _condition;
|
private final int _markType;
|
||||||
|
|
||||||
public TutorialShowQuestionMark(int questId, int condition)
|
public TutorialShowQuestionMark(int markId, int markType)
|
||||||
{
|
{
|
||||||
_questId = questId;
|
_markId = markId;
|
||||||
_condition = condition;
|
_markType = markType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -38,8 +38,8 @@ public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
|||||||
{
|
{
|
||||||
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
||||||
|
|
||||||
packet.writeC(_condition);
|
packet.writeC(_markType);
|
||||||
packet.writeD(_questId);
|
packet.writeD(_markId);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -24,13 +24,13 @@ import com.l2jmobius.gameserver.network.OutgoingPackets;
|
|||||||
*/
|
*/
|
||||||
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
||||||
{
|
{
|
||||||
private final int _questId;
|
private final int _markId;
|
||||||
private final int _condition;
|
private final int _markType;
|
||||||
|
|
||||||
public TutorialShowQuestionMark(int questId, int condition)
|
public TutorialShowQuestionMark(int markId, int markType)
|
||||||
{
|
{
|
||||||
_questId = questId;
|
_markId = markId;
|
||||||
_condition = condition;
|
_markType = markType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -38,8 +38,8 @@ public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
|||||||
{
|
{
|
||||||
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
||||||
|
|
||||||
packet.writeC(_condition);
|
packet.writeC(_markType);
|
||||||
packet.writeD(_questId);
|
packet.writeD(_markId);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -24,13 +24,13 @@ import com.l2jmobius.gameserver.network.OutgoingPackets;
|
|||||||
*/
|
*/
|
||||||
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
||||||
{
|
{
|
||||||
private final int _questid; // quest id?
|
private final int _markId;
|
||||||
private final int _condition; // cond?
|
private final int _markType;
|
||||||
|
|
||||||
public TutorialShowQuestionMark(int questid, int condition)
|
public TutorialShowQuestionMark(int markId, int markType)
|
||||||
{
|
{
|
||||||
_questid = questid;
|
_markId = markId;
|
||||||
_condition = condition;
|
_markType = markType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -38,8 +38,8 @@ public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
|||||||
{
|
{
|
||||||
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
||||||
|
|
||||||
packet.writeC(_condition);
|
packet.writeC(_markType);
|
||||||
packet.writeD(_questid);
|
packet.writeD(_markId);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -24,13 +24,13 @@ import com.l2jmobius.gameserver.network.OutgoingPackets;
|
|||||||
*/
|
*/
|
||||||
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
||||||
{
|
{
|
||||||
private final int _questId;
|
private final int _markId;
|
||||||
private final int _condition;
|
private final int _markType;
|
||||||
|
|
||||||
public TutorialShowQuestionMark(int questId, int condition)
|
public TutorialShowQuestionMark(int markId, int markType)
|
||||||
{
|
{
|
||||||
_questId = questId;
|
_markId = markId;
|
||||||
_condition = condition;
|
_markType = markType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -38,8 +38,8 @@ public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
|||||||
{
|
{
|
||||||
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
||||||
|
|
||||||
packet.writeC(_condition);
|
packet.writeC(_markType);
|
||||||
packet.writeD(_questId);
|
packet.writeD(_markId);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -24,13 +24,13 @@ import com.l2jmobius.gameserver.network.OutgoingPackets;
|
|||||||
*/
|
*/
|
||||||
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
||||||
{
|
{
|
||||||
private final int _questId;
|
private final int _markId;
|
||||||
private final int _condition;
|
private final int _markType;
|
||||||
|
|
||||||
public TutorialShowQuestionMark(int questId, int condition)
|
public TutorialShowQuestionMark(int markId, int markType)
|
||||||
{
|
{
|
||||||
_questId = questId;
|
_markId = markId;
|
||||||
_condition = condition;
|
_markType = markType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -38,8 +38,8 @@ public final class TutorialShowQuestionMark implements IClientOutgoingPacket
|
|||||||
{
|
{
|
||||||
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
OutgoingPackets.TUTORIAL_SHOW_QUESTION_MARK.writeId(packet);
|
||||||
|
|
||||||
packet.writeC(_condition);
|
packet.writeC(_markType);
|
||||||
packet.writeD(_questId);
|
packet.writeD(_markId);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user