User contributions for Doom Killer
A user with 21 edits. Account created on 21 February 2015.
This wiki is using an old backup from 2020
Some information may be old/missing
11 December 2016
- 11:5611:56, 11 December 2016 diff hist +105 Server-side Scripting Resources No edit summary
8 June 2016
- 07:2407:24, 8 June 2016 diff hist +1,325 N Player.Skin Created page with "This method can be used to get a player's skin or set to a desired one == Syntax == === Type 1 - Getting the current skin a player has === <source lang=squirrel>PlayerInstanc..."
24 April 2016
- 04:4304:43, 24 April 2016 diff hist +38 m Scripting/Squirrel/Functions/SetShowOnlyTeamMarkers →Example
12 March 2016
- 08:2508:25, 12 March 2016 diff hist +593 N Scripting/Squirrel/Functions/Player.PlaySound Created page with "This function will play a sound for a specific player == Syntax == <pre>Player.PlaySound( sound )</pre> == Arguments == * ''instance'' '''Player''' - The player to play so..."
9 March 2016
- 10:0610:06, 9 March 2016 diff hist +737 N OnCheckpointExited Created page with "This is called when a player exits any checkpoint == Syntax == <pre>function onCheckpointExited( player, checkpoint )</pre> == Arguments == * '''player''' - The pointer of..."
- 10:0410:04, 9 March 2016 diff hist +741 N OnCheckpointEntered Created page with "This is called when a player enters any checkpoint == Syntax == <pre>function onCheckpointEntered( player, checkpoint )</pre> == Arguments == * '''player''' - The pointer..."
- 09:5209:52, 9 March 2016 diff hist +589 N Scripting/Squirrel/Functions/Player.IsOnRadar Created page with "This function will set a user visible or invisible on radar. == Syntax == <pre>player.IsOnRadar = toggle</pre> == Arguments == * ''bool'' '''toggle''' - A boolean value re..."
- 09:4509:45, 9 March 2016 diff hist +373 N Scripting/Squirrel/Functions/Pickup.Remove Created page with "== Syntax == <pre>bool Pickup.Remove</pre> == Arguments == '''> Pickup''' - The pickup instance. == Example == This example will create a pickup when the script loads and..."
- 09:4309:43, 9 March 2016 diff hist +3 Scripting/Squirrel/Functions/Pickup.Pos →Arguments
- 09:4209:42, 9 March 2016 diff hist +473 N Scripting/Squirrel/Functions/Pickup.Pos Created page with "== Syntax == <pre>vector Pickup.Pos = Vector( X, Y, Z )</pre> == Arguments == '''> Pickup''' - The pickup instance. '''> X''' - The X-axis float point. '''> Y''' - The Y-ax..."
- 09:3609:36, 9 March 2016 diff hist −4 Scripting/Squirrel/Functions/Player.CameraLocked →Syntax
- 09:3609:36, 9 March 2016 diff hist 0 Scripting/Squirrel/Functions/Player.CameraLocked →Syntax
- 09:3509:35, 9 March 2016 diff hist +274 N Scripting/Squirrel/Functions/Player.CameraLocked Created page with "== Syntax == <pre>''bool'' Player.CameraLocked</pre> == Arguments == '''> Player''' - The player instance to lock camera for. == Example == This example will set a player..."
4 March 2016
- 11:5511:55, 4 March 2016 diff hist +1 Scripting/Squirrel/Functions/Player.Colour →Arguments
- 11:5411:54, 4 March 2016 diff hist +200 Scripting/Squirrel/Functions/Player.Colour No edit summary
- 11:5111:51, 4 March 2016 diff hist +283 N Scripting/Squirrel/Functions/Player.Colour Created page with "== Syntax == <pre>Player.Colour = RGB( Red, Green, Blue )</pre> == Example == This example will set a player's colour on scoreboard and radar to a random colour. <pre>func..."
- 11:4711:47, 4 March 2016 diff hist +65 Server-side Scripting Resources →Scripts
21 February 2015
- 10:2710:27, 21 February 2015 diff hist −37 Scripting/Squirrel/Functions/Player.Alpha →Syntax
- 10:2710:27, 21 February 2015 diff hist −376 Scripting/Squirrel/Functions/Player.Alpha →Example
- 10:2510:25, 21 February 2015 diff hist +413 N Scripting/Squirrel/Functions/Player.Alpha Created page with "== Syntax == <pre>player.Alpha</pre> == Example == The following example will set a player's alpha to 0, means hiding him: <source lang=squirrel> function onPlayerCommand(..."
- 10:2110:21, 21 February 2015 diff hist +906 N Scripting/Squirrel/Functions/BindKey How to bind different keys for different actions in game, could be useful, created by Doom_Killer