onPickupPickedUp

From Liberty Unleashed Wiki
Revision as of 16:38, 4 November 2010 by Juppi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This is called when a player picks up a pick-up.

Syntax

  1. function onPickupPickedUp( Player player, Pickup pickup )

Arguments

  • player - The player that collected the pick-up
  • pickup - The pickup which was collected

Returns

This event does not handle return values.

Example

This example will tell the player which pickup they have just hit.

  1.  
  2. function onPickupPickedUp( player, pickup )
  3. {
  4. MessagePlayer( "You picked up pickup id " + pickup.ID + ", Model: " + pickup.Model, player );
  5. return 1;
  6. }
  7.  

Notes

The functions Pickup.ID, Pickup.Model and MessagePlayer were used in this example. More info about them can be found in the corresponding pages.

Related Events

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox