Error when starting up POL

Here you can post threads specific to the current release of the core (099)

Moderator: POL Developer

Post Reply
Sad
New User
Posts: 11
Joined: Tue Jan 05, 2016 4:55 am

Error when starting up POL

Post 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
}
Nando
POL Developer
Posts: 282
Joined: Wed Sep 17, 2008 6:53 pm
Contact:

Re: Error when starting up POL

Post by Nando »

Delete this line:

Code: Select all

   Intrinsic   1 
As the warning says, it's no longer needed.
Sad
New User
Posts: 11
Joined: Tue Jan 05, 2016 4:55 am

Re: Error when starting up POL

Post 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?
boberski
Grandmaster Poster
Posts: 275
Joined: Tue Oct 15, 2013 12:00 pm

Re: Error when starting up POL

Post by boberski »

You done uoconvert right?
Sad
New User
Posts: 11
Joined: Tue Jan 05, 2016 4:55 am

Re: Error when starting up POL

Post by Sad »

Yes!
Retry compile?
boberski
Grandmaster Poster
Posts: 275
Joined: Tue Oct 15, 2013 12:00 pm

Re: Error when starting up POL

Post by boberski »

Which distro, which client?
Sad
New User
Posts: 11
Joined: Tue Jan 05, 2016 4:55 am

Re: Error when starting up POL

Post 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!
boberski
Grandmaster Poster
Posts: 275
Joined: Tue Oct 15, 2013 12:00 pm

Re: Error when starting up POL

Post 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.
Sad
New User
Posts: 11
Joined: Tue Jan 05, 2016 4:55 am

Re: Error when starting up POL

Post 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 :)
Nando
POL Developer
Posts: 282
Joined: Wed Sep 17, 2008 6:53 pm
Contact:

Re: Error when starting up POL

Post 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.
bodom
Former Developer
Posts: 140
Joined: Sat Feb 21, 2015 7:52 pm
Location: Italy

Re: Error when starting up POL

Post by bodom »

We're running lastest POL099 on Debian and it is very stable there too.
Sad
New User
Posts: 11
Joined: Tue Jan 05, 2016 4:55 am

Re: Error when starting up POL

Post by Sad »

Where I can to find a guide for install/configure POL on debian?
Zik
Novice Poster
Posts: 41
Joined: Sun Feb 07, 2010 9:39 am
Location: Ukraine

Re: Error when starting up POL

Post 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?
Zik
Novice Poster
Posts: 41
Joined: Sun Feb 07, 2010 9:39 am
Location: Ukraine

Re: Error when starting up POL

Post 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?
Skinny
Expert Poster
Posts: 76
Joined: Wed Dec 19, 2012 10:27 pm

Re: Error when starting up POL

Post 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.
bodom
Former Developer
Posts: 140
Joined: Sat Feb 21, 2015 7:52 pm
Location: Italy

Re: Error when starting up POL

Post by bodom »

In pol.cfg:

Code: Select all

UseSingleThreadLogin=(1/0 {default 0})
Skinny
Expert Poster
Posts: 76
Joined: Wed Dec 19, 2012 10:27 pm

Re: Error when starting up POL

Post 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!
Post Reply