Socket.SendClient

From Liberty Unleashed Wiki
Revision as of 10:11, 11 October 2010 by VRocker (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function sends the given data using a socket.

Syntax

  1. bool Socket.SendClient( string data, int connection )

Arguments

  • data - This is the data you want to send via the socket as a string
  • connection - The ID of the client you wish to send data for

Example

  1.  
  2. function onPlayerChat( player, text )
  3. {
  4. p_Socket.Send( text, 0 );
  5. }
  6.  

This would send the text that the player said to connection id 0. p_Socket was created in the Connect function.

Notes

The call onPlayerChat was used in in this example. More info about this in the corresponding page.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox