Client Scripting Classes: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Now it redirects to each class and their respective names.) |
||
Line 1: | Line 1: | ||
<pageclass class="client"></pageclass> | <pageclass class="client"></pageclass> | ||
{{Adding_Pages_to_Categories_and_Templates}} | {{Adding_Pages_to_Categories_and_Templates}} | ||
This page lists all the '''client-side''' scripting classes that are being implemented in the 1.4 version of Multi Theft Auto. It mirrors the procedural [[Client_Scripting_Functions| | This page lists all the '''client-side''' scripting classes that are being implemented in the 1.4 version of Multi Theft Auto. It mirrors the procedural [[Client_Scripting_Functions|client functions]]. | ||
Classes can be | Classes can be created by either calling the '''create''' method, when applicable, or by calling the class. For example: ''Vehicle(...)'' is the same as ''Vehicle.create(...)''. | ||
Here is a list of all the current classes, nested classes are subclasses of their respect parents: | |||
* [[Vector3]] | |||
* [[Matrix]] | |||
* [[Camera]] | |||
* [[Element]] | |||
** [[Ped]] | |||
*** [[Player]] | |||
** [[Vehicle]] | |||
** [[Object]] | |||
** [[Marker]] | |||
** [[Blip]] | |||
** [[Pickup]] | |||
** [[Colshape]] | |||
** [[Projectile]] | |||
** [[RadarArea]] | |||
** [[Team]] | |||
** [[Water]] | |||
** [[Sound]] | |||
** [[Sound3D]] | |||
** [[Weapon]] | |||
** [[GUI Element]] | |||
** [[Resource]] | |||
** [[Timer]] | |||
** [[File]] | |||
** [[xmlNode]] | |||
Revision as of 01:38, 3 November 2013
Contributors: Did you create a page but it's not on this list? Confused? Read: Adding Pages to Categories and Templates
This page lists all the client-side scripting classes that are being implemented in the 1.4 version of Multi Theft Auto. It mirrors the procedural client functions.
Classes can be created by either calling the create method, when applicable, or by calling the class. For example: Vehicle(...) is the same as Vehicle.create(...). Here is a list of all the current classes, nested classes are subclasses of their respect parents: