nery Posted February 14, 2016 Posted February 14, 2016 I am wanting to make a form that at a certain level you get an htm my escolhar eg for farm folder configs EnableFarmMessage = True ******* Config.java public static boolean ENABLE_FARM_MESSAGE; ******* ENABLE_FARM_MESSAGE = farmmessage.getBoolean("EnableFarmMessage", false); ******* EnterWorld.java if (Config.ENABLE_FARM_MESSAGE) { if (activeChar.getLevel() == 8) { activeChar.sendPacket(new ExShowScreenMessage("Farm Teste", 10000)); } String farmNews = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/farmnews.htm"); if (farmNews != null) { sendPacket(new NpcHtmlMessage(farmNews)); } } BASE L2JSERVER Correct? -> if (activeChar.getLevel() == 8) SOMEONE CAN GIVE SOME IDEAS Quote
0 nery Posted February 14, 2016 Author Posted February 14, 2016 Someone can say one has to add more somewhere? Quote
0 nery Posted February 14, 2016 Author Posted February 14, 2016 It should work this way... It is not but appeared to html when he arrived at level setted. already put this another way, also does not appear to htm if (Config.ENABLE_FARM_MESSAGE) { if ((getActiveChar().getLevel()) >= 10) { activeChar.sendPacket(new ExShowScreenMessage("Farm Teste", 10000)); } String farmNews = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/farmnews.htm"); if (farmNews != null) { sendPacket(new NpcHtmlMessage(farmNews)); } } Quote
0 Tessa Posted February 15, 2016 Posted February 15, 2016 (edited) I can't understand you very well, but this screen message should appear on login, if you are level 10+. The HTML should also appear on login. The EnterWorld packet runs only once, when the player logins. What are you trying to do with activeChar.getHtmlPrefix()? Edited February 15, 2016 by Tessa Quote
0 Tessa Posted February 15, 2016 Posted February 15, 2016 I think it should be that way... final NpcHtmlMessage htmlMessage = new NpcHtmlMessage(farmNews); htmlMessage.replace("%playerLvl%", String.valueOf(activeChar.getLevel())); activeChar.sendPacket(htmlMessage); Use %playerLvl% in your html to show its level. Quote
0 nery Posted February 15, 2016 Author Posted February 15, 2016 I think it should be that way... final NpcHtmlMessage htmlMessage = new NpcHtmlMessage(farmNews); htmlMessage.replace("%playerLvl%", String.valueOf(activeChar.getLevel())); activeChar.sendPacket(htmlMessage); Use %playerLvl% in your html to show its level. sorry my english, you do not understand, I want to do that to the player arrive at a certain level you get an html to it with a warning that we put Quote
0 Tessa Posted February 15, 2016 Posted February 15, 2016 Then, you shouldn't use the EnterWorld packet. It's runs only once, when the player logs in. Quote
Question
nery
I am wanting to make a form that at a certain level you get an htm my escolhar eg for farm
folder configs
EnableFarmMessage = True
*******
Config.java
public static boolean ENABLE_FARM_MESSAGE;
*******
ENABLE_FARM_MESSAGE = farmmessage.getBoolean("EnableFarmMessage", false);
*******
EnterWorld.java
BASE L2JSERVER
Correct? -> if (activeChar.getLevel() == 8)
SOMEONE CAN GIVE SOME IDEAS
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.