Squirrel/Server/Events/Pickup/onPickupPickedUp

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
m (:_:)
Line 1: Line 1:
{{Squirrel/Title|oonPickupPickedUp}}
+
{{Squirrel/Title|onPickupPickedUp}}
 
This is called when a player picks up a pick-up.
 
This is called when a player picks up a pick-up.
  

Revision as of 16:33, 4 November 2010

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 in this example. More info about them can be found in the corresponding pages.

Related Events

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox