OnPlayerPM: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
Decent 946 (talk | contribs) No edit summary |
Decent 946 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
this function | this function allows you to send a private Message ( PM ) to a player. | ||
== Syntax == | == Syntax == | ||
Line 16: | Line 16: | ||
function onPlayerPM( player, playerTo, text ) | function onPlayerPM( player, playerTo, text ) | ||
{ | { | ||
PrivMessage( playerTo, "PrivateMessage From: [ "+player+" ] >> "+text+"."); | if ( text ) | ||
{ | |||
PrivMessage( playerTo, "PrivateMessage From: [ "+player+" ] >> "+text+"."); | |||
PrivMessage( player, "you successfully sent PM to player: "+ playerTo ); | |||
} | |||
else PrivMessage( player, "SYNTAX: /msg [player's ID] [text]" ); | |||
return 0; | |||
} | } | ||
</source> | </source> |
Revision as of 15:01, 14 March 2016
this function allows you to send a private Message ( PM ) to a 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 )
{
if ( text )
{
PrivMessage( playerTo, "PrivateMessage From: [ "+player+" ] >> "+text+".");
PrivMessage( player, "you successfully sent PM to player: "+ playerTo );
}
else PrivMessage( player, "SYNTAX: /msg [player's ID] [text]" );
return 0;
}
Notes
The function PrivMessage and call onPlayerPM were used in this example. More info about them in the corresponding pages.
Related Events
- onPlayerJoin( player )
- onPlayerPart( player, reason )
- onPlayerRequestClass( player, classID )
- onPlayerRequestSpawn( player )
- onPlayerSpawn( player )
- onPlayerDeath( player, reason )
- onPlayerKill( killer, player, reason, bodypart )
- onPlayerTeamKill( killer, player, reason, bodypart )
- onPlayerChat( player, message )
- onPlayerCommand( player, command, arguments )
- onPlayerPM( player, playerTo, message )
- onPlayerBeginTyping( player )
- onPlayerEndTyping( player )
- onLoginAttempt( playerName, password, ipAddress )
- onNameChangeable( player ) // Currently can't work.
- onPlayerMove( player, lastX, lastY, lastZ, newX, newY, newZ )
- onPlayerHealthChange( player, lastHP, newHP )
- onPlayerArmourChange( player, lastArmour, newArmour )
- onPlayerWeaponChange( player, oldWep, newWep )
- onKeyDown( player, bindID )
- onKeyUp( player, bindID )
- onPlayerAwayChange( player, newStatus )
- onPlayerSpectate( player, target )
- onPlayerCrashDump( player, crashReport )
- onPlayerNameChange( player, oldName, newName )
- onPlayerActionChange( player, oldAction, newAction )
- onPlayerStateChange( player, oldState, newState )
- onPlayerOnFireChange( player, isOnFireNow )
- onPlayerCrouchChange( player, isCrouchingNow )
- onPlayerGameKeysChange( player, oldKeys, newKeys )