Page 1 of 1

Error when starting up POL

Posted: Sun Jan 10, 2016 8:12 am
by Sad
Hi all,
I have a problema when I try to starting up the pol server.
The error is:
Error reading configuration file pkg/items/weapons/config/itemdesc.cfg:
Weapon has INTRINSIC property, which is no longer needed
Element: Weapon 0xF020, found on line 24
Server Shutdown: load_itemdesc
Execution aborted due to: Configuration file error

I have checked itemdesc.src, and SaveOnExit is setted to 0

Code: Select all

Weapon 0xF020
{
	//MainStuff
	Name		Intrinsic Weapon
	Name		Wrestling
	Name		Fist
	Desc		Intrinsic Weapon
	Graphic		1

	//WeaponInfo
	Speed		40
	Attribute	Wrestling
	Anim		0x9
	Damage		1d8
	HitSound	0x13E
	MissSound	0x234
	MaxHP		1

	//Booleans
	Intrinsic	1
	SaveOnExit	0


	//Scripts
	HitScript	:combat:mainHitScript
}

Re: Error when starting up POL

Posted: Sun Jan 10, 2016 8:20 am
by Nando
Delete this line:

Code: Select all

   Intrinsic   1 
As the warning says, it's no longer needed.

Re: Error when starting up POL

Posted: Sun Jan 10, 2016 8:59 am
by Sad
Thanks nando, I have commented it and don't have this error.
But, when try to start have another error on house script:

Code: Select all

Error reading configuration file pkg/multis/housing/config/itemdesc.cfg:
        Multi definition not found.  Objtype=0x4018, multiid=0x18
        Element: House 0x4018, found on line 1707
Server Shutdown: load_itemdesc
Execution aborted due to: Configuration file error

Comment also this house?

Re: Error when starting up POL

Posted: Sun Jan 10, 2016 9:14 am
by boberski
You done uoconvert right?

Re: Error when starting up POL

Posted: Sun Jan 10, 2016 10:20 am
by Sad
Yes!
Retry compile?

Re: Error when starting up POL

Posted: Sun Jan 10, 2016 10:42 am
by boberski
Which distro, which client?

Re: Error when starting up POL

Posted: Mon Jan 11, 2016 12:11 am
by Sad
I use custom distro and client 4.0.
However, I have resolved using the pol server configured in my server.
I had this error because try to install and configure new installation POL for some test migrate server.
The POL server linux is stabale? Which OS is better, Ubuntu/Debian or Centos?

Thanks!

Re: Error when starting up POL

Posted: Mon Jan 11, 2016 1:37 pm
by boberski
Sad wrote:The POL server linux is stabale? Which OS is better, Ubuntu/Debian or Centos?
Official linux POLCore is stable, unofficial from git, we do not know so for safety we treat it as unstable.
Personally, I use Centos. :)

You can test latest POLCore with latest Distro at http://polserver.hell-yeah.pl/. Log in with given client or downlaod both POLCore and Distro and try it for yourself.

Re: Error when starting up POL

Posted: Tue Jan 12, 2016 2:42 am
by Sad
Good news Aderal, thanks.
Maybe, when my server is online for everyone think to migrate in linux server.
I prefer debian, but if is stable with centos... also good. The important is that POL is stable :)

Re: Error when starting up POL

Posted: Wed Jan 13, 2016 11:02 am
by Nando
As far as I know, the POL version on git has no critical bugs (that is, no data loss bugs or crashes which make the game unusable). There may be some deadlocks on linux when using single-threaded-login, though.

Re: Error when starting up POL

Posted: Wed Jan 13, 2016 11:19 am
by bodom
We're running lastest POL099 on Debian and it is very stable there too.

Re: Error when starting up POL

Posted: Wed Feb 10, 2016 2:16 am
by Sad
Where I can to find a guide for install/configure POL on debian?

Re: Error when starting up POL

Posted: Sun Feb 14, 2016 3:46 pm
by Zik
I belive it's a wrong topic, but still close enough.

I've found a bug in windows x64 compilation of the latest git hub version. If debug server port or any Aux service port is occupied (by another pol sever), pol.exe just stops working.

Can someone also test and confim it?

Re: Error when starting up POL

Posted: Mon Feb 15, 2016 3:40 am
by Zik
Can anyone recommend me stable version of pol core for windows x64? Preferably the most recent one.
Or should I continue fiddling with latest github polcore?

Re: Error when starting up POL

Posted: Mon Feb 15, 2016 4:00 am
by Skinny
Nando wrote:As far as I know, the POL version on git has no critical bugs (that is, no data loss bugs or crashes which make the game unusable). There may be some deadlocks on linux when using single-threaded-login, though.
Can you explain the "single-threaded-login" mean? Is there any setting for this not occur?

Thanks.

Re: Error when starting up POL

Posted: Mon Feb 15, 2016 4:46 am
by bodom
In pol.cfg:

Code: Select all

UseSingleThreadLogin=(1/0 {default 0})

Re: Error when starting up POL

Posted: Mon Feb 15, 2016 2:16 pm
by Skinny

Code: Select all

11-10-2012 Turley:
  Added:      uoclient.cfg Listener property "KeepClients" 1/0 default 0
			  if set to 1 clients keep this listener port even after different gameserver select
  Note:       actually 1 is the old behaviour and 0 the old behaviour of pol.cfg ListenPort
  Added:      pol.cfg "UseSingleThreadLogin" 1/0 default 0
              if set all prelogin clients are handled inside the listener thread and not inside an extra thread
			  this will reduce the amount of thread creates and destroys
Thank you, bodom!