Revision Difference
net.WriteUInt64#551561
<function name="WriteUInt64" parent="net" type="libraryfunc">⤶
<description>⤶
Appends an unsigned integer with 64 bits to the current net message.⤶
<note>⤶
The limit for an uint64 is 18.446.744.073.709.551.615. ⤶
Everything above the limit will be set to the limit. ⤶
⤶
Unsigned numbers **do not** support negative numbers. ⤶
If you use negative numbers, it will read it incorrectly (limit + (input + 1)). ⤶
You can give it a number, but it will break as soon as it has 14 digits⤶
</note>⤶
</description>⤶
<realm>Shared</realm>⤶
<args>⤶
<arg name="uint64" type="string">The uint64 to be sent.</arg>⤶
</args>⤶
</function>