Scripting/Squirrel/Functions/Pickup.Model: 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
No edit summary
No edit summary
Line 1: Line 1:
 
'''Syntax'''
'''Pickup.Model'''
<pre>pickup.Model</pre>





Revision as of 22:56, 21 December 2015

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 <source lang=squirrel>


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;
}

}