Author Topic: Stats and Skills Window  (Read 1227 times)

Moniker

  • Traveller
  • *
  • Posts: 35
    • View Profile
Stats and Skills Window
« on: May 22, 2007, 07:09:53 pm »
Hi;

    Have you ever wondered how much tria you have left while in the Stats and Skills Window while at
a trainers during a training session ? Well I have ! Could we have total tria in that window, I hate to pause
during training to open the Inventory window just to see how much is left. It would make a very helpful
addition !

                                                        Thanks for work devs !

Meiko

  • Wayfarer
  • *
  • Posts: 4
    • View Profile
Re: Stats and Skills Window
« Reply #1 on: May 22, 2007, 10:57:17 pm »
ya that would be awsome  \\o// \\o// \\o//

[ Excessive smileys removed. Please don't use more than three in a row. --Karyuu ]
« Last Edit: May 22, 2007, 11:02:06 pm by Karyuu »

Rhok

  • Traveller
  • *
  • Posts: 13
    • View Profile
Re: Stats and Skills Window
« Reply #2 on: May 26, 2007, 07:40:52 pm »
why not just add it to the "information" window so its always visible?

Caarrie

  • Forum Addict
  • *
  • Posts: 3369
  • We want no UNFIXED bugs!!!!!!!!!!!!!
    • View Profile
    • PlaneShift3dMods
Re: Stats and Skills Window
« Reply #3 on: July 16, 2007, 01:36:51 pm »
/data/gui/skillwindow.xml
add this after line 143
Code: [Select]

   <!-- Trias -->
    <widget name="TotalTriasLabel" factory="pawsTextBox">
    <frame x="30" y="165" width="50" height="20" border="no"/>
    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="11" />   
    <text string="Trias" />
    </widget>
    <widget name="TotalTrias" factory="pawsTextBox">
    <frame x="150" y="165" width="90" height="20" border="no"/>
    <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="255" size="8" />   
    <text string="0" />
    <subscriptions>
    <subscribe data="sigInvMoneyTotal" />
    </subscriptions>
    </widget>

http://www.fileshost.com/en/file/1880/skillwindow-xml.html

hey devs can you put this on cvs as well? Trias now update outside the inventory window so this works fine now.

It could be added to the info window but it is so small that there is not much room to make sure it can fit at all resolutions.

Nikodemus

  • Prospects
  • Veteran
  • *
  • Posts: 1808
    • View Profile
Re: Stats and Skills Window
« Reply #4 on: July 16, 2007, 05:25:27 pm »
A bit more advanced mod:

http://crimsonorder.freepgs.com/things/ps-mc/skillwindow.xml

As to what got changed, well, kind of everything:

I made a background for it i dont like anymore, but it should have 3 backgrounds anyway, coz there are 3 skins. Someone want to make some? ;)

