-
Notifications
You must be signed in to change notification settings - Fork 170
Client Scripting
Garma edited this page Jul 15, 2013
·
14 revisions
Like server can be modified with serverside scripting, this is also possible for clients. It allows you to build your own features, like custom ignore system, friend system and so on.
Just like server, client has it's own script functions. While the majority of functions are properties of the client
object, there are some sys
functions available you may know from server scripting (for example the timer functions).
The network object allows the client to communicate to the server and do things like sending a message to everyone.
Like server, the script events in client scripts are properties of the script
object. Stoppable events can be stopped with sys.stopEvent()
.