Jump to content
  • 0

[Stupid Error]Rework


Vkouk

Question

Hello guys,i am trying to rework multilingual system from epilogue to final.

All it's fine.But i have one small problem.It gives me always error at AdminEditNpc.java

at these lines

		String content = HtmCache.getInstance().getHtm("data/html/merchant/" + merchantID + ".htm");

	if (content == null)
	{
		content = HtmCache.getInstance().getHtm("data/html/merchant/30001.htm");

 

Exactly it gives me error at getHtm

So?Any suggestions?

Btw i tryied all methods.Waiting for your respond

Link to comment
Share on other sites

Recommended Posts

  • 0

the code is this

 

private List<L2TradeList> getTradeLists(int merchantID)

{

String target = "npc_%objectId%_Buy";

 

String content = HtmCache.getInstance().getHtm("data/html/merchant/" + merchantID + ".htm");

 

if (content == null)

{

content = HtmCache.getInstance().getHtm("data/html/merchant/30001.htm");

if (content == null)

return null;

}

 

i always have error at getHtm.

Link to comment
Share on other sites

  • 0
<html><body>Trader Lector:<br>
May I offer you a word of advice? The most expensive equipment isn't necessarily the best buy for you. A child cannot handle a two-handed sword, right? You must buy equipment appropriate for your class and experience. Now, select what you need.<br>
<a action="bypass -h npc_%objectId%_Chat 1">Buy Equipment.</a><br>
<a action="bypass -h npc_%objectId%_exc_multisell 003">Exchange equipment.</a><br>
<a action="bypass -h npc_%objectId%_Wear 3000100">Try on Fighter equipment.</a><br>
<a action="bypass -h npc_%objectId%_Wear 3000101">Try on Mystic equipment.</a><br>
<a action="bypass -h npc_%objectId%_Sell">Sell</a><br>
<a action="bypass -h npc_%objectId%_TerritoryStatus">Ask about the local lord and tax rate.</a><br>
<a action="bypass -h npc_%objectId%_Quest">Quest</a>
</body></html>

Link to comment
Share on other sites

  • 0

the code is this

 

private List<L2TradeList> getTradeLists(int merchantID)

{

String target = "npc_%objectId%_Buy";

 

String content = HtmCache.getInstance().getHtm("data/html/merchant/" + merchantID + ".htm");

 

if (content == null)

{

content = HtmCache.getInstance().getHtm("data/html/merchant/30001.htm");

if (content == null)

return null;

}

 

i always have error at getHtm.

 

Ventic, as I told you. Roll over on this highlighted getHtm, and there should be little log about whats wrong, and post it here.

 

You're Eclipse user, right?

 

Note: Ignore HoTeLRooM and his tips..

 

Link to comment
Share on other sites

  • 0

<html><title>Misc Shop</title>
<html>
<body>
May I offer you a word of advice? The most expensive equipment isn't necessarily the best buy for you. A child cannot handle a two-handed sword, right? You must buy equipment appropriate for your class and experience. Now, select what you need.<br>
<a action="bypass -h npc_%objectId%_Chat 1">Buy Equipment.</a><br>
<a action="bypass -h npc_%objectId%_exc_multisell 003">Exchange equipment.</a><br>
<a action="bypass -h npc_%objectId%_Wear 3000100">Try on Fighter equipment.</a><br>
<a action="bypass -h npc_%objectId%_Wear 3000101">Try on Mystic equipment.</a><br>
<a action="bypass -h npc_%objectId%_Sell">Sell</a><br>
<a action="bypass -h npc_%objectId%_TerritoryStatus">Ask about the local lord and tax rate.</a><br>
<a action="bypass -h npc_%objectId%_Quest">Quest</a><br>
</body>
</html>

 

tell me the results

Link to comment
Share on other sites

  • 0

Ventic, as I told you. Roll over on this highlighted getHtm, and there should be little log about whats wrong, and post it here.

 

You're Eclipse user, right?

 

 

 

yes i am.btw the only problem is only at these 2 lines.

Link to comment
Share on other sites

  • 0

yes i am.btw the only problem is only at these 2 lines.

 

So, can you post here error logs...?

 

Roll Over on this marked at red getHtm..

 

Or try to compile and show us error logs, simple.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...