I dont understand how to use http://www.creationkit.com/Category:Condition_Functions T.T
For ex, I try to do something (via a quest script) if the player is swimming. Voilà my little script :
Scriptname 00MyQuest extends QuestEvent OnInit() RegisterForUpdate(5)EndEventEvent OnUpdate() If Game.GetPlayer().IsSwimming == 1 ;Do something EndifEndEventPapyrus error messages :
(...)(8,34): IsSwimming is not a property on script actor or one of its parents(...)(8,45): cannot compare a none to a int (cast missing or types unrelated)
Any idea ?
Ty very much in advance !