OnPlayerPM

From Vice City Multiplayer
Revision as of 11:21, 30 December 2015 by Decent 946 (talk | contribs) (Created page with "== Syntax == <pre>function onPlayerPM( player, playerTo, text )</pre> == Parameters == * ''Player'' '''player''' - The pla...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Syntax

function onPlayerPM( player, playerTo, text )

Parameters

  • Player player - The player that uses command.
  • 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 onPlayerCommand were used in this example. More info about them in the corresponding pages.

Related Events