SetCameraGoggleEffect: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 20: Line 20:
     if(getCameraGoggleEffect == "normal") then
     if(getCameraGoggleEffect == "normal") then
         setCameraGoggleEffect("nightvision")
         setCameraGoggleEffect("nightvision")
     else if(getCameraGoggleEffect == "nightvision") then
     elseif(getCameraGoggleEffect == "nightvision") then
         setCameraGoggleEffect("normal")
         setCameraGoggleEffect("normal")
     end
     end

Revision as of 16:29, 4 August 2011

This function allows you to set the camera's current goggle effect. This means you can activate nightvision or infrared effects by script

Syntax

bool setCameraGoggleEffect ( string goggleEffect )

Required Arguments

  • goggleEffect: The goggle effect you wish to set
  • normal: No camera goggle effect
  • nightvision: Nightvision camera
  • thermalvision: Infrared camera

Returns

Returns true if the effect was set correctly, false otherwise.

Example

function nightvision()
    if(getCameraGoggleEffect == "normal") then
        setCameraGoggleEffect("nightvision")
    elseif(getCameraGoggleEffect == "nightvision") then
        setCameraGoggleEffect("normal")
    end
end

addCommandHandler("nightvision", nightvision)

See Also