Scripting/Squirrel/Functions/Pickup.Model

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

Syntax

pickup.Model


Here you can get some models http://wiki.vc-mp.org/wiki/Pickup_Models I will use in this example the id 366 model is the health

Example

function onPickupPickedUp( player, pickup )
{

if(pickup.Model == 366)
{
pickup.RespawnTime = 5000;
MessagePlayer( "you've got your energina 100%", player );
Message( "[#7CFC00] player "+player.Name+" has recovered its energy 100% ");
player.Health = 100;
}

}

Related Functions