anyway, cut everything beetwen <widget_description> and </widget_description>, pasting there this: :)) Of course if someone feel interested i can go on and try to point out what exacty changed, but someone needs to actually want it.
Code: [Select]
<widget name="SkillWindow" factory="pawsSkillWindow"
     visible="no" savepositions="yes" movable="yes" resizable="no" configurable="yes">
       
    <frame x="50" y="50" width="430" height="500" border="yes" />
    <title resource="Blue Title" text="Stats and Skills" align="left" close_button="yes" />
    <font name="/planeshift/data/ttf/verdana.ttf" r="-1" g="-1" b="-1" size="9" resizetoscreen="no" />
    <bgimage resource="Skills Background" alpha="200" />

    <!-- Vitals (HP, Mana, Stamina) -->
    <widget name="HPLbl" factory="pawsTextBox" >
        <frame x="33" y="24" width="120" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="7" />
        <text string="Hit Points" />
    </widget>
    <widget name="ManaLbl" factory="pawsTextBox" >
        <frame x="33" y="42" width="120" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="7" />
        <text string="Mana" />
    </widget>
    <widget name="PysStaminaLbl" factory="pawsTextBox" >
        <frame x="33" y="60" width="120" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="7" />
        <text string="Physical Stamina" />
    </widget>
    <widget name="MenStaminaLbl" factory="pawsTextBox" >
        <frame x="33" y="78" width="120" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="7" />
        <text string="Mental Stamina" />
    </widget>
    <widget name="ExperienceLbl" factory="pawsTextBox" >
        <frame x="33" y="96" width="120" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="7" />
        <text string="Experience" />
    </widget>

    <!-- Vitals: numbers -->
    <widget name="HPFrac" factory="pawsTextBox" >
        <frame x="162" y="24" width="60" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="250" g="250" b="250" size="7" />
        <text string="" horizAdjust="RIGHT" />
    </widget>
    <widget name="ManaFrac" factory="pawsTextBox" >
        <frame x="162" y="42" width="60" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="250" g="250" b="250" size="7" />
        <text string="" horizAdjust="RIGHT" />
    </widget>
    <widget name="PysStaminaFrac" factory="pawsTextBox" >
        <frame x="162" y="60" width="60" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="250" g="250" b="250" size="7" />
        <text string="" horizAdjust="RIGHT" />
    </widget>
    <widget name="MenStaminaFrac" factory="pawsTextBox">
        <frame x="162" y="78" width="60" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="250" g="250" b="250" size="7" />
        <text string="" horizAdjust="RIGHT" />
    </widget>
    <widget name="ExperiencePerc" factory="pawsTextBox">
        <frame x="162" y="96" width="60" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="250" g="250" b="250" size="7" />
        <text string="" horizAdjust="RIGHT" />
        <subscriptions format="percent">
            <subscribe data="fExpPts:Self" />
        </subscriptions>
    </widget>

    <!-- Vitals: bars -->
      <widget name="HPBar" factory="pawsProgressBar">
        <frame x="32" y="26" width="186" height="8" border="no" />
        <color     r="50" g="0" b="0" />
        <fadecolor r="255" g="0" b="0" />
        <subscriptions>
            <subscribe data="fVitalValue0:Self" />
        </subscriptions>
    </widget>
    <widget name="ManaBar" factory="pawsProgressBar">
        <frame x="32" y="44" width="186" height="8" border="no" />
        <color     r="0"  g="0" b="50" />
        <fadecolor r="120" g="0" b="190" />
        <subscriptions>
            <subscribe data="fVitalValue1:Self" />
        </subscriptions>
    </widget>
    <widget name="PysStaminaBar" factory="pawsProgressBar">
        <frame x="32" y="62" width="186" height="8" border="no" />
        <color     r="0" g="50"  b="0" />
        <fadecolor r="40" g="210" b="20" />
        <subscriptions>
            <subscribe data="fVitalValue2:Self" />
        </subscriptions>
    </widget>
    <widget name="MenStaminaBar" factory="pawsProgressBar">
        <frame x="32" y="80" width="186" height="8" border="no" />
        <color     r="40" g="50" b="60" />
        <fadecolor r="120" g="130" b="140" />
    <subscriptions>
        <subscribe data="fVitalValue3:Self" />
    </subscriptions>
    </widget>
    <widget name="ExperienceBar" factory="pawsProgressBar">
        <frame x="32" y="98" width="186" height="8" border="no" />
        <color     r="75" g="50" b="0" />
        <fadecolor r="255" g="255" b="0" />
    <subscriptions>
        <subscribe data="fExpPts:Self" />
    </subscriptions>
    </widget>

    <!-- Doll -->
    <widget name="Doll" factory="pawsObjectView" >
        <frame x="324" y="188" width="90" height="182" border="no"/>
        <map file="/planeshift/world/podium" sector="room" />
        <distance value="6"/>
    <subscriptions>
        <subscribe data="sigActorUpdate" />
    </subscriptions>
    </widget>
   
    <!-- Duel Points -->
    <widget name="DPLabel" factory="pawsTextBox" >
        <frame x="255" y="59" width="100" height="20" border="no" />
        <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="11" shadow="true"/>
        <text string="Duel Points" horizAdjust="RIGHT" />
    </widget>
   
    <widget name="DPTotal" factory="pawsTextBox" >
        <frame x="355" y="59" width="70" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="255" size="8" shadow="true"/>
        <text string="0.00" />
    </widget>

   <!-- Trias -->
    <widget name="TotalTriasLabel" factory="pawsTextBox">
    <frame x="255" y="77" width="100" height="20" border="no"/>
    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="11" />   
    <text string="Trias" horizAdjust="RIGHT"/>
    </widget>
    <widget name="TotalTrias" factory="pawsTextBox">
    <frame x="355" y="77" width="70" height="20" border="no"/>
    <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="255" size="8" />   
    <text string="0" />
    <subscriptions>
    <subscribe data="sigInvMoneyTotal" />
    </subscriptions>
    </widget>

    <!-- Progression Points -->
    <widget name="PPLabel" factory="pawsTextBox" >
        <frame x="235" y="95" width="135" height="20" border="no" />
        <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="11" shadow="true"/>
        <text string="Progression Points" horizAdjust="RIGHT" />
    </widget>
   
    <widget name="PPTotal" factory="pawsTextBox" >
        <frame x="370" y="95" width="50" height="20" border="no" />
        <font name="/planeshift/data/ttf/verdana.ttf" r="255" g="255" b="255" size="8" shadow="true"/>
        <subscriptions>
            <subscribe data="fProgrPts:Self" />
        </subscriptions>
    </widget>

    <!-- buttons -->
    <widget name="BuySkill" factory="pawsButton" id="100" tooltip="Buy Skill" >
        <frame x="265" y="23" width="32" height="32" />
        <bgimage resource="BuySkill" />
    </widget>

    <widget name="Filter" factory="pawsButton" id="101" tooltip="Filter" >
        <frame x="300" y="23" width="32" height="32" />
        <bgimage resource="FilterSkill" />
    </widget>
   
    <widget name="EditDesc" factory="pawsButton" id="102" tooltip="Modify Description" >
        <frame x="365" y="23" width="32" height="32" />
        <bgimage resource="Scribe" />
    </widget>
   
    <!-- Skills -->
    <widget name="Skill Tabs" factory="pawsTabWindow" style="tabwindow">
            <frame x="0" y="130" width="430" height="370" border="no" />
            <attachpoints>
                <attach point="ATTACH_RIGHT" />
                <attach point="ATTACH_TOP" />
                <attach point="ATTACH_LEFT" />
                <attach point="PROPORTIONAL_BOTTOM" />
            </attachpoints>
            <!-- Tabs -->
            <widget name="Stats Button" factory="pawsButton" style="tabbuttonskills" id="1000" >
                <frame x="19" y="4" width="38" />
                <label text="Stats" />
                <attachpoints>
                    <attach point="PROPORTIONAL_RIGHT" />
                    <attach point="ATTACH_LEFT" />
                </attachpoints>
            </widget>
           
            <widget name="Faction Button" factory="pawsButton" style="tabbuttonskills" id="1005" >
                <frame x="57" y="4" width="51" border="no"/>
                <label text="Faction" />
                <attachpoints>
                   <attach point="PROPORTIONAL_RIGHT" />
                   <attach point="PROPORTIONAL_LEFT" />
                </attachpoints>
            </widget>
           
            <widget name="Combat Button" factory="pawsButton" style="tabbuttonskills" id="1001" >
                <frame x="108" y="4" width="82" />
                <label text="Combat Skills" />
                <attachpoints>
                    <attach point="PROPORTIONAL_RIGHT" />
                    <attach point="PROPORTIONAL_LEFT" />
                </attachpoints>
            </widget>
           
            <widget name="Magic Button" factory="pawsButton" style="tabbuttonskills" id="1002">
                <frame x="190" y="4" width="74"  />
               
                <label text="Magic Skills" />
                <attachpoints>
                    <attach point="PROPORTIONAL_RIGHT" />
                    <attach point="PROPORTIONAL_LEFT" />
                </attachpoints>
            </widget>
            <widget name="Jobs Button" factory="pawsButton" style="tabbuttonskills" id="1003" >
                <frame x="264" y="4" width="67" />
                <label text="Jobs Skills" />
                <attachpoints>
                    <attach point="ATTACH_RIGHT" />
                    <attach point="PROPORTIONAL_LEFT" />
                </attachpoints>
            </widget>
            <widget name="Various Button" factory="pawsButton" style="tabbuttonskills" id="1004" >
                <frame x="331" y="4" width="82" />
                <label text="Various Skills" />
                <attachpoints>
                    <attach point="ATTACH_RIGHT" />
                    <attach point="PROPORTIONAL_RIGHT" />
                </attachpoints>
            </widget>
       
            <widget name="Stats" factory="pawsWidget" visible="no" id="1100">
                <frame x="0" y="30" width="430" height="330" border="no" />
                <attachpoints>
                    <attach point="ATTACH_RIGHT" />
                    <attach point="PROPORTIONAL_TOP" />
                    <attach point="ATTACH_LEFT" />
                    <attach point="PROPORTIONAL_BOTTOM" />
                </attachpoints>
                 <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="-3" width="150" height="20" border="no"/>
                    <text string="Stats:" />
                </widget>

                <widget name="StatsSkillList" factory="pawsListBox"  >
                    <frame x="20" y="25" width="280" height="200" border="no" />
