Difference between revisions of "GetInvalidEntityId"

From Nomad DB
(Created page with "The function returns the invalid Entity Id. == Syntax == <pre> GetInvalidEntityId() </pre> == Related Pages == * Lua:EntityId")
 
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
The function returns the invalid [[Lua:EntityId|Entity Id]].
+
{{Page_WD2}} {{Page_WDL}}
 +
This function returns an invalid [[EntityId|Entity ID]]. The returned value is a string with '''18446744073709551615''', the decimal representation of hex value '''FFFFFFFFFFFFFFFF'''. Since Lua 5.1 cannot handle 64-Bit Integers, the returned type is a string.
  
 
== Syntax ==
 
== Syntax ==
Line 5: Line 6:
 
GetInvalidEntityId()
 
GetInvalidEntityId()
 
</pre>
 
</pre>
 +
* '''Returns: string'''
  
 
== Related Pages ==
 
== Related Pages ==
* [[Lua:EntityId]]
+
* [[EntityId]]
 +
 
 +
[[Category:WD2 Lua]]
 +
[[Category:WD2 Entity]]
 +
[[Category:WDL Lua]]
 +
[[Category:WDL Entity]]

Latest revision as of 16:08, 25 September 2021

This function returns an invalid Entity ID. The returned value is a string with 18446744073709551615, the decimal representation of hex value FFFFFFFFFFFFFFFF. Since Lua 5.1 cannot handle 64-Bit Integers, the returned type is a string.

Syntax

GetInvalidEntityId()
  • Returns: string

Related Pages