Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #1  
Old 06-16-2017, 03:44 AM
bigsykedaddy bigsykedaddy is offline
Sarnak

bigsykedaddy's Avatar

Join Date: Jan 2012
Posts: 365
Default Playing on a 4k Monitor

Hello everyone. I am currently playing on a 4k Monitor in windowed mode at a custom resolution so it fills most of the screen (3640 x 1960.) I have read all the information there is out there on trying to make the game more playable at this resolution. I currently have it set to chat font size 5 (it's the largest I can get it to go, even after editing the .ini file.)

My question is this; If I open the VertUI files in photoshop and edit them to a larger size do you think that would work? If not, does anyone know a way to make custom UI elements a certain size and load them into p99? If that does work, how about the chat size, has anyone found a solution to go higher than 5?

I really don't want to change my monitor resolution every time I play so any kind of work around would be awesome. Thank you all in advance for your time.

If I end up figuring this out myself I will post an update here for others that go looking in the future. [You must be logged in to view images. Log in or Register.]
__________________

Gunnter
- 60 Assassin
Syzzurp Purpledrank - 60 Grandmaster
Scientology Tomcruise -60 Phantasmist
< The Mystical Order >
Reply With Quote
  #2  
Old 06-16-2017, 09:48 AM
Knowmercy Knowmercy is offline
Sarnak

Knowmercy's Avatar

Join Date: Oct 2015
Location: USA
Posts: 238
Default

your essentially trying to figure out a way to change the "scale" of the UI. tmk dont know if its possible, probly pretty hard someone correct me if im wrong.

ask some of the UI gods about this, curious as well
__________________
Knowmercy, Jorras (Santaclaws), Ninjury, Endling, Wootface, Scam
Reply With Quote
  #3  
Old 06-16-2017, 11:54 AM
Tupakk Tupakk is offline
Planar Protector


Join Date: Sep 2014
Posts: 1,916
Default

PM paulgiamatti I don't know if that's the correct spelling. He would know for sure.

I'm sure there is a way to make the UI bigger but you might be stuck in the confines of CF5 because of the program.
__________________

Tupakk-57 Bard(Raid Whore)Afeni-45 Druid (Dial a Port Leadership) |Forums|Facebook| Lumumba-60 Rogue(DaP Security)/(Nocterma Member) & Department of Fun Promoter
Reply With Quote
  #4  
Old 06-16-2017, 12:22 PM
MiRo2 MiRo2 is offline
Fire Giant

MiRo2's Avatar

Join Date: May 2010
Posts: 732
Default

Can only really change the size of images in the UI, all the data is from EQTypes, not entirely sure the max size you can set it at, will do some research. None of that would affect the chat font size though.
Reply With Quote
  #5  
Old 06-16-2017, 12:59 PM
Sage Truthbearer Sage Truthbearer is offline
Fire Giant

Sage Truthbearer's Avatar

Join Date: Nov 2013
Posts: 604
Default

I don't think it's possible to change the size of the UI elements other than chatfontsize but let me know if so. They look small even in 1440p, can't imagine 4k.
Reply With Quote
  #6  
Old 06-16-2017, 03:29 PM
bigsykedaddy bigsykedaddy is offline
Sarnak

bigsykedaddy's Avatar

Join Date: Jan 2012
Posts: 365
Default

Thanks for the responses guys. Yeah I sent an email to the creator of Duxa to see if he could offer some insight. I tried digging around in the UI elements and seeing if I could change some of the numbers to make certain elements appear bigger. I'm not a coder so I don't know what I'm doing, but so far nada.

Yeah I used to play at 2560 x 1440 in windowed mode for years and that wasn't bad at all, but 4k I need a magnifying glass lmfao.

Thanks again for the help and I'll update this thread if I figure anything out [You must be logged in to view images. Log in or Register.]
__________________

Gunnter
- 60 Assassin
Syzzurp Purpledrank - 60 Grandmaster
Scientology Tomcruise -60 Phantasmist
< The Mystical Order >
Reply With Quote
  #7  
Old 06-17-2017, 09:36 PM
MiRo2 MiRo2 is offline
Fire Giant

MiRo2's Avatar

Join Date: May 2010
Posts: 732
Default

You can change the size of anything displayed in the UI. I haven't had a chance to test max sizes, and I don't have a UHD TV so I'm not sure what size would be appropriate. Here is the pull out of an EQType display in the UI, this one being current wieght, you would just change whats in the size tag.
Code:
<Label item="PW_CurrentWeight">
		<ScreenID>WeightNumberLabel</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>92</X>
			<Y>79</Y>
		</Location>
		<Size>
			<CX>30</CX>
			<CY>10</CY>
		</Size>
		<EQType>24</EQType>
		<Text>500</Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>0</B>
		</TextColor>
		<NoWrap>true</NoWrap>
		<AlignCenter>false</AlignCenter>
		<AlignRight>true</AlignRight>
	</Label>
But you need to realize that just changing the EQType size is just the begining, you will likely need to adjust its location, and probably the size/border of the UI item itself.
Last edited by MiRo2; 06-17-2017 at 09:37 PM.. Reason: More info
Reply With Quote
  #8  
Old 06-19-2017, 04:04 AM
bigsykedaddy bigsykedaddy is offline
Sarnak

bigsykedaddy's Avatar

Join Date: Jan 2012
Posts: 365
Default

Quote:
Originally Posted by MiRo2 [You must be logged in to view images. Log in or Register.]
You can change the size of anything displayed in the UI. I haven't had a chance to test max sizes, and I don't have a UHD TV so I'm not sure what size would be appropriate. Here is the pull out of an EQType display in the UI, this one being current wieght, you would just change whats in the size tag.
Code:
<Label item="PW_CurrentWeight">
		<ScreenID>WeightNumberLabel</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>92</X>
			<Y>79</Y>
		</Location>
		<Size>
			<CX>30</CX>
			<CY>10</CY>
		</Size>
		<EQType>24</EQType>
		<Text>500</Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>0</B>
		</TextColor>
		<NoWrap>true</NoWrap>
		<AlignCenter>false</AlignCenter>
		<AlignRight>true</AlignRight>
	</Label>
But you need to realize that just changing the EQType size is just the begining, you will likely need to adjust its location, and probably the size/border of the UI item itself.
Awesome thank you very much, I will definitely play around with this. If I get it to work I will post my settings so others with a 4k monitor can benefit as well. Is this in the EQclient.ini? Thanks again
__________________

Gunnter
- 60 Assassin
Syzzurp Purpledrank - 60 Grandmaster
Scientology Tomcruise -60 Phantasmist
< The Mystical Order >
Reply With Quote
  #9  
Old 06-19-2017, 12:23 PM
MiRo2 MiRo2 is offline
Fire Giant

MiRo2's Avatar

Join Date: May 2010
Posts: 732
Default

It is in the UI files themselves, you'll need an XML editor to do it, there are several free ones available. I've heard you can do it in word pad too, but I've not tried it.
Reply With Quote
  #10  
Old 06-19-2017, 12:52 PM
ziffiz ziffiz is offline
Scrawny Gnoll


Join Date: Apr 2017
Posts: 22
Default

I was looking into this and successfully changed one component and then realized changing everything is basically building an entire UI and I dont want to tackle that. Would love it if someone else has time/desire to build a 4K UI.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:41 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.