<highlight resource="Hightlight" alpha="128" />
                    <columns height="17" headings="no" >
                        <column width="100" >
                            <widget name="StatsSkill" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                            </widget>
                        </column>                                               
                        <column width="65" >
                            <widget name="StatsRank" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                                <text string="" horizAdjust="RIGHT" />
                            </widget>
                        </column>
                        <column width="100" >
                            <widget name="StatsIndCol" factory="pawsWidget">
                                <widget name="StatsIndicator" factory="pawsSkillIndicator">
                                    <frame x="0" y="2" width="100" height="12" border="no" />
                                </widget>
                            </widget>
                        </column>
                     </columns>
                </widget>
                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="224" width="180" height="20" border="no"/>
                    <text string="Stats description:" />
                </widget>

                <widget name="StatsDescription" factory="pawsMultiLineTextBox" >
                    <frame x="30" y="250" width="372" height="74" border="no" />
                    <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="9" resizetoscreen="no" />
                </widget>

            </widget>
« Last Edit: July 16, 2007, 08:37:50 pm by Nikodemus »



What you can failure tommorow, failure today.


Better click for shiny stylez Help me with images!

Nikodemus

  • Prospects
  • Veteran
  • *
  • Posts: 1808
    • View Profile
Re: Stats and Skills Window
« Reply #5 on: July 16, 2007, 05:26:45 pm »
I heard devs like to see what changed, so following Caarrie axample, here goes the rest of the changes, coz there is character limit per post ;)

