Squirrel/Server/Functions/Weapons/GetWeaponIDFromName

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(New page: __NOTOC__ This function returns the ID of the weapon from its name. == Syntax == <code>int GetWeaponIDFromName( string weaponName )</code> == Arguments == * '''weaponName''' - The name...)
 
(Example)
Line 12: Line 12:
 
== Example ==
 
== Example ==
  
{{Squirrel/NeedsExample}}
 
 
<code lang="squirrel">
 
<code lang="squirrel">
-- todo
+
function onPlayerCommand( player, command, text )
 +
{
 +
if ( command == "wepid" ) GetWeaponIDFromName( text );
 +
}
 
</code>
 
</code>
  
 
=== Notes ===
 
=== Notes ===
  
-- Example notes here
+
This function is used to get the weapon ID of the given text.
  
 
== Related Functions ==
 
== Related Functions ==
  
 
{{Squirrel/Server/Functions/Misc}}
 
{{Squirrel/Server/Functions/Misc}}

Revision as of 02:38, 7 January 2010

This function returns the ID of the weapon from its name.

Syntax

  1. int GetWeaponIDFromName( string weaponName )

Arguments

  • weaponName - The name of the weapon

Example

  1.  
  2. function onPlayerCommand( player, command, text )
  3. {
  4. if ( command == "wepid" ) GetWeaponIDFromName( text );
  5. }
  6.  

Notes

This function is used to get the weapon ID of the given text.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox