Difference between revisions of "DoesNotExist"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Terra Nova2
m
imported>DavidJCobb
(command's functionality verified through disassembly)
 
Line 1: Line 1:
This Condition Function has been marked as obsolete by Skyrim developers.
This condition returns 1.0 if the thing it is used on does not exist, or 0.0 otherwise. It would be primarily useful when checking whether an alias has failed to fill.


 
Internally, it just compares a pointer to <code>nullptr</code>.
It does appear to work as a way detect if a quest alias is empty (and possibly in other situations).
: Yeah some of them 'obsolete' ones still are functional. But I wish IsIdlePlaying was functional. That would be REALLY useful.--[[User:Terra Nova2|Terra Nova2]] ([[User talk:Terra Nova2|talk]]) 2015-03-09T09:17:20 (EDT)


[[Category:Condition Functions]]
[[Category:Condition Functions]]

Latest revision as of 06:24, 23 July 2018

This condition returns 1.0 if the thing it is used on does not exist, or 0.0 otherwise. It would be primarily useful when checking whether an alias has failed to fill.

Internally, it just compares a pointer to nullptr.