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
(Created page with "[code] function onObjectShot( object, player, weapon ) { MessagePlayer("You've shot object id "+object+" with weapon id "+weapon,player) } [/code] This will Message the...")
 
No edit summary
Line 1: Line 1:
[code]
function onObjectShot(object,player,weapon ) {
function onObjectShot( object, player, weapon ) {
   MessagePlayer("You've shot object id "+object+" with weapon id "+weapon,player)
   MessagePlayer("You've shot object id "+object+" with weapon id "+weapon,player)
}
}
[/code]




This will Message the player which shotted a object which tracks shots and sends him information about it
This will Message the player which shotted a object which tracks shots and sends him information about it

Revision as of 08:39, 17 November 2016

function onObjectShot(object,player,weapon ) {

  MessagePlayer("You've shot object id "+object+" with weapon id "+weapon,player)

}


This will Message the player which shotted a object which tracks shots and sends him information about it