Rationale Posted May 1, 2024 Posted May 1, 2024 As title say any client .dll that changes add new packet for HighFive that increase html size, i want x3 the html in width. Quote
StinkyMadness Posted June 23, 2024 Posted June 23, 2024 With NPCDialogWnd.uc modification of Interface.u you can change the size of the window for each HTML: Use this: https://pastebin.com/iYs8AQQ7 and you will need also this one on UICommonAPI.uc:: function String StringBetween(String param, String iString1, String iString2) { local int varInt; varInt = InStr(param, iString1) + Len(iString1); return Mid(param, varInt, InStr(param, iString2) - varInt); } Inside the <html> tag you can add "WIDTH=X", "HEIGHT=X" or "IMAGE=X" 1 Quote
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.