Jump to content

Recommended Posts

Posted

  • Hey guys,
     
    I couldn't find a list on here so I thought I'd ask: what HTML-elements do you know, that can be delivered to the client?
     
    I figured out the following tags (and attributes):
    • General elements
      • <html>
        • noscrollbar=""

        [*]<head></head>

        [*]<title></title>

        [*]<body></body>

      [*]Table-elements

      • Table - <table></table>
        • cellpadding=0
        • cellspacing=0
        • border=0
        • width=0
        • height=0
        • bgcolor={hexadecimal color value without pound symbol (#)}
        • fixwidth=0 (no idea what difference it makes to width)

        [*]Table row - <tr></tr>

        [*]Table cell - <td></td>

        • align={left, center, right}
        • valign={top, center, bottom}
        • width=0
        • height=0
        • fixwidth=0 (no idea what difference it makes to width)

      [*]Controls

      • Default input box - <edit/>
        • var=variablename
        • align={left, center, right}
        • type={number} (use only if you want to let the user type in numbers ONLY)
        • width=0
        • height=0
        • length={length} (use only if you want to let the user type in certain amount of characters)

        [*]Multiline input box <multiedit/>

        • var=variablename
        • width=0
        • height=0

        [*]Combobox - <combobox/>

        • var=variablename
        • width=0
        • list="a;b;c" (use ; to separate list elements)
        • sel="a" (selects the specified element based on its displayed name)

        [*]Regular button - <button/>

        • value=Button text (actually displayed text, may be "" if you don't want to display any text)
        • width=0
        • height=0
        • back="Button.Image" (background image, note: it has to have an _over version of the image or it will be black on mouse over)
        • fore="Button.Image" (foreground image? I don't know; use (utx-)package name + name of the file without extension in fore- and back-attributes)
        • action="bypass -h ..." (the actual action to perform when the button is clicked)

        [*]Link - <a></a>

        • value=Button text (actually displayed text, may be "" if you don't want to display any text)
        • width=0
        • height=0
        • action="bypass -h ..." (the actual action to perform when the button is clicked)

        [*]Image - <img/>

        • src="Button.Image" (source of the image, use (utx-)package and filename without extension)
        • width=0
        • height=0

      [*]Other elements

      • New row - <br/>
      • New row (bigger gap) - <br1/>
      • Sysstring display - <fstring>{number}</fstring>

 

A few comments on the list:

  • In order to load custom images from the server without client-modding, use PledgeCrest and DDSConverter
  • Having <tr>-elements without any <td>-elements in it will most likely crash the game client
  • There is no way (at least I don't know of any way) to display a preset value in an <edit/> or <multiedit/> control
  • Judging by the nwindow.dll (if I'm not mistaken) it seems, that there are more HTML-controls available - e.g. slider or flash
  • There are ways to display various system strings by using &$#####; (where ##### is a number) as well as other combinations of the first two characters (&$, $#, $^ and some more)
  • Regular NpcHtmlMessage can only hold a relatively small amount of data (not sure if 16kb or 64kb); more data can be displayed using the community board
  • Community board has an ugly issue when displaying an input box, leaving that input box empty and clicking on a button, which sends the input-box-variable (var-attribute) using $var to the server; even though it seems the bypass is processed, it displays a weird error saying the message box shouldn't contain more than 3000 characters (in fact it contains no character at all). This message seems to be raised on the client-side since I couldn't find any packet being sent to server beforehand.

 

Is this list more or less complete or does anyone happen to have some more controls, attributes or tricks of how to use something?

Help in this regard is greatly appreciated! Thank you for reading.

  • Thanks 1
Posted

Thanks! This made my day, I was looking for this for some time:

sel="a" (selects the specified element based on its displayed name)

 

Fixwidth and fixheight are fixed sizes. The normal ones are adjustable, for example if the container is larger than the size set in width, it will grow automatically to fit the new size. The fixed sizes will not

Posted

Ah alright. So that's the difference between fixwidth/fixheight and width/height. Good to know. I still hope/wish there were more elements we could use :x.

Posted

/**

*

* the HTML parser in the client knowns these standard and non-standard tags and attributes

* VOLUMN

* UNKNOWN

* UL

* U

* TT

* TR

* TITLE

* TEXTCODE

* TEXTAREA

* TD

* TABLE

* SUP

* SUB

* STRIKE

* SPIN

* SELECT

* RIGHT

* PRE

* P

* OPTION

* OL

* MULTIEDIT

* LI

* LEFT

* INPUT

* IMG

* I

* HTML

* H7

* H6

* H5

* H4

* H3

* H2

* H1

* FONT

* EXTEND

* EDIT

* COMMENT

* COMBOBOX

* CENTER

* BUTTON

* BR

* BR1

* BODY

* BAR

* ADDRESS

* A

* SEL

* LIST

* VAR

* FORE

* READONL

* ROWS

* VALIGN

* FIXWIDTH

* BORDERCOLORLI

* BORDERCOLORDA

* BORDERCOLOR

* BORDER

* BGCOLOR

* BACKGROUND

* ALIGN

* VALU

* READONLY

* MULTIPLE

* SELECTED

* TYP

* TYPE

* MAXLENGTH

* CHECKED

* SRC

* Y

* X

* QUERYDELAY

* NOSCROLLBAR

* IMGSRC

* B

* FG

* SIZE

* FACE

* COLOR

* DEFFON

* DEFFIXEDFONT

* WIDTH

* VALUE

* TOOLTIP

* NAME

* MIN

* MAX

* HEIGHT

* DISABLED

* ALIGN

* MSG

* LINK

* HREF

* ACTION

*

*

* @version $Revision: 1.3.2.1.2.3 $ $Date: 2005/03/27 15:29:57 $

*/

 

this is the commonly found info witch l2j provides on the server packet

Posted

This info is (at least partially) a lie. I've tried a lot of these attribute/tags and figured out, that very few attributes work.

 

The aim of this thread was to figure out elements, which are in fact really usable within Lineage 2, not hypothetical elements that are supposed to be in there.

 

Also: I've seen the posts on the L2J-forum, but it seems the tags/attributes are either wrong, not interpreted, don't exist or their syntax is unknown.

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.

Guest
Reply to this topic...

×   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.



  • Posts

    • SocNet is looking for new suppliers! — Snapchat accounts  — Reddit accounts with karma  — LinkedIn accounts with real connections Message us or contact support — let’s discuss terms! We’re also open to other partnership opportunities. Our Online Store Offers: ➡ Accounts: Telegram, Facebook, Reddit, Twitter (X), Instagram, YouTube, TikTok, Discord, VK, LinkedIn, GitHub, Snapchat, Gmail, Emails (Outlook, Firstmail, Rambler, Onet, Gazeta, GMX, Yahoo, Proton, Web.de), Google Voice, Google Ads ➡ Premium Subscriptions: Telegram Premium, Twitter Premium X, YouTube Premium, Spotify Premium, Netflix Premium, Discord Nitro, ChatGPT Plus/PRO, XBOX Game Pass ➡ Additional Services: Telegram Stars, Proxies (IPv4, IPv6, ISP, Mobile), VPN (Outline, WireGuard, etc.), VDS/RDP Servers SMM Panel Services: ➡ Use our SMM Panel to boost Facebook, Instagram, Telegram, Spotify, Soundcloud, YouTube, Reddit, Threads, Kick, Discord, LinkedIn, Likee, VK, Twitch, Kwai, Reddit, website traffic, TikTok, TrustPilot, Apple Music, Tripadvisor, Snapchat, and more. Promo code for store discount: PARTNER8 (8% off) Get $1 trial balance for the SMM Panel: Submit a ticket titled “Get Trial Bonus” via our website (Support) ➡ Go to the SMM Panel (clickable) or contact us through the bot Our Key Products: ➡ Online Store: Click ➡ Telegram Shop Bot: Click ➡ SMM Panel: Click Payments accepted: Bank cards · Crypto · Other popular methods Returning buyers receive extra discounts and promo codes! Support: ➡ Telegram: https://t.me/solomon_bog ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store ➡ Telegram Channel: https://t.me/accsforyou_shop You can also use these contacts to: — Discuss bulk orders — Form partnerships (Current partners: https://socnet.bgng.io/partners ) — Become our supplier SocNet — your digital goods & subscription store
    • SocNet is looking for new suppliers! — Snapchat accounts  — Reddit accounts with karma  — LinkedIn accounts with real connections Message us or contact support — let’s discuss terms! We’re also open to other partnership opportunities. Our Online Store Offers: ➡ Accounts: Telegram, Facebook, Reddit, Twitter (X), Instagram, YouTube, TikTok, Discord, VK, LinkedIn, GitHub, Snapchat, Gmail, Emails (Outlook, Firstmail, Rambler, Onet, Gazeta, GMX, Yahoo, Proton, Web.de), Google Voice, Google Ads ➡ Premium Subscriptions: Telegram Premium, Twitter Premium X, YouTube Premium, Spotify Premium, Netflix Premium, Discord Nitro, ChatGPT Plus/PRO, XBOX Game Pass ➡ Additional Services: Telegram Stars, Proxies (IPv4, IPv6, ISP, Mobile), VPN (Outline, WireGuard, etc.), VDS/RDP Servers SMM Panel Services: ➡ Use our SMM Panel to boost Facebook, Instagram, Telegram, Spotify, Soundcloud, YouTube, Reddit, Threads, Kick, Discord, LinkedIn, Likee, VK, Twitch, Kwai, Reddit, website traffic, TikTok, TrustPilot, Apple Music, Tripadvisor, Snapchat, and more. Promo code for store discount: PARTNER8 (8% off) Get $1 trial balance for the SMM Panel: Submit a ticket titled “Get Trial Bonus” via our website (Support) ➡ Go to the SMM Panel (clickable) or contact us through the bot Our Key Products: ➡ Online Store: Click ➡ Telegram Shop Bot: Click ➡ SMM Panel: Click Payments accepted: Bank cards · Crypto · Other popular methods Returning buyers receive extra discounts and promo codes! Support: ➡ Telegram: https://t.me/solomon_bog ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store ➡ Telegram Channel: https://t.me/accsforyou_shop You can also use these contacts to: — Discuss bulk orders — Form partnerships (Current partners: https://socnet.bgng.io/partners ) — Become our supplier SocNet — your digital goods & subscription store
    • SocNet is looking for new suppliers! — Snapchat accounts  — Reddit accounts with karma  — LinkedIn accounts with real connections Message us or contact support — let’s discuss terms! We’re also open to other partnership opportunities. Our Online Store Offers: ➡ Accounts: Telegram, Facebook, Reddit, Twitter (X), Instagram, YouTube, TikTok, Discord, VK, LinkedIn, GitHub, Snapchat, Gmail, Emails (Outlook, Firstmail, Rambler, Onet, Gazeta, GMX, Yahoo, Proton, Web.de), Google Voice, Google Ads ➡ Premium Subscriptions: Telegram Premium, Twitter Premium X, YouTube Premium, Spotify Premium, Netflix Premium, Discord Nitro, ChatGPT Plus/PRO, XBOX Game Pass ➡ Additional Services: Telegram Stars, Proxies (IPv4, IPv6, ISP, Mobile), VPN (Outline, WireGuard, etc.), VDS/RDP Servers SMM Panel Services: ➡ Use our SMM Panel to boost Facebook, Instagram, Telegram, Spotify, Soundcloud, YouTube, Reddit, Threads, Kick, Discord, LinkedIn, Likee, VK, Twitch, Kwai, Reddit, website traffic, TikTok, TrustPilot, Apple Music, Tripadvisor, Snapchat, and more. Promo code for store discount: PARTNER8 (8% off) Get $1 trial balance for the SMM Panel: Submit a ticket titled “Get Trial Bonus” via our website (Support) ➡ Go to the SMM Panel (clickable) or contact us through the bot Our Key Products: ➡ Online Store: Click ➡ Telegram Shop Bot: Click ➡ SMM Panel: Click Payments accepted: Bank cards · Crypto · Other popular methods Returning buyers receive extra discounts and promo codes! Support: ➡ Telegram: https://t.me/solomon_bog ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store ➡ Telegram Channel: https://t.me/accsforyou_shop You can also use these contacts to: — Discuss bulk orders — Form partnerships (Current partners: https://socnet.bgng.io/partners ) — Become our supplier SocNet — your digital goods & subscription store
    • The links are down, why do you publish something that you're just going to delete later?
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock