스크립트 값
io_members_and_potential_members_opinion_value
정의in_game/common/script_values/io_policy.txt:1
2desc = "OPINION_OF_OTHER_MEMBERS" 타 구성국에 대한 우호도
4save_temporary_value_as = {
5name = opinion_count
6value = 0
}
10if = {
11limit = {
12exists = scope:recipient
}
14scope:recipient = {
15every_international_organization_member = {
16root = {
17add = {
18value = this_opinion_of_prev
}
}
}
22save_temporary_value_as = {
23name = opinion_count
24value = {
25value = scope:opinion_count
26add = total_members
}
}
}
}
31else = {
33scope:actor ?= {
34root = {
35add = {
36value = this_opinion_of_prev
}
}
39save_temporary_value_as = {
40name = opinion_count
41value = 1
}
}
}
47scope:target ?= {
48root = {
49subtract = {
50value = this_opinion_of_prev
}
}
53save_temporary_value_as = {
54name = opinion_count
55value = {
56value = scope:opinion_count
57add = 1
}
}
}
63if = {
64limit = {
65scope:opinion_count > 0
}
67divide = scope:opinion_count
}