Hello
I've been watching the following video:
Here are a couple of questions that came up while doing that:
1. Is there like a wiki page or a post or something with all the images and boarders and their id? if not where do I find them? I only see flag_files in the gfx folder...
2. Is there a list of all the event modifier that exist in the game somewhere?
3. Can you add a costum_tooltip to an event modifier you created? If so, where do you put the actual description? Is it in the same place as the event description in localisation?
4. This is the script I wrote:
namespace = lRandomEvts
#this event will cause the ruler to be attacked by angry chickens
character_event =
{
id = lRandomEvts.0001
picture = GFX_evt_bad_news
desc = EVTDESC_lRandomEvts.0001
border = GFX_event_normal_frame_war
#forgive the person that released the chickens, receive the kind trait (and remove cruel) and the embarrassed modifier
option
{
name = EVTOPTA_RandomEvts.0001
add_character_modifier
{
name = LEM_embarrassed
months = 3
}
if =
{
limit{trait = cruel}
remove_trait = cruel
}
add_trait = kind
piety = 15
}
#kill the person that released the chickens, receive the cruel trait (and removes kind) and + to revolt risk
option
{
name = EVTOPTB_RandomEvts.0001
add_character_modifier
{
name = LEM_unjust
years = 3
}
if =
{
limit{trait = kind}
remove_trait = kind
}
add_trait = cruel
prestige 25
}
}
It works but there are a few things that bug me:
* Inside the game it shows the name of the costume event modifier I made. It is not a pretty name. Is there someway to replace it with a different name?
* It takes a few days for the traits to update. Is there some way to make it update immediately?
* The event triggers every few days (its pretty funny as the event involves the ruler being assaulted by a gang of angry chickens, but it would be nice if chickens didn't have a consistent bone to pick with every ruler the unfortunate player decides to play...), how do I make it trigger less often?
5. Is there somewhere out there a notepad++ language plugin for "ck2 scripting language" that you know of?
Thank you very much!!!!!! <3
I've been watching the following video:
1. Is there like a wiki page or a post or something with all the images and boarders and their id? if not where do I find them? I only see flag_files in the gfx folder...
2. Is there a list of all the event modifier that exist in the game somewhere?
3. Can you add a costum_tooltip to an event modifier you created? If so, where do you put the actual description? Is it in the same place as the event description in localisation?
4. This is the script I wrote:
namespace = lRandomEvts
#this event will cause the ruler to be attacked by angry chickens
character_event =
{
id = lRandomEvts.0001
picture = GFX_evt_bad_news
desc = EVTDESC_lRandomEvts.0001
border = GFX_event_normal_frame_war
#forgive the person that released the chickens, receive the kind trait (and remove cruel) and the embarrassed modifier
option
{
name = EVTOPTA_RandomEvts.0001
add_character_modifier
{
name = LEM_embarrassed
months = 3
}
if =
{
limit{trait = cruel}
remove_trait = cruel
}
add_trait = kind
piety = 15
}
#kill the person that released the chickens, receive the cruel trait (and removes kind) and + to revolt risk
option
{
name = EVTOPTB_RandomEvts.0001
add_character_modifier
{
name = LEM_unjust
years = 3
}
if =
{
limit{trait = kind}
remove_trait = kind
}
add_trait = cruel
prestige 25
}
}
It works but there are a few things that bug me:
* Inside the game it shows the name of the costume event modifier I made. It is not a pretty name. Is there someway to replace it with a different name?
* It takes a few days for the traits to update. Is there some way to make it update immediately?
* The event triggers every few days (its pretty funny as the event involves the ruler being assaulted by a gang of angry chickens, but it would be nice if chickens didn't have a consistent bone to pick with every ruler the unfortunate player decides to play...), how do I make it trigger less often?
5. Is there somewhere out there a notepad++ language plugin for "ck2 scripting language" that you know of?
Thank you very much!!!!!! <3