<ERROR> [actor access]

Gazer75
Posts: 412
Joined: 19 Jul 2013 04:56
Location: Norway

<ERROR> [actor access]

#1 Post by Gazer75 » 14 Nov 2017 10:09

Anyone know what this is?

Code: Select all

00:15:58.386 : <ERROR> [actor access] Conflicting actor access rules at [-58570.3;99.9;15382.1]
00:15:58.386 : <ERROR> [actor access] Conflicting actor access rules at [-58575.1;100.1;15378.7]
These two lines appeared last night. Don't think I've seen this error in the log before.
User avatar
piva
Posts: 2377
Joined: 29 Oct 2014 16:41

Re: <ERROR> [actor access]

#2 Post by piva » 14 Nov 2017 10:16

I got this errors too, but I don't know what does it mean.
Tirol
Posts: 1248
Joined: 09 Mar 2014 21:09

Re: <ERROR> [actor access]

#3 Post by Tirol » 14 Nov 2017 10:21

Maybe a developer can enlighten us.
Gazer75
Posts: 412
Joined: 19 Jul 2013 04:56
Location: Norway

Re: <ERROR> [actor access]

#4 Post by Gazer75 » 14 Nov 2017 12:26

Wonder if it might be related to the weight stations on I40 at the AZ NM border. The time stamps in my log seem to fit that.
Went from Albuquerque to Flagstaff yesterday and back today. The numbers are the same for the two error lines.

Those two stations are bugged currently. Eastbound it got stuck at green, and westbound you get nothing at all.
mjack
SCS Software
Posts: 92
Joined: 26 Nov 2012 08:37

Re: <ERROR> [actor access]

#5 Post by mjack » 29 Nov 2017 08:58

Gazer75 wrote: 14 Nov 2017 10:09 Anyone know what this is?
The conflict occurs if two exclusive access rules are being applied at the same place. Applying an inclusive rule over an exclusive one, is ok (and has no effect).

for example:

Code: Select all

traffic_rule_data : traffic_rule.rail_train
{
	rule: "actor_access"
	num_params[]: 1 	# 0 - disallow, 1 - allow
	num_params[]: 1 	# 0 - inclusive, 1 - exclusive
	str_params[]: "rail_train"
}
This rule exclusively allows trains. You can safely apply for example

Code: Select all

traffic_rule_data : traffic_rule.allow_slow
{
	name: "Allow slow vehicles"
	rule: "actor_access"
	num_params[]: 1 # 0 - disallow, 1 - allow
	num_params[]: 0 # 0 - inclusive, 1 - exclusive
	str_params[]: "slow"

	additional_rules[]: traffic_rule.s_slow
}
without worrying about another vehicle type appearing on train rails.

However, applying another exclusive rule there will cause a conflict, for example:

Code: Select all

traffic_rule_data : traffic_rule.car_only
{
	name: "Cars only"
	rule: "actor_access"
	num_params[]: 1 # 0 - disallow, 1 - allow
	num_params[]: 1 # 0 - inclusive, 1 - exclusive
	str_params[]: "car"
	str_params[]: "car_city"
}
User avatar
piva
Posts: 2377
Joined: 29 Oct 2014 16:41

Re: <ERROR> [actor access]

#6 Post by piva » 29 Nov 2017 09:03

So rules must have identical inclusive and exclusive parameter for remove errorr message?
Gazer75
Posts: 412
Joined: 19 Jul 2013 04:56
Location: Norway

Re: <ERROR> [actor access]

#7 Post by Gazer75 » 29 Nov 2017 09:08

I have no idea about AI traffic, but I'm sure someone understood that :)

So basically there is an error in the traffic rules at some point in the game?
Hope the numbers in the error help find it. I use no mod for traffic.
mjack
SCS Software
Posts: 92
Joined: 26 Nov 2012 08:37

Re: <ERROR> [actor access]

#8 Post by mjack » 29 Nov 2017 09:14

piva wrote: 29 Nov 2017 09:03 So rules must have identical inclusive and exclusive parameter for remove errorr message?
No, you just must not combine two exclusive rules
mjack
SCS Software
Posts: 92
Joined: 26 Nov 2012 08:37

Re: <ERROR> [actor access]

#9 Post by mjack » 29 Nov 2017 09:16

Gazer75 wrote: 29 Nov 2017 09:08 So basically there is an error in the traffic rules at some point in the game?
Hope the numbers in the error help find it. I use no mod for traffic.
It's a map error and it is not caused by a mod. Unfortunately, we noticed it too late to be fixed with New Mexico release.
But if I remember correctly it's caused by a 'trucks only' traffic area over a 'no AI' road, so it should not cause any problems
User avatar
piva
Posts: 2377
Joined: 29 Oct 2014 16:41

Re: <ERROR> [actor access]

#10 Post by piva » 29 Nov 2017 09:18

mjack wrote: 29 Nov 2017 09:14 No, you just must not combine two exclusive rules
YES! It's works! Thank you.
Post Reply

Return to “Help center - player to player”

Who is online

Users browsing this forum: No registered users and 4 guests