OnPickupPickedUp: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
mNo edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
==Description==
Checks if a object is picked up.
Checks if a object is picked up.
==onPickupPickup==
==Syntax==
<code>function onPickupPickedUp( player, pickup )</code>
==Example==


<source lang="squirrel">
<source lang="squirrel">
Line 13: Line 16:
}
}
</source>
</source>
== Related Functions ==
{{Scripting/Squirrel/Events/Pickup_Events}}
[[Category:Scripting/Squirrel/Events/Pickup_Events]]

Latest revision as of 22:12, 30 January 2017

Description

Checks if a object is picked up.

Syntax

function onPickupPickedUp( player, pickup )

Example

function onPickupPickedUp( player, pickup )
{

if ( pickup.Model == 408 ) 
 {
  MessagePlayer( "You earn 50$", player );
  player.Cash += 50;
 }
}

Related Functions