in short, I have the problem you can read in the topic title. Basically I've created a quest with a script on it. I've tried the whole evening to get my script started shortly after the character creation process, but somehow the 'OnTrigger' Event was messing up things. I then decided to use a 'OnInit', so that my Questscript runs on game start up. While I was fiddeling around with other events I suddenly figured out that my script gets activated, no matter if I have activated the 'start game enabled' flag on my quest or not. Isn't the script supposed not to be working when I turn off start game enabled? However. I still wish I could fire my script after the character creation process. Any help apreciated. Here's the script:
Spoiler
Scriptname SI_StartSkyrimImprovedScript extends Quest {Mega script to initiaze features of Skyrim Improved.}Perk Property SI_DummyPerkChooser AutoPerk Property SI_LowerCarryWeightPerk AutoSpell Property SI_AccessInventorySpell AutoSpell Property SI_UndressNPCSpell AutoSpell Property SI_MakeEssentialSpell AutoMessage Property SI_ChooseLowerCarryWeigth AutoMessage Property SI_ChoosePowerMessage1 AutoMessage Property SI_ChoosePowerMessage2 AutoMessage Property SI_ChooseAbilityMessage1 AutoMessage Property SI_ChooseAbilityMessage2 AutoMessage Property SI_ChooseSpellsMessage AutoMessage Property SI_ChooseSchoolOfMagicMessage AutoMessage Property SI_ChoosePASMessage AutoMessage Property SI_ChooseAutoHealthRegenMessage AutoMessage Property SI_ChooseResetStatsTo0 AutoSpell Property PowerArgonianHistskin AutoSpell Property PowerBretonAbsorbSpell AutoSpell Property PowerDarkElfFlameCloak AutoSpell Property PowerHighElfMagickaRegen AutoSpell Property PowerImperialPacify AutoSpell Property PowerKhajiitNightEye AutoSpell Property PowerNordBattleCry AutoSpell Property RaceOrcBerserk AutoSpell Property PowerRedguardStaminaRegen AutoSpell Property PowerWoodElfCommandAnimal AutoSpell Property RaceArgonianResistDisease AutoSpell Property RaceArgonianWaterbreathing AutoSpell Property RaceBreton AutoSpell Property RaceDarkElf AutoSpell Property AbHighElfMagicka AutoSpell Property RaceImperial AutoSpell Property RaceKhajiitClaws AutoSpell Property RaceNord AutoSpell Property RaceRedguard AutoSpell Property RaceWoodElf AutoSpell Property Candlelight AutoSpell Property Oakflesh AutoSpell Property BoundSword AutoSpell Property ConjureFamiliar AutoSpell Property Flames AutoSpell Property Frostbite AutoSpell Property Clairvoyance AutoSpell Property Courage AutoSpell Property Healing AutoSpell Property WardLesser AutoSpell Property PCHealRateCombat AutoActor playerEvent OnInit() RegisterForSingleUpdate(1)EndEventEvent OnUpdate() ...
