OnPlayerPM: 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:
__NOTOC__
This is called when a player sends a private message to another player.
This is called when a player sends a private message to another player.



Revision as of 11:54, 30 December 2015

This is called when a player sends a private message to another player.

Syntax

function onPlayerPM( player, playerTo, text )

Parameters

  • Player player - The player that sends the message.
  • Player playerTo - The player to send the message.
  • string text - this is the message to send.

Example

function onPlayerPM( player, playerTo, text )
{
PrivMessage( playerTo, "PrivateMessage From: [ "+player+" ] >> "+text+".");
}

Notes

The function PrivMessage and call onPlayerPM were used in this example. More info about them in the corresponding pages.

Related Events