Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Added a New option now its label in option.xml shows on login screen and the lobby

Junior Spellweaver
Joined
Jan 6, 2009
Messages
100
Reaction score
3


This label "camera distance" should only show in the options menu on video
Does anyone have any idea how i can sort this out

This is what ive added to Option.xml
<LABEL item="Label" parent="VideoOptionGroup2">
<FONT>FONTa9</FONT>
<TEXTCOLOR>
<R>205</R>
<G>205</G>
<B>205</B>
</TEXTCOLOR>
<BOUNDS>
<X>2</X>
<Y>240</Y>
<W>300</W>
<H>24</H>
</BOUNDS>
<TEXT>CameraDistance</TEXT> <!-- 1초당 프레임 제한 -->
</LABEL>
<COMBOBOX item="CameraDistance" parent="VideoOptionGroup">
<LISTBOXLOOK>CustomListBoxLook</LISTBOXLOOK>
<BUTTONLOOK>ListBoxButtonLook</BUTTONLOOK>
<FONT>FONTa9</FONT>
<TEXTCOLOR>
<R>205</R>
<G>205</G>
<B>205</B>
</TEXTCOLOR>
<TEXTALIGN>
<VALIGN>center</VALIGN>
<HALIGN>left</HALIGN>
</TEXTALIGN>
<BOUNDS>
<X>105</X>
<Y>240</Y>
<W>90</W>
<H>24</H>
</BOUNDS>
<ALIGN>
<HALIGN>right</HALIGN>
</ALIGN>
<LISTITEM selected="true">Default</LISTITEM>
<LISTITEM>390</LISTITEM>
<LISTITEM>490</LISTITEM>
<LISTITEM>590</LISTITEM>
<LISTITEM>690</LISTITEM>
<LISTITEM>790</LISTITEM>
<LISTITEM>890</LISTITEM>
<LISTITEM>990</LISTITEM>
<DROPSIZE>80</DROPSIZE>
<COMBOTYPE>1</COMBOTYPE>
</COMBOBOX>
 
Last edited:
Skilled Illusionist
Joined
Oct 3, 2011
Messages
300
Reaction score
48
Guess w0t

Code:
<LABEL item="Label" parent="[COLOR="#FF0000"]VideoOptionGroup2[/COLOR]">
<FONT>FONTa9</FONT>
<TEXTCOLOR>
<R>205</R>
<G>205</G>
<B>205</B>
</TEXTCOLOR>
<BOUNDS>
<X>2</X>
<Y>240</Y>
<W>300</W>
<H>24</H>
</BOUNDS>
<TEXT>CameraDistance</TEXT> <!-- 1초당 프레임 제한 -->
</LABEL>
 
Upvote 0
Back
Top