UICallback Script


Script for UI Callbacks.


DefinitionEdit

ScriptName UICallback


SKSE Global FunctionsEdit

Int Create(String menuName, String target)
  • Creates a new UICallback and returns the handle.
Bool Send(Int handle)
  • Creates a new UICallback and returns the handle.
Release(Int handle)
  • Releases the UICallback without sending it.
PushBool(Int handle, Bool value)
  • Pushes a Bool param into the callback.
PushInt(Int handle, Int value)
  • Pushes a Int param into the callback.
PushFloat(Int handle, Float value)
  • Pushes a Float param into the callback.
PushString(Int handle, String value)
  • Pushes a String param into the callback.
PushBoolA(Int handle, Bool[] args)
  • Pushes a Bool[] param into the callback.
PushIntA(Int handle, Int[] args)
  • Pushes a Int[] param into the callback.
PushFloatA(Int handle, Float[] args)
  • Pushes a Float[] param into the callback.
PushStringA(Int handle, String[] args)
  • Pushes a String[] param into the callback.