Code: [Select]
            <widget name="Faction Skills Panel" factory="pawsWidget" visible="no" id="1105">
                <frame x="0" y="30" width="430" height="330" />
                <attachpoints>
                    <attach point="ATTACH_RIGHT" />
                    <attach point="PROPORTIONAL_TOP" />
                    <attach point="ATTACH_LEFT" />
                    <attach point="PROPORTIONAL_BOTTOM" />
                </attachpoints>
                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="-3" width="150" height="20" border="no"/>
                    <text string="Factions:" />
                </widget>

                <widget name="FactionList" factory="pawsListBox"  >
                    <frame x="20" y="25" width="280" height="200" border="no" />
<highlight resource="Hightlight" alpha="128" />
                    <columns height="17" headings="no" >
                        <column width="180" >
                            <widget name="FactionName" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                            </widget>
                        </column>   
                        <column width="80" >
                            <widget name="FactionRank" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                            </widget>
                        </column>
                     </columns>
                </widget>
            </widget>

            <widget name="Combat Skills Panel" factory="pawsWidget" visible="no" id="1101">
                <frame x="0" y="30" width="430" height="330" />
                <attachpoints>
                    <attach point="ATTACH_RIGHT" />
                    <attach point="PROPORTIONAL_TOP" />
                    <attach point="ATTACH_LEFT" />
                    <attach point="PROPORTIONAL_BOTTOM" />
                </attachpoints>
                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="-3" width="150" height="20" border="no"/>
                    <text string="Combat Skills List:" />
                </widget>

                <widget name="CombatSkillList" factory="pawsListBox"  >
                    <frame x="20" y="25" width="280" height="200" border="no" />
