OnObjectShot: 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
mNo edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
function onObjectShot(object,player,weapon ) {
==Description==
   MessagePlayer("You've shot object id "+object+" with weapon id "+weapon,player)
This event is called when a player shoots an object.
==Syntax==
<source lang=squirrel>
onObjectShot(object,player,weapon);
</source>
==Example==
<source lang=squirrel>
function onObjectShot(object, player, weapon) {
   MessagePlayer("You've shot object id " + object + " with weapon id " + weapon, player);
}
}
</source>
== Related Functions ==


 
{{Scripting/Squirrel/Events/Object_Events}}
This will Message the player which shotted a object which tracks shots and sends him information about it
[[Category:Scripting/Squirrel/Events/Object_Events]]

Latest revision as of 13:34, 7 May 2019

Description

This event is called when a player shoots an object.

Syntax

onObjectShot(object,player,weapon);

Example

function onObjectShot(object, player, weapon) {
   MessagePlayer("You've shot object id " + object + " with weapon id " + weapon, player);
}

Related Functions