Jump to content
  • 0

Html close action


BioKryptY

Question

Is there any way to send an html without the close button, like this one in the image ? (I just edited to show).

 

X0hWq2u.jpg.84e8845a00be90a101f346beea091130.jpg  < Like that

 

If there's any way for the core to tell me, if not where would you do it?

 

Another option if it is not possible, is there how to get the action of the player closing a specific html?

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

one way is to make a new html window ( dont use the npc dialogue window ) and dont add the close button ( interface )

i guess you could also reopen the same html window every couple of seconds until you get the response you expect

  • Upvote 1
Link to comment
Share on other sites

  • 0
39 minutes ago, SweeTs said:

TutorialShowHtml, that's it.

But how to get the bypasses?

 

I am debugging the RequestBypassToServer methods of both clietpackets and the class I want, none are called when I hit a button in html.

Link to comment
Share on other sites

  • 0

You have to create/handle your own bypass there, and then call it in html "bypass something" and that's it. If you want bypass to close the window, there is also a packet for that.

Link to comment
Share on other sites

  • 0
3 hours ago, SweeTs said:

You have to create/handle your own bypass there, and then call it in html "bypass something" and that's it. If you want bypass to close the window, there is also a packet for that.

But in the tutorial html, <a action="link TE07"> Exit the Tutorial </a> is used, besides not supporting buttons, it does not detect this click event at all.

 

When i click in Test nothing happens > Image1

 

This is my html action:

<a action=\"bypass_test\">Test</a>

@edit

I tried with too and nothing happens:

 

<a action=\"bypass -h bypass_test\">Test</a>

 

And in RequestBypassToServer.java:

 

if (_command.equals("bypass_test"))
		{
			activeChar.sendMessage("Testing");
		}

 

What am I doing wrong?

Edited by BioKryptY
Link to comment
Share on other sites

  • 0
4 hours ago, BioKryptY said:

But in the tutorial html, <a action="link TE07"> Exit the Tutorial </a> is used, besides not supporting buttons, it does not detect this click event at all.

 

When i click in Test nothing happens > Image1

 

This is my html action:


<a action=\"bypass_test\">Test</a>

@edit

I tried with too and nothing happens:

 

<a action=\"bypass -h bypass_test\">Test</a>

 

And in RequestBypassToServer.java:

 


if (_command.equals("bypass_test"))
		{
			activeChar.sendMessage("Testing");
		}

 

What am I doing wrong?

RequestTutorialPassCmdToServer.java you have to add your bypass here.

and that's the close bypass.

image.png.569370efc4895241d99295f42c56009a.png

 

sendPacket(new TutorialCloseHtml());

Edited by filimon
  • Upvote 1
Link to comment
Share on other sites

  • 0

I searched, searched and searched more to try to solve this. I don't quite understand packets and etc. But I found something that I think is of great value.

 

In the NpcHtmlMessage and TutorialShowHtml packets, this here:
writeC (0x19); > means that NpcDialogWnd has the close button.

 

And this here:
writeC (0xA6); > means that NpcDialogWnd does not have the close button, which is the case with the TutorialShowHtml packet

 

If I change these packets both windows get the close button or not. Must be something, if anyone can tell me more about l2 packets, thank you.

 

Is it correct to do this?

Link to comment
Share on other sites

  • 0
1 hour ago, BioKryptY said:

I searched, searched and searched more to try to solve this. I don't quite understand packets and etc. But I found something that I think is of great value.

 

In the NpcHtmlMessage and TutorialShowHtml packets, this here:
writeC (0x19); > means that NpcDialogWnd has the close button.

 

And this here:
writeC (0xA6); > means that NpcDialogWnd does not have the close button, which is the case with the TutorialShowHtml packet

 

If I change these packets both windows get the close button or not. Must be something, if anyone can tell me more about l2 packets, thank you.

 

Is it correct to do this?

Just use tutorial window :)

image.png.7adcd1b5c6b55c3cbce0d91905ad3e7f.png

Link to comment
Share on other sites

  • 0
7 hours ago, filimon said:

Just use tutorial window :)

image.png.7adcd1b5c6b55c3cbce0d91905ad3e7f.png

 

Can you send me a example? 

 

Because, I already did that, I created my bypass and by no means when I hit the button on the page does not call the bypass, remembering that it is not npc

Link to comment
Share on other sites

  • 0
4 hours ago, BioKryptY said:

 

Can you send me a example? 

 

Because, I already did that, I created my bypass and by no means when I hit the button on the page does not call the bypass, remembering that it is not npc

You have to add your bypass RequestTutorialPassCmdToServer

 

  • Upvote 1
Link to comment
Share on other sites

  • 0
22 hours ago, filimon said:

You have to add your bypass RequestTutorialPassCmdToServer

 

I understand now, sorry for the stupidity, had not seen this Request, thank you helped me so much, was breaking his head for nothing haha

  • Upvote 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...