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!

Modify Serverlists / Reskin Launcher

Junior Spellweaver
Joined
Nov 25, 2006
Messages
128
Reaction score
22
C:\Programme\Perfect World\element\userdata\server

file serverlist.txt

Orginal Server's
ORACLE (PVP) 29000:goin.perfectworld.com.my 11
DELPHI (PVP) 29000:delphi.perfectworld.com.my 12

PRIVAT Server's
Debian 29000:192.168.1.19 13
CentOS 29000:192.168.1.20 14
SuSE 29000:192.168.1.21 15
Fedora 29000:192.168.1.22 16





Enjoy...
 

HUN

Initiate Mage
Joined
Sep 5, 2008
Messages
3
Reaction score
0
serverlist.txt
good server:D

Revolution World 29000:87.229.24.48 11
Register account:

Rate:


Xp: 6 Sp: 8 Gold: 20 Drop: 20
 
Junior Spellweaver
Joined
Nov 25, 2006
Messages
128
Reaction score
22
serverlist.txt
good server:D

Revolution World 29000:87.229.24.48 11
Register account:

Rate:


Xp: 6 Sp: 8 Gold: 20 Drop: 20


wrong section noob... clean up ur posting now!
 

HUN

Initiate Mage
Joined
Sep 5, 2008
Messages
3
Reaction score
0
wrong section noob... clean up ur posting now!

Sorry Sorry!
Correct serverlist:
Registration account:
 
Just Eistiger.
Joined
Jul 9, 2008
Messages
442
Reaction score
238
C:\Programme\Perfect World\element\userdata\server

file serverlist.txt







Enjoy...

U use Client 1.3.9 Int? How can u connect?
 

HUN

Initiate Mage
Joined
Sep 5, 2008
Messages
3
Reaction score
0
<a href="http://perfectworld.revolution-world.com"><img src="http://kepfeltoltes.hu/080912/Revolution_www.kepfeltoltes.hu_.jpg
" border=0></a>
 
Initiate Mage
Joined
Sep 12, 2008
Messages
2
Reaction score
1
sorry to bump an oldish thread, but if you really want to reskin the launcher interface go to \patcher\skin folder under your perfect world directory. You can edit the main look of the interface through the images folder just under there - they work by "layering" images on each other and the mainumi.xml file describes how they fit together

for example the choose-bg.bmp is displayed as the main background, the mainuni.xml file uses the choose-map.bmp to figure out what buttons go where (it's based on a color code) in the mainuni.xml file it looks like this


<SkinWindow Name="Choose" Text="Please Selecte">
<SkinArt BackgroundColor="255,0,255">
<Image Type="BackgroundImage" Path="skin/image/choose-bg.bmp"/>
<Image Type="MapImage" Path="skin/image/choose-map.bmp"/>
</SkinArt>

note that the
<SkinArt BackgroundColor="255,0,255">
section defines that where the purple color appears in a background it should be transparent.

Theres not too much you can do with the events except disable ones you don't want and remove them or in a few cases redirect them. For example - inside the mainuni.xml file is a section saying

<SkinButton Name="Service" TabID="8" MapColor="0,128,255" Text="Service" Style="ButtonStyle2">
<SkinArt>
<Image Type="BackgroundImage" Path="skin/image/button-bg.bmp"/>
<Image Type="FocusedImage" Path="skin/image/button-focused.bmp"/>
<Image Type="ClickedImage" Path="skin/image/button-clicked.bmp"/>
<Image Type="FocusClickedImage" Path="skin/image/button-focusclicked.bmp"/>
<Image Type="HoverImage" Path="skin/image/button-hover.bmp"/>
</SkinArt>
<Command Event="click" Name="PlaySound" FileName="skin/sounds/click.wav"/>
<Command Event="click" Name="BrowserLink" URL="mailto:help@whateverpwserver.com"/>
</SkinButton>

which in the main interface defines the "service" button - by deleting this section you remove the button and leave a blank spot - or by changing the bit I highlighted blue you redirect the service button to wherever you want. The other key one worth editting is to search for

<SkinBrowser Name="UpdateBrowser" MapColor="255,0,0" InitURL="www.perfectworld.com.my/gameAnnouncement/launcherNotice.asp"/>

obviously this is from myen but if you look through the mainuni.xml you should be able to find the line - just change that url and you can repoint it too whatever website you want. If you edit the main-map.bmp to adjust the red square (defined by the bit saying
MapColor="255,0,0"
you can give yourself more space if you want. Editting the mainuni.xml lets you control not only the main launcher interface but also the config update server, and video settings interfaces as well.

have fun and good luck :)
 
Back
Top