-
Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Hi Guys, it seems like a load of you are having issues with databases, java versions and whatnot and after hours seeing the fruits of your labour crashing and burning and after many hours of trying is very downheartening (been there got tee-shirt etc..)
So I release this Image created on VMware Workstation 6.5.1 which has the following installed..
* Java 1.6.0_12 JDK
* Lampp 1.6.8a (which has Apache 2 and MySql 5 installed)
* Perfect World Server files 1.3.6 (version changed to 131 to use on 131 clients)
* Jakarta tomcat 5.5.9 (im sure this works as its accessable with http:/192.168.0.51:8080) but iweb doesn't function correctly
* SSH & OpenSSH server (so you can access the server using putty and WinSCP for ease of use)
also included in the archive is a matching elements.data (by tekk) and gshop.data file, just extract them to your perfect world install directory in elements/data/
The IP of this server is 192.168.0.51 to access the registration page enter http://192.168.0.51/register/
to start the server there is 2 files
* start.sh (this will start a FULL server including all dungeons etc.. if you dont have the RAM I wouldnt run this as it may crash your comp at worst)
* start_minimal.sh (as it says, its a minimal startup, no dungeons but will start lampp and jakarta)
I've set the image to 2GB RAM 1 CPU, please adjust accordingly to your spec (mine originally was 5GB RAM 2CPU as I have a dualcore CPU and 8GB RAM)
All I ask that if you spread this release, please credit it to me :thumbup: and please feel free to rip bits out and add bits in if you feel confident (just remember to have a backup)
Remember, if you learn how to fix the iweb and any other bits in this release POST IT dont just leech and keep quiet :thumbdown:, I did this so we all could learn :wink:
So Enjoy :thumbup:
User = root, pass = root for both bash and phpmyadmin (http://192.168.0.51/phpmyadmin)
Beastie...
SERVER FIX **IMPORTANT**
:thumbup: Big thanks to xypher of mmorpg dev :thumbup:
Quote:
Originally Posted by xypher
*this is not the server pack, just a 10mb update.*
- [a01][Nether Beast City] instance not showing any mobs
- [a25][Mist City] instance not showing any mobs
- [a27][Crescent Valley] Map regions 1 - 8 now playable with mobs and bosses
- Shovel/Picaxe can now be bought from merchandiser (courtesy of tekk)
- Updated tasks.data and dyn_tasks.data (prevents the Mission Unavailable message when teleporting to Crescent / Frost through the stone)
- Safe mode enabled - can now switch between safe mode / PK mode
Note:
(for enabling the safe mode)
*gamesys.conf for gdeliveryd included - replace with your current IP's except the ones with 0.0.0.0
*if you have changed the isec keys and osec keys differerent from the default ones, you should also update it.
Goodluck, i hope this could be useful.
Quote:
Originally Posted by nevermind
Follow-up Fix :
1.) open your /gdeliveryd/gamesys.conf
2.) find "battlefield=0"
3.) replace with "battlefield=1"
4.) restart your server =p
DOWNLOAD HERE -->> http://www.megaupload.com/?d=8YY5BMKM <<--
SERVER IMAGE
linky --->>> http://www.megaupload.com/?d=PFPRL0NM <<<--- (1 part requires premium account)
or
Split parts (non premium account)
http://www.megaupload.com/?d=7LBODO4B * File joiner *
http://www.megaupload.com/?d=1QBHLEFQ * part 1 *
http://www.megaupload.com/?d=J2NXPPON * part 2 *
http://www.megaupload.com/?d=9ZQVL0UP * part 3 *
you will have to unrar part 1 (damn megaupload wouldn't let me upload it without error unrared)
CLIENT & PATCHES
Client can be found here as the official site is doing 1.3.9 only.. (Thanks to insane007 & IIMaxII)
Client:
http://www.ausgamers.com/files/details/html/31003
or
Client Torrent:
http://www.mininova.org/tor/1098176
PATCH 1:
http://rapidshare.com/files/20769910...Y-Patch2-6.zip
PATCH 2:
http://rapidshare.com/files/20771775...-Patch6-12.zip
PATCH 3:
http://rapidshare.com/files/20772503...Patch12-13.zip
Adding/Removing GMs and Adding CubiGold
Use the excellent BatGM v0.08a by adslpredator Originally found on MMORPG Dev http://www.mmorpg-devs.com/forum/showthread.php?t=894
I reupped it so you dont have to register to DL it http://www.megaupload.com/?d=WGXZPKUY
you will have to allow BatGM to Access the Mysql database so do the following..
In phpmyadmin (after you have logged in as root) select your database (dbo) then select the privileges tab, once you have done that select "open new phpmyadmin window"
once that opens you should see the user overview page
1. select add user
2. add the following..
USER = root
HOST = IP of the comp that has BATGM on it
PASSWORD = Your Password
Retype Password = Your Password
Ignore Generate Password
3. now select for Database for user Grant all privileges on wildcard name (username\_%)
4. select check all
5. hit go
that will give you access to the MySql database from BATGM. :thumbup:
Errors found so far..
* 1HP/MP bug
To fix, simply edit the following file by typing this..
Code:
nano /PWServer/gamed/gs.conf
and changing this line
to
save and reboot server
* eth0 doesn't start
Edit the following file by typing this..
Code:
nano /etc/udev/rules.d/70-persistent-net.rules
and change the line
Code:
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:68:9e:a3", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
to
Code:
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
and remove any line concerning eth1, once done, save and reboot server
To change SQL password
Code:
cd/opt/lampp/bin
./mysqladmin -u root -p password YOURNEWPASSWORD
it will ask for a password which you enter the old one which in this case it's root
this new password will have an immediate effect so here are files to edit so PW still functions correctly..
/etc/tables.xml
change line
Code:
connection name="auth0" poolsize="3" url="jdbc:mysql://127.0.0.1/dbo?useUnicode=true&characterEncoding=utf8" username="root" password="root"/>
to
Code:
connection name="auth0" poolsize="3" url="jdbc:mysql://127.0.0.1/dbo?useUnicode=true&characterEncoding=utf8" username="root" password="YOURNEWPASSWORD"/>
/opt/lampp/htdocs/register/config.php
change line
Code:
$DBPassword = "root"; // Database password
to
Code:
$DBPassword = "YOURNEWPASSWORD"; // Database password
Also now you can access http://192.168.0.51/phpmyadmin with the new password
Changing Root password
this is very easy, just type in the command whilst being logged in as root..
it will then ask you to type in a new unix password then ask again for you to type it in for verification..
oh and I dont do MSN support n stuff, any questions will have to go thru here sorry
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
LOL ! 1,56Go ! must have a premium account for download it xD thx beastie x) And it probably take few days if i want download this release O.O ..... slow connection....
Romulan...
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
I was going to download and check it out but as the file is larger than 1GB you have to have a Premium Account to access it =/
Looks like I'm going to have to pass until it's split and reuploaded =((
But when I get it I'll do what I can to work out the bugs...
Translation of web page:
The file that you're trying to download is larger than 1 GB.
Only premium users are entitled to download files larger than 1 GB from Megaupload.
Click here to buy your premium membership.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
damn, u need a premium acc? :blink: ive never upped before :(: damnit, I will rerelease this split for non premium users soon as I can :(:
sorry peeps.. :(:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Bump <new links added> :thumbup:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
hey great beastie! i been waiting all day to download and do what i can to optimize it :): i'll let you know when i get it up and running :w00t:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
lol ragezone for me has been down for hours :*: (database problem?) I woulda put the links in hours ago :wink:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Please upload your file to www.tempfiles.net . thank you.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
it's been down for hours for me too so i worked on translating chinese stuff into english for a while LoL
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
pandragonwut
cant, max filesize there is 300mb, my files are 600mb :blink:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Beastie, what it's doesn't run correctly with your iweb ? (little screen :P)
I maybe have the solution for iweb... from wanmei ! XDDD
Yes.. this afternoon i tryed to do a account on the orignal website perfect world of Beijing (i want a ingame house *o*) but... before clik up the link in google i have saw an other link with fully detailed configuration of wanmei.com network O.O iweb include =O But it's in chinese XD And google traduction is not very good for translate chinese correctly =S I like their servers... it's near the same configuration of your server but... they have about 20 and more server XDDD They have very nice security with Cisco firewall, and others....
I look the rest of the page and i saw the software configuration... oh surprise... iweb xD
And wanmei do a server per Perfect Services O.O (gauth, gacd, logs services,......)
If you want the link... mp me XD
Regards.
Romulan.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
hmm, i seem to have the 1HP prob and i can't pick anything up.. odd.. my real server (this basically is a clone) doesnt have this problem :/
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
GACD error ? It's very often from this for the 1HP/MP bug...
....
And for iweb ? >_> x)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
iweb gives u a err 400 (wants https) but thru 8080 i dont think that works :?:
I turned the anticheat off in the GS.conf but the char i created has it stuck, i created another char and seems to work fine.. :/:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
X.x gnnn ... Poor avatar =/ ^^
...
iweb ? https ? port 8080 O.o ... XD https = port 445 --' shit....
but i have a another idea... http://192.168.0.51:8080/phpmyadmin https://192.168.0.51/iweb/role
Good idea no ? =D Change the port of Apache from XAMPP to 8080 and 445 for tomcat :)
It's maybe run correctly *o*
(i like chinese symbols... very nice...) XDDD
Romulan.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
after a couple hours I still cannot make it work. the only IP detected is loopback 127.0.0.1 and no matter what I tried its the only IP detected by ifconfig
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Please upload your file to www.tempfiles.net max files 200 MB to 6 part .
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
beyastard
after a couple hours I still cannot make it work. the only IP detected is loopback 127.0.0.1 and no matter what I tried its the only IP detected by ifconfig
is the image still in bridge mode with replicate enabled?? if so, it should work?
this is what i get..
Code:
root@perfectworld:~# ifconfig
eth0 Link encap:Ethernet HWaddr 00:0c:29:68:9e:a3
inet addr:192.168.0.51 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe68:9ea3/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:122 errors:0 dropped:0 overruns:0 frame:0
TX packets:79 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:10935 (10.6 KB) TX bytes:10174 (9.9 KB)
Interrupt:17 Base address:0x2000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
are you on the same subnet? as my main comp is on 192.168.0.x, maybe thats where your trouble is?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
pandragonwut
ive already split and upped it twice today which is over 3GB, i do like to have a usable connection, lol im sure someone else can be kind enough to do so :wink:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
*IWEB IS WORKIIIIIING !!!!!*
no..... it's just my dream lol ! --'
I'm so bored... For very anormal and crazy people i give you a little link if you want do a pwserver like wanmei (Beijing) >_>
Code:
http://www5.2000fun.com/bbs/viewthread.php?action=printable&tid=2776999
If this link can help any chinese people wants do pwserver X.x ....
Romulan.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
What to do when it says "The district map data does not sync. with the server." ?
And how to put gshop.data and element.data into a SERVER?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
if you mean my release, you put the gshop.data and element.data from the data.rar archive into your CLIENT, the server already has them..
but for future reference, you put element.data and gshop.data into gamed/config/ in the server if you wanna change em..
as for your error,I've never had it before so unfortunately I dunno.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Where is surface.data, if you maybe know?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
hmm going to give this a go.. ty
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
this is what i get..
Code:
root@perfectworld:~# ifconfig
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Quote:
Originally Posted by
beastie
are you on the same subnet? as my main comp is on 192.168.0.x, maybe thats where your trouble is?
my entire home network or 3 computers is on 192.168.1.x
i hope i find an easier solution than resetting all computers, router, etc to make it work...
-
1 Attachment(s)
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
O.O I just did.. it don't take long lol..
but still no http ... -,-
3 repacks later an still no working server xD w00t..
Ok just to clear things up now.. im behind a router :) now do i need to port forward port 80 or 8080 to 192.168.0.51 or my main pc lan ip? same with the server port.. to vmware ip or my main pc lan ip
;-------- later on
OMFG! in ifconfig all was fine with eth0 an lo listing with ip 192.168.0.51 but my router was 192.168.1.1 an all other pcs 192.168.1.* so i changed my router an home pc(s) to 192.168.0.* an now ifconfig only shows lo not eth0
so im left with a fooked vmware O.O I have reinstalled it in the hope to fix it but its the same -,- the vmware network is set to bridged.
any ideas please O.O
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
it seems like the worst thing about vmware is IP problems when transfering from 1 computer to another. when you have several computers on a LAN and you get a vmware image set up on a different subnet, it's too much of a hassle to reset all your computers, router, etc just to make it work.
my solution.... i give up on this release =/
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
you give up too easily.. if you want you can change the ip's in the release however, i can guarantee you will be changing a load more IP's in the image than in your network :O:
To be honest I don't understand why its not working for some of you, i tested this on 2 comps and it works on both :blink:
gonna research more into this..
For 1 I'd check to see if the /etc/network/interfaces is ok.. (I cant see why it wouldn't tho)
it should look like this..
Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.51
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
type the command..
Code:
/etc/init.d/networking restart
are you getting any error with this?
-
1 Attachment(s)
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
can i login with the my 1.3.9 client?
if no wich client works?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
insane007
can i login with the my 1.3.9 client?
if no wich client works?
1.3.1 Patched using file PW-EN-MY-Patch12-13.cup and then replace the gshop.data with the one in the archive data.rar..
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
llMaXll
I get this error O.O
its if its not detecting the eth0 network device itself.. I gonna look into this, it is a VMWare issue im sure :blink:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
I know this is gonna sound crazy but try disabling the 2 virtual network adapters in windows created by vmware (VMnet1 and VMnet8) and restart the image..
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Ok hope you find it, just some info for you.
I uninstalled vwmare an restarted then reinstalled it.. re-unpacked your image then shut down all pc's an router for 10min then fired it all back up an got same problem..
Really hope you get back to me
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
can u try typing in this..
Code:
find /sys -iname *eth*
-
1 Attachment(s)
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
There you go.. hope it helps..
Please note im newbie with linux :)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
You dont have to turn off routers etc.. its the VMware image that has to be restarted but..
I think I've got it, its to do with mac addresses..
in the directory /etc/udev/rules.d/ there is a file called 70-persistent-net.rules
edit the file so it changes from this..
Code:
# This file was automatically generated by the /lib/udev/write_net_rules
# program run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single line.
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:68:9e:a3", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
to this..
Code:
# This file was automatically generated by the /lib/udev/write_net_rules
# program run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single line.
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
then reboot the image..
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
i have followed your story about u two and i have the same asIIMaxII
i will help u guys 3 persons know more then 2
-
1 Attachment(s)
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Ok i have two O.O one line for eth0 an one for eth1
Do i delete the hole eth1 line an edit the eth0 line like you put..so all i have is 1 line with eth0 an no attr address
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
in 1 word, yes (keeps fingers crossed :wink:)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
how can i edit that file?
sorry im noob
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
log in as root
nano /etc/udev/rules.d/70-persistent-net.rules
-
1 Attachment(s)
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
fixed.
now just to get the server to work O.O lol thx
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
yay, now I'm off for a beer, lol :ott1:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
did u edit some windows network adapter from vmware or only this little file?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Enjoy an have a second on me :thumbup:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
it would be just that little file insane007
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
insane007
did u edit some windows network adapter from vmware or only this little file?
vwmare runs on 192.168.0.* but my router was 192.168.1.*
changed router to match vwmare an vwmare fooked up.. the fix is above :) gl need any help Im here
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
all working now server running @ 95.36.35.254
Ports all open acc creation works now onlu the client..
does anyone have a good client download link link?:P
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Ok server seems to be working..waited till i see 'Now run game' tested reg an thats working too..
When i load client an try to login it says Server on maintenance
Any ideas?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
wot version of PW client are you running?
i am running 131 patched to 12-13 (http://www.perfectworld.com.my/downloads-patch.asp)
also have the elements.data and gshop.data from the rar archive copied to the client too
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Can i see how you made your server list.
I ask cos come repacks have a number at the end of the IP an others dont an im just trying to fig out whats wrong.
My serverlist.txt
Code:
LocalHost 29000:192.168.0.51
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
VMWare 29000:192.168.0.51 11
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
hmm I think i have the wrong client cos everything i try an I still cant connect O.O
I have downloaded the INT torrent client.. is that to new?
Do you have a link to the real client?.
Sorry for being a pain
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
best I can find is a v126 version at http://www.ausgamers.com/files/details/html/31003 of which I'm sure you can patch to 131 (12-13)
gl :thumbup1:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
lol same one I posted, dont forget the patch 12-13 http://www.perfectworld.com.my/downloads-patch.asp :)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
i reuploaded all patches including the last one
this is the good client?
if it is add it to your First post?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
ty insane007 I was alittle :S
Downloading the client, its going to take forever xD 55kb/sec O.O
Downloading patches now too.. well waiting due to:
You have reached the download limit for free-users. Would you like more?
Get your own premium account now! Instant download access! Or try again in about 15 minutes.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
IIMAXII use the torrent it goes: 600 Kb.sec
Client Torrent:
http://rapidshare.com/files/20772647...inova_.torrent
maybe also adding to post beasty?:P
and howto change password in phpmyadmin for logging in?
now anybody can login to my phpmyadmin :(
is password in md5 for phpmyadmin?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
GREAT!! tytyty downloading at 1.5mb w00t
http://www.mininova.org/tor/1098176
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
lol, im trying to keep up with you 2 hehe :w00t:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Ok been waiting for ragezone to come to life.. just to ask how to make an account GM xD
Using mysql not mssql :)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
I finally got everything to work except iweb and fixed 1hp/mp problem... steps I took were:
***SOLUTION***
if only loopback appears with
then
Code:
nano /etc/udev/rules.d/70-persistent-net.rules
find:
Code:
# This file was automatically generated by the /lib/udev/write_net_rules
# program run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single line.
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:68:9e:a3", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
and change to:
Code:
# This file was automatically generated by the /lib/udev/write_net_rules
# program run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single line.
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
reboot image
192.168.0.51 should now be present
open Virtual Network Editor in VMWare (Edit > Virtual Network Editor...)
Select tab (Host Virtual Network Mapping)
VMnet1: click on > Subnet... and change to 192.168.0.0 / 255.255.255.0
in windows, go to the Network Connections to the VMware adapter you just edited.
right click > Properties
select Internet Protocol Version 4 (TCP/IPv4) then Properties
select Obtain an IP address automatically and Obtain DNS server address automatically
in VMware edit virtual machine settings for Network adapter... set Custom > VMnet1
you should now be able to go to http://192.168.0.51/register from host machine
1hp/1mp problem? fix = change anticheat to false in /PWServer/gamed/gs.conf
NOTE: iweb still does not work...
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
how to change gm account and commands and stuff?
and skills are bugged? cant buy more skills?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
um bey, didnt you read the edits on the OP? I posted that solution yesterday before rage died..
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
llMaXll
Ok been waiting for ragezone to come to life.. just to ask how to make an account GM xD
Using mysql not mssql :)
Use batGM posted here
http://www.mmorpg-devs.com/forum/showthread.php?t=894
you will have to allow your comp to access and write to the database in the vmware image, this can be achieved by giving privileges in phpmyadmin, I posted a howto elsewhere in the PW section.. :D:
in fact, here it is..
Quote:
ok, in phpmyadmin (after you have logged in as root) select your database (dbo) then select the privileges tab, once you have done that select "open new phpmyadmin window"
once that opens you should see the user overview page
1. select add user
2. add the following..
USER = root
HOST = IP of the comp that has BATGM on it
PASSWORD = Your Password
Retype Password = Your Password
Ignore Generate Password
3. now select for Database for user Grant all privileges on wildcard name (username\_%)
4. select check all
5. hit go
that will give you access to the MySql database from BATGM.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
SERVER IMAGE
linky --->>> http://www.megaupload.com/?d=PFPRL0NM <<<--- (1 part requires premium account)
upload in http://rapidshare.com/ pls :P:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
how can i give myself or other cubigold??
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
-
1 Attachment(s)
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Thx beastie for all your help, anyone else reading this an having problems I suggest getting this pack as i downloaded them all an after much help this is the only one I ever got working... check out the image =D
The server will run on 512 mem setting if you use ./start_minimal.sh
If you wish to run the full server I suggest having 3 to 4 or best 8 gig of ram.. (I only have 2gig an have problems running the full server)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
TO DELETE... only i cant go on iweb/role...
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
llMaXll
Thx beastie for all your help, anyone else reading this an having problems I suggest getting this pack as i downloaded them all an after much help this is the only one I ever got working... check out the image =D
The server will run on 512 mem setting if you use ./start_minimal.sh
If you wish to run the full server I suggest having 3 to 4 or best 8 gig of ram.. (I only have 2gig an have problems running the full server)
yw dude :thumbup:, thats why I created this image, so everyone can mess about with their own pw server without too much hassle :w00t: glad we ironed out some of the bugs so it can run ok, just need to fix that elusive iweb :ott1:
as for running the image, if you run it full on 2gb it will error (well it did with me) i ran it with 5GB leaving 3GB free for the game and windows lol (I got 8GB ram, lol)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
MCVoodoo
TO DELETE... only i cant go on iweb/role...
iweb is on the image , but isnt working yet. :blushing:. however, the link I posted above will take u to a forum of which you can download a program called BatGM, it will allow you to assign/deassign users to be gms or not as well as add cubicoins :):
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
After messing with start.sh an making bigger sleeps I got it running in full with all maps on 2gig ram but left me with nothing for windows an client xD so it working but I cant use same pc to run client..lol
Think I will edit start_minimal.sh to load extra maps an not full or buy more ram xD
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
downloaded program from alternative source....
which iput is needed there?
database name and server name host-> vmware ip?
database dbo and server name perfectworld?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
edit the ini so it has the following..
Code:
[settings]
username=root
password=root
database=dbo
host=192.168.0.51
protocol=MYSQL
auto=1
formx=586
formy=152
[memomemo]
NO=-1
remember v0.08a works with MySql, dunno bout earlier versions
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Sry forget this pls im to dumb to read :p servertype was mssql instead of mysql -.-
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
we all make mistakes, lol :D:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
hmm add gold 100 i did but after relog i didnt get cubis o.0
but TY FOR ALL :)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
yw mate :): glad you got it sorted :thumbup:
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Hi beastie,
In regards to the 1HP/MP bug.
I did what u said
nano /PWServer/gamed/GS.conf
But it says [ NEW FILE ]
I also tried cd PWServer an it says NO DIR ??
It seems the DIR is different than you put.. ?
Also I know this is out of your hands but I needed to make an account to get on the forums you posted to get the GM, been waiting for the activation email for 2 hours now an still got nothing.. so im still without GM rights O.O lol
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
=== AUTH ===
java.net.BindException: Cannot assign requested address
at sun.nio.ch.Net.bind(Native Method)
at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSock etChannelImpl.java:119)
at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAd aptor.java:59)
at com.goldhuman.IO.PassiveIO.Open(Unknown Source)
at com.goldhuman.IO.Protocol.Protocol.Server(Unknown Source)
at authd.main(Unknown Source)
authd:: add PollIO task.
err : gdelivery::connect to GAuth server failed. Reconnecting....
err : gdelivery::connect to GAuth server failed. Reconnecting....
:( i check all ips
i have a one server and public ip.
127.0.0.1 localhost
69.162.85.162 perfectworld
69.162.85.162 aumanager
69.162.85.162 manager
69.162.85.162 link1
69.162.85.162 game1
69.162.85.162 game2
69.162.85.162 game3
69.162.85.162 delivery
69.162.85.162 database
69.162.85.162 dbserver
69.162.85.162 backup
69.162.85.162 auth
69.162.85.162 gmserver
# End of hosts.
i dont changer me root pass and phpmyadmin pass
i changer all ip for 69.162.85.162
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Fixed in/etc configure and another files
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
TRACE : gdeliveryserver::statusannounce,online=0,fakemax=6000,load=0,attr=-805306368
is normal ???
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
yes :) the online=0 will show you how many people are online.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
how conect me client to me server ???
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
in your client folder goto
Perfect World\element\userdata\server\
edit your sverlist.txt to:
Code:
LocalHost 29000:192.168.0.51 11
Make sure the spaces between are tabs not spaces or it wont list right.
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
i dont need charger me .exe ?? or and another file ?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
nope.. you dont need to hex the exe..
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
llMaXll
Hi beastie,
In regards to the 1HP/MP bug.
I did what u said
nano /PWServer/gamed/GS.conf
But it says [ NEW FILE ]
I also tried cd PWServer an it says NO DIR ??
It seems the DIR is different than you put.. ?
Also I know this is out of your hands but I needed to make an account to get on the forums you posted to get the GM, been waiting for the activation email for 2 hours now an still got nothing.. so im still without GM rights O.O lol
try again... gs.conf and not GS.conf
lowercase :rolleyes:
@beastie:
wasnt able to get back on the forum soon enough to see your post =/
anyway, my solution not only takes care of that problem but reconfiguring the VMware adapter and hp/mp bug.
if anyone ends up with just the loopback, just follow those instructions and it'll work with no problems =)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
ummmm dont working to me the server Say me Online, dont login or show me this server
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
beyastard
try again... gs.conf and not GS.conf
lowercase :rolleyes:
@beastie:
wasnt able to get back on the forum soon enough to see your post =/
anyway, my solution not only takes care of that problem but reconfiguring the VMware adapter and hp/mp bug.
if anyone ends up with just the loopback, just follow those instructions and it'll work with no problems =)
Yep the right command is:
Code:
nano /PWServer/gamed/gs.conf
Thx worked.. now just waiting on the Email so I can make my account GM
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
me hp, mp and loot is buged whats a need edit to fixed ??
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
run vmware an login, then type
Code:
nano /PWServer/gamed/gs.conf
Once open look for a line with this:
then change it to
save and reboot server
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
it is advisable to use the apt-get update and apt-get upgrade to update the server?
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
No, from what I understand that will just update Ubuntu 8.04 an apps installed on it.
It wont update the pw server :)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
Quote:
Originally Posted by
beyastard
try again... gs.conf and not GS.conf
corrected in first post (dunno how i missed that :blushing:)
-
Re: Perfect World 136 on Ubuntu 8.04 Server VMware Image by Beastie ^^
GQueryPasswd:account is xion , login ip is 400003774
Sending query to acquire password
TRACE : gdelivery::passwdtimeout. user=xion
TRACE : gdelivery::matrixpasswd cache missing, user=xion