A popup with specific size itemlink

@@Aeromesi

He is confusing.. why does he talk about a webbrowser?

For items it would work like that though:

mes "Bring me 1 x <ITEMLINK>Valyrie Shield<INFO>2115</INFO></ITEMLINK>.";
There is also a link way to link to a page inside of the game like that:

mes "You can <URL>Google<INFO>http://www.google.com/</INFO></URL> anything.";
But i don't know if there is a option to pick the size of the window it opens in. I think there isn't.

 
Last edited by a moderator:
I'll test and theorize the idea of <ITEMLINK WIDTH ="x" HEIGHT="y">

Dunno if that'll work xD, kinda' like a hyper link in html

Update: With further testing no errors showed up with this code:
 

<ITEMLINK WIDTH= 50 HEIGHT = 50><INFO>2115</INFO></ITEMLINK>


If I put a " " in between one of the values it says I need a ; at the end of the script, now time to test in-game.

@@mrlongshen after many attempts, sorry man but it's not possible
default_sad.png


 
Last edited by a moderator:
Last edited by a moderator:
@@mrlongshen

If you have access to the website you link to, put in a javascript to auto set the width of the window on loading.

Something like:

Code:
window.onload = function() {    window.resizeTo(300,300);}
 
Last edited by a moderator:
Back
Top