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