Squirrel/Client/Functions/Players/RemoveLimb

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Arguments)
(Arguments)
Line 5: Line 5:
 
<code>g_LocalPlayer.RemoveLimb( int Bodypart )</code>
 
<code>g_LocalPlayer.RemoveLimb( int Bodypart )</code>
  
== Arguments ==
+
== Example ==
  
 +
<code lang="squirrel">
 
g_LocalPlayer <- FindLocalPlayer();
 
g_LocalPlayer <- FindLocalPlayer();
  
Line 25: Line 26:
 
return 1;
 
return 1;
 
}
 
}
 +
</code>

Revision as of 13:48, 10 August 2013

This function allows you to remove one of the client's limbs.

Syntax

  1. g_LocalPlayer.RemoveLimb( int Bodypart )

Example

  1.  
  2. g_LocalPlayer <- FindLocalPlayer();
  3.  
  4. function onClientShot( pPlayer, iWeapon, iBodypart )
  5. {
  6. if ( g_LocalPlayer.Immune == false )
  7. {
  8. if ( iWeapon == WEP_EXPLOSION )
  9. {
  10. g_LocalPlayer.RemoveLimb( BODYPART_LEFTARM );
  11. g_LocalPlayer.RemoveLimb( BODYPART_RIGHTARM );
  12. g_LocalPlayer.RemoveLimb( BODYPART_LEFTLEG );
  13. g_LocalPlayer.RemoveLimb( BODYPART_HEAD );
  14. g_LocalPlayer.RemoveLimb( BODYPART_RIGHTLEG );
  15. }
  16. }
  17. return 1;
  18. }
  19.  
Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox