Difference between revisions of "Game"

From Vendetta Lua
Jump to: navigation, search
(GetFlightMode)
(EnableInput)
Line 20: Line 20:
 
=== EnableInput ===
 
=== EnableInput ===
 
'''Definition:'''<br>
 
'''Definition:'''<br>
EnableInput() -> ?
+
EnableInput()
 
<br><br>
 
<br><br>
 
'''Description:''' <br>
 
'''Description:''' <br>
Line 26: Line 26:
 
<br><br>
 
<br><br>
 
'''Arguments:''' <br>
 
'''Arguments:''' <br>
?
+
none
 
<br><br>
 
<br><br>
 
'''Returns:''' <br>
 
'''Returns:''' <br>
?
+
nothing
 
<br><br>
 
<br><br>
'''Example:'''
+
'''Example:'''<br>
 +
<source lang="lua">Game.EnableInput()</source>
 
<br><br>
 
<br><br>
 
 
  
 
=== GetCVar ===
 
=== GetCVar ===

Revision as of 10:28, 3 March 2009

Functions

DisableInput

Definition:
DisableInput() -> ?

Description:



Arguments:
?

Returns:
?

Example:


EnableInput

Definition:
EnableInput()

Description:



Arguments:
none

Returns:
nothing

Example:

Game.EnableInput()



GetCVar

Definition:
GetCVar(string name) -> result

Description:
Returns the value of a C variable(?)
I'm assuming that the term CVar refers to an ingame variable not directly accessible by Lua

Arguments:
name name of the variable.

Returns:
The value or nil
Example:

print(Game.GetCVar("rRenderStationInMenu")) -- output: 1 or 0, ie. true/false
if Game.GetCVar("autoaim") == 1 then print("autoaim is on") end
print(Game.GetCVar("rHUDxscale")) -- output: 900
if Game.GetCVar("filterchannelmsgs") ==  1 then print("Channel Messages are being filtered") end

GetClientBuildNumber

Definition:
GetClientBuildNumber() -> ?

Description:



Arguments:
?

Returns:
?

Example:


GetDesiredSpeed

Definition:
GetDesiredSpeed() -> ?

Description:



Arguments:
?

Returns:
?

Example:


GetFlightMode

Definition:
GetFlightMode() -> boolean

Description:



Arguments:
?

Returns:
?

Example:

local a = Game.GetFlightMode()
print tostring(a).." ("..type(a)..")" -- outputs: true (boolean)



GetNFZMode

Definition:
GetNFZMode() -> ?

Description:



Arguments:
?

Returns:
?

Example:


GetObjectAtScreenPos

Definition:
GetObjectAtScreenPos() -> ?

Description:



Arguments:
?

Returns:
?

Example:


GetTurretHealth

Definition:
GetTurretHealth() -> ?

Description:



Arguments:
?

Returns:
?

Example:


GetTurretObjectID

Definition:
GetTurretObjectID() -> ?

Description:



Arguments:
?

Returns:
?

Example:


Quit

Definition:
Quit() -> ?

Description:



Arguments:
?

Returns:
?

Example:


SetCVar

Definition:
SetCVar() -> ?

Description:



Arguments:
?

Returns:
?

Example:


SetDesiredSpeed

Definition:
SetDesiredSpeed() -> ?

Description:



Arguments:
?

Returns:
?

Example:


SetInputMode

Definition:
SetInputMode() -> ?

Description:



Arguments:
?

Returns:
?

Example:


SetJumpDest

Definition:
SetJumpDest() -> ?

Description:



Arguments:
?

Returns:
?

Example:


StartLoginCinematic

Definition:
StartLoginCinematic() -> ?

Description:



Arguments:
?

Returns:
?

Example:


StopLoginCinematic

Definition:
StopLoginCinematic() -> ?

Description:



Arguments:
?

Returns:
?

Example: