-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
411 changed files
with
1,095 additions
and
183 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Scriptname AK69LockpickMGEFScript extends activemagiceffect | ||
|
||
Quest property AK69KatanaLockpickQuest auto | ||
ReferenceAlias property UnlockMe auto | ||
Scene Property AK69LockpickScene auto | ||
Scene Property AK69NOLockpickScene auto | ||
Actor property Katana auto | ||
|
||
ObjectReference targetobj1 | ||
|
||
Event OnEffectStart(Actor aktarget, Actor akcaster) | ||
AK69KatanaLockpickQuest.start() | ||
CheckAround() | ||
Katana.EvaluatePackage() | ||
;Debug.Notification ("Lockpick effect started") | ||
EndEvent | ||
|
||
Function CheckAround() | ||
UnlockMe.getReference() | ||
targetobj1 = UnlockMe.getReference() | ||
If Katana.GetDistance(UnlockMe.getReference()) <= 700 | ||
AK69LockpickScene.Start() | ||
Else | ||
AK69NOLockpickScene.Start() | ||
endif | ||
;Debug.Notification ("Lockpick check + scene") | ||
EndFunction | ||
|
||
Event OnEffectFinish(Actor target, Actor caster) | ||
AK69KatanaLockpickQuest.stop() | ||
;Debug.Notification ("Lockpick effect end") | ||
EndEvent | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.