<highlight resource="Hightlight" alpha="128" />
                    <columns height="17" headings="no" >
                        <column width="120" >
                            <widget name="CombatSkill" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                            </widget>
                        </column>                                               
                        <column width="45" >
                            <widget name="CombatRank" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                                <text string="" horizAdjust="RIGHT" />
                            </widget>
                        </column>
                        <column width="100" >
                            <widget name="CombatIndCol" factory="pawsWidget">
                                <widget name="CombatIndicator" factory="pawsSkillIndicator">
                                    <frame x="0" y="2" width="100" height="12" border="no" />
                                </widget>
                            </widget>
                        </column>
                     </columns>
                </widget>

                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="224" width="180" height="20" border="no"/>
                    <text string="Combat Skill description:" />
                </widget>

                <widget name="CombatDescription" factory="pawsMultiLineTextBox" >
                    <frame x="30" y="250" width="372" height="74" border="no" />
                    <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="9" resizetoscreen="no" />
                </widget>
            </widget>

            <widget name="Magic Skills Panel" factory="pawsWidget" visible="yes" id="1102">
                <frame x="0" y="30" width="430" height="330" />
                <attachpoints>
                    <attach point="ATTACH_RIGHT" />
                    <attach point="PROPORTIONAL_TOP" />
                    <attach point="ATTACH_LEFT" />
                    <attach point="PROPORTIONAL_BOTTOM" />
                </attachpoints>
                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="-3" width="150" height="20" border="no"/>
                    <text string="Magic Skills List:" />
                </widget>

                <widget name="MagicSkillList" factory="pawsListBox"  >
                    <frame x="20" y="25" width="280" height="200" border="no" />
<highlight resource="Hightlight" alpha="128" />
                    <columns height="17" headings="no" >
                        <column width="120" >
                            <widget name="MagicSkill" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                            </widget>
                        </column>                                               
                        <column width="45" >
                            <widget name="MagicRank" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                                <text string="" horizAdjust="RIGHT" />
                            </widget>
                        </column>
                        <column width="100" >
                            <widget name="MagicIndCol" factory="pawsWidget">
                                <widget name="MagicIndicator" factory="pawsSkillIndicator">
                                    <frame x="0" y="2" width="100" height="12" border="no" />
                                </widget>
                            </widget>
                        </column>
                     </columns>
                </widget>

                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="224" width="180" height="20" border="no"/>
                    <text string="Magic Skill description:" />
                </widget>

                <widget name="MagicDescription" factory="pawsMultiLineTextBox" >
                    <frame x="30" y="250" width="372" height="74" border="no" />
                    <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="9" resizetoscreen="no" />
                </widget>
            </widget>
       
            <widget name="Jobs Skills Panel" factory="pawsWidget" visible="no" id="1103">
                <frame x="0" y="30" width="430" height="330" />
                <attachpoints>
                    <attach point="ATTACH_RIGHT" />
                    <attach point="PROPORTIONAL_TOP" />
                    <attach point="ATTACH_LEFT" />
                    <attach point="PROPORTIONAL_BOTTOM" />
                </attachpoints>
                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="-3" width="150" height="20" border="no"/>
                    <text string="Jobs Skills List:" />
                </widget>

                <widget name="JobsSkillList" factory="pawsListBox"  >
                    <frame x="20" y="25" width="280" height="190" border="no" />
