Find the proper support area, Saga-Version.
smuggbg
Posts: 109 Joined: Wed Mar 02, 2011 2:39 pm
Location: Bulgaria
Post
by smuggbg » Sat May 21, 2011 6:38 pm
L2J Revision
4497
L2JDP Revision
7780
Wrong parameter count '1' for SystemMessageId: SM[678:SUBMITTED_A_BID]
can anyone tell me is this happening as I see this error for first time
tukune
Posts: 533 Joined: Sun Mar 29, 2009 2:35 pm
Location: Japan
Post
by tukune » Tue May 24, 2011 6:51 am
SystemMessageId.java:
public static final SystemMessageId SUBMITTED_A _BID;
ItemAuction.java:
player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.SUBMITTED_A_BID)
.addItemNumber(newBid) );
systemmsg-e: 678 "You have submitted a bid for the auction of $s1 ."
systemmsg-j: 678 "$s1 の競売に入札しました。"
systemmsg-tw: 678 "「$s1 」的拍賣招標了。"
Maybe s/SUBMITTED_A _BID/SUBMITTED_S1 _BID/g
smuggbg
Posts: 109 Joined: Wed Mar 02, 2011 2:39 pm
Location: Bulgaria
Post
by smuggbg » Thu May 26, 2011 7:06 am
JIV
L2j Veteran
Posts: 1882 Joined: Sun Jan 06, 2008 8:17 pm
Location: Slovakia
Contact:
Post
by JIV » Thu May 26, 2011 8:49 am
it must be renamed to what tukene posted, add S1.
smuggbg
Posts: 109 Joined: Wed Mar 02, 2011 2:39 pm
Location: Bulgaria
Post
by smuggbg » Thu May 26, 2011 1:16 pm
no word wasters in the forum
TY
tukune
Posts: 533 Joined: Sun Mar 29, 2009 2:35 pm
Location: Japan
Post
by tukune » Thu May 26, 2011 1:34 pm
patch
Code: Select all
SystemMessageId.java-public static final SystemMessageId SUBMITTED_A_BID;+public static final SystemMessageId SUBMITTED_A_BID_S1; -SUBMITTED_A_BID = new SystemMessageId(678);+SUBMITTED_A_BID_S1 = new SystemMessageId(678); ItemAuction.java-player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.SUBMITTED_A_BID).addItemNumber(newBid));+player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.SUBMITTED_A_BID_S1).addItemName(getItemInfo().getItem()));
smuggbg
Posts: 109 Joined: Wed Mar 02, 2011 2:39 pm
Location: Bulgaria
Post
by smuggbg » Thu May 26, 2011 2:10 pm
thank you tukune