Scripting/Squirrel/Functions/Player.GreenScanlines: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary
Line 1: Line 1:
== Syntax ==
{{Scripting/Needs_Text}}


<pre>SetGreenScanLines( player, true );
{{Scripting/Needs_Example}}
SetGreenScanLines( player, false );</pre>
== Example ==
<source lang=squirrel>
function onPlayerCommand( player, cmd, text );
if ( cmd == "greenlineson" )
  {
  SetGreenScanLines( player, true );
  }
if ( cmd == "greenlinesoff" )
  {
  SetGreenScanLines( player, false);
  }
 
 
</source>

Revision as of 18:52, 26 July 2014


This page needs a description, or needs a better one. Please help us complete the wiki by writing one.


This page needs an example. We will try our best to complete the wiki as soon as possible.