<highlight resource="Hightlight" alpha="128" />
                    <columns height="17" headings="no" >
                        <column width="120" >
                            <widget name="JobsSkill" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                            </widget>
                        </column>                                               
                         <column width="45" >
                            <widget name="JobsRank" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                                <text string="" horizAdjust="RIGHT" />
                            </widget>
                        </column>
                        <column width="100" >
                            <widget name="JobsIndCol" factory="pawsWidget">
                                <widget name="JobsIndicator" factory="pawsSkillIndicator">
                                    <frame x="0" y="2" width="100" height="12" border="no" />
                                </widget>
                            </widget>
                        </column>
                     </columns>
                </widget>

                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="224" width="180" height="20" border="no"/>
                    <text string="Jobs Skill description:" />
                </widget>

                <widget name="JobsDescription" factory="pawsMultiLineTextBox" >
                    <frame x="30" y="250" width="372" height="74" border="no" />
                    <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="9" resizetoscreen="no" />
                </widget>
            </widget>
       
            <widget name="Various Skills Panel" factory="pawsWidget" visible="no" id="1104">
                <frame x="0" y="30" width="430" height="330" />
                <attachpoints>
                    <attach point="ATTACH_RIGHT" />
                    <attach point="PROPORTIONAL_TOP" />
                    <attach point="ATTACH_LEFT" />
                    <attach point="PROPORTIONAL_BOTTOM" />
                </attachpoints>
                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="-3" width="150" height="20" border="no"/>
                    <text string="Various Skills List:" />
                </widget>

                <widget name="VariousSkillList" factory="pawsListBox"  >
                    <frame x="20" y="25" width="280" height="190" border="no" />
<highlight resource="Hightlight" alpha="128" />
                    <columns height="17" headings="no" >
                        <column width="120" >
                            <widget name="VariousSkill" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                            </widget>
                        </column>                                               
                         <column width="45" >
                            <widget name="VariousRank" factory="pawsTextBox">
                                <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="8" />
                                <text string="" horizAdjust="RIGHT" />
                            </widget>
                        </column>
                        <column width="100" >
                            <widget name="VariousIndCol" factory="pawsWidget">
                                <widget name="VariousIndicator" factory="pawsSkillIndicator">
                                    <frame x="0" y="2" width="100" height="12" border="no" />
                                </widget>
                            </widget>
                        </column>
                     </columns>
                </widget>

                <widget name="" factory="pawsTextBox" >
                    <font name="/planeshift/data/ttf/cupandtalon.ttf" r="255" g="255" b="255" size="12" />
                    <frame x="34" y="224" width="180" height="20" border="no"/>
                    <text string="Various Skill description:" />
                </widget>

                <widget name="VariousDescription" factory="pawsMultiLineTextBox" >
                    <frame x="30" y="250" width="372" height="74" border="no" />
                    <font name="/planeshift/data/ttf/verdana.ttf" r="180" g="180" b="180" size="9" resizetoscreen="no" />
                </widget>
            </widget>

        </widget>


</widget>



What you can failure tommorow, failure today.


Better click for shiny stylez Help me with images!

Caarrie

  • Forum Addict
  • *
  • Posts: 3369
  • We want no UNFIXED bugs!!!!!!!!!!!!!
    • View Profile
    • PlaneShift3dMods
Re: Stats and Skills Window
« Reply #6 on: July 16, 2007, 07:58:12 pm »
Unless a dev does the art over again for that window your gui mod will not work very well I would also move the modify description button more to the left.

Nikodemus

  • Prospects
  • Veteran
  • *
  • Posts: 1808
    • View Profile
Re: Stats and Skills Window
« Reply #7 on: July 16, 2007, 08:20:06 pm »
it was orginally like this, but you are right

And yeah, someone with permission, right has to spent some time on the backgrounds, but its kind of worth i suppose, eh ;)
« Last Edit: July 16, 2007, 08:22:00 pm by Nikodemus »



What you can failure tommorow, failure today.


Better click for shiny stylez Help me with images!

Naekis

  • Traveller
  • *
  • Posts: 19
    • View Profile
Re: Stats and Skills Window
« Reply #8 on: August 28, 2007, 01:20:42 am »
Maybe this is what you're searching for.

Nikodemus, i know you know this thread, it's just a help for the others who don't  ;)
May the lamp of friendship be lighted with the oil of sincerity