Garry's Mod Wiki

Revision Difference

Entity:GetNWString#518509

<function name="GetNWString" parent="Entity" type="classfunc"> <description>Retrieves a networked string value at specified index on the entity that is set by <page>Entity:SetNWString</page>.</description> <realm>Shared</realm> <args> <arg name="key" type="string">The key that is associated with the value</arg> <arg name="fallback" type="any" default="">The value to return if we failed to retrieve the value. (If it isn&#x27;t set)</arg> <arg name="fallback" type="any" default="">The value to return if we failed to retrieve the value. (If it isn't set)</arg> </args> <rets> <ret name="" type="any">The value associated with the key</ret> </rets> </function> <example> <description>Prints the player's rank</description> <code>print( Entity(1):GetNWString( "usergroup" ) )</code> <output>"superadmin" in single-player</output> </example>