Difference between revisions of "WillIntimidateSucceed - Actor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Jlundin
(Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Actor Script Returns whether or not an intimidation attempt by the player on this actor will succeed or not. ==…')
 
 
Line 26: Line 26:
== See Also ==
== See Also ==
*[[Actor Script]]
*[[Actor Script]]
*[[Perk Entry Point]] "Mod Player Intimidation" for the full formula behind Intimidate success

Latest revision as of 06:53, 30 June 2023

Member of: Actor Script

Returns whether or not an intimidation attempt by the player on this actor will succeed or not.

Syntax[edit | edit source]

bool Function WillIntimidateSucceed() native

Parameters[edit | edit source]

None.

Return Value[edit | edit source]

Whether an intimidation attempt by the player on this actor will succed or not.

Examples[edit | edit source]

; Can the player successfully intimidate the pidgeon?
if Pidgeon.WillIntimidateSucceed()
  Debug.Trace("The pidgeon will most likely give up the goods!")
endIf

See Also[edit | edit source]