User contributions

For 71.226.33.30 talk block log logs
Jump to navigation Jump to search
Search for contributionsExpandCollapse
⧼-contribs-top⧽
⧼-contribs-date⧽

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

  • 00:27, 24 March 2020 diff hist -5 Key.get
  • 00:26, 24 March 2020 diff hist +380 N Key.getCreated page with "<c>key.get</c> removes and returns the next key in the keyboard input buffer. If the input buffer is currently clear (empty), then this method waits until a key is pressed...."
  • 23:50, 23 March 2020 diff hist +288 N Key.clearCreated page with "<c>key.clear</c> clears the keyboard input buffer. This is often used before exiting a game, so that any key presses made during the game don't spill out into the command lin..."
  • 23:48, 23 March 2020 diff hist -10 Key.available
  • 23:47, 23 March 2020 diff hist +8 Key.available
  • 23:47, 23 March 2020 diff hist +411 N Key.availableCreated page with "<c>key.available</c> returns whether there is a keypress available in the input buffer. If true, you can call key.get to get the next key immediately. See also:key.clear; key..."
  • 16:16, 18 March 2020 diff hist +537 N ValCreated page with "<c>val</c> returns the numeric value of a given string. (If given a number, returns it as-is; if given a list or map, returns null.) See also: str === Arguments === {| cla..." current
  • 15:47, 18 March 2020 diff hist +440 N UpperCreated page with "<c>upper</c> return an upper-case (all capitals) version of a string. See also: lower === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Mea..."
  • 15:44, 18 March 2020 diff hist +109 N TimeCreated page with "<c>time</c> returns the number of seconds since the script started running. Category:Intrinsic Functions"
  • 15:43, 18 March 2020 diff hist +340 N TanCreated page with "<c>tan</c> returns the tangent of the given angle (in radians). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''radians'' || nu..." current
  • 15:41, 18 March 2020 diff hist 0 Sort
  • 16:26, 17 March 2020 diff hist +369 N SumCreated page with "<c>sum</c> returns the total of all elements in a list, or all values in a map. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | '..." current
  • 16:24, 17 March 2020 diff hist +354 N ShuffleCreated page with "<c>shuffle</c> randomize the order of elements in a list, or the mappings from keys to values in a map. This is done in place. === Arguments === {| class="wikitable" |- ! P..."
  • 16:23, 17 March 2020 diff hist +684 N String typeCreated page with "<c>string type</c> returns a map that represents the string datatype in MiniScript's core type system. See also: number, list, map, funcRef === Arguments ===..."
  • 16:21, 17 March 2020 diff hist +364 N StrCreated page with "<c>str</c> coverts any value to a string === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' || any || value to convert |} ==..." current
  • 16:20, 17 March 2020 diff hist +313 N SqrtCreated page with "<c>sqrt</c> returns the square root of a number. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' || number || number to get..."
  • 16:18, 17 March 2020 diff hist +666 N SplitCreated page with "<c>split</c> splits a string into a list, by some delimiter. See also: join === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- |..."
  • 16:15, 17 March 2020 diff hist +725 N SortCreated page with "<c>sort</c> Sorts a list in place. With null or no argument, this sorts the list elements by their own values. See also: shuffle === Arguments === {| class="wikitabl..."
  • 16:12, 17 March 2020 diff hist +817 N SliceCreated page with "<c>slice</c> returns a subset of a string or list. This is equivalent to using the square-brackets slice operator seq[from:to], but with ordinary function syntax. === Argume..."
  • 16:08, 17 March 2020 diff hist -1 Sincurrent
  • 16:08, 17 March 2020 diff hist +336 N SinCreated page with "<c>sin</c> returns the sine of the given angle (in radians). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''radians'' || numbe..."
  • 16:06, 17 March 2020 diff hist -1 Signcurrent
  • 16:06, 17 March 2020 diff hist +344 N SignCreated page with "<c>sign</c> returns -1 for negative numbers, 1 for positive numbers, and 0 for zero. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning..."
  • 16:04, 17 March 2020 diff hist +594 N RndCreated page with "<c>rnd</c> Generates a pseudorandom number between 0 and 1 (including 0 but not including 1). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !!..."
  • 16:03, 17 March 2020 diff hist +1 Round→‎Example
  • 16:02, 17 March 2020 diff hist +602 N RoundCreated page with "<c>round</c> rounds a number to the specified number of decimal places. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' ||..."
  • 16:01, 17 March 2020 diff hist +3 Replace
  • 16:00, 17 March 2020 diff hist +1,140 N ReplaceCreated page with "<c>replace</c> Replace all matching elements of a list or map, or substrings of a string, with a new value. === Arguments === {| class="wikitable" |- ! Parameter Name !! De..."
  • 15:54, 17 March 2020 diff hist +967 N RemoveCreated page with "<c>remove</c> removes part of a list, map, or string. See also: indexOf === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''se..."
  • 15:50, 17 March 2020 diff hist +1 Range
  • 15:50, 17 March 2020 diff hist +442 N RangeCreated page with "<c>range</c> Return a list containing a series of numbers within a range. from (number, default 0): first number to include in the list to (number, default 0): point at which..."
  • 15:47, 17 March 2020 diff hist +465 N PushCreated page with "<c>push</c> appends an item to the end of a list, or inserts it into a map as a key with a value of 1. See also: pop; pull; insert === Arguments === {| class="wi..."
  • 15:45, 17 March 2020 diff hist +613 N PullCreated page with "<c>pull</c> removes and returns the first item in a list, or an arbitrary key of a map. If the list or map is empty (or if called on any other data type), returns null. See..." current
  • 15:43, 17 March 2020 diff hist +610 N PopCreated page with "<c>pop</c> removes and returns the last item in a list, or an arbitrary key of a map. If the list or map is empty (or if called on any other data type), returns null. See al..." current
  • 15:35, 17 March 2020 diff hist +191 N PiCreated page with "<c>pi</c> returns the universal constant π, that is, the ratio of a circle's circumference to its diameter. == Example == <ms>pi // returns 3.141593</ms> Category:Intri..." current
  • 15:33, 17 March 2020 diff hist +529 N Number typeCreated page with "<c>funcname</c> Returns a map that represents the number datatype in miniScript's core type system. See also: string; list; map; funcRef === Usage Notes ==..."
  • 15:28, 17 March 2020 diff hist +451 N Map typeCreated page with "<c>map type</c> returns a map that represents the map datatype in MiniScript's core type system. See also: number; string; list; funcRef === Usage Notes ===..."
  • 17:59, 16 March 2020 diff hist +425 N LowerCreated page with "<c>lower</c> returns a lower-case version of a string. See also: upper === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''sel..." current
  • 17:56, 16 March 2020 diff hist -1 Log
  • 17:56, 16 March 2020 diff hist +457 N LogCreated page with "<c>log(x, base)</c> returns the logarithm (with the given) of the given number, that is, the number y such that base^y = x. === Arguments === {| class="wikitable" |- ! Para..."
  • 17:53, 16 March 2020 diff hist +1 List type
  • 17:52, 16 March 2020 diff hist +481 N List typeCreated page with "<c>list type</c> returns a map that represents the list datatype in MiniScript's core type system. See also: number, string, map, funcRef === Arguments ===..."
  • 17:49, 16 March 2020 diff hist -49 Self.len
  • 17:48, 16 March 2020 diff hist +568 N Self.lenCreated page with "<c>self.len</c> returns the number of characters in a string, elements in a list, or key/value pairs in a map. May be called with function syntax or dot syntax. === Argument..."
  • 17:46, 16 March 2020 diff hist +467 N JoinCreated page with "<c>self.join</c> joins the elements of a list together to form a string. See also: split === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !!..."
  • 17:42, 16 March 2020 diff hist +800 N InsertCreated page with "<c>insert</c> inserts a new element into a string or list. See also: remove === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- |..."
  • 17:38, 16 March 2020 diff hist +649 N IndexOfCreated page with "<c>indexOf</c> returns index or key of the given value, or if not found. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''self''..."
  • 17:34, 16 March 2020 diff hist +910 N HasIndexCreated page with "<c>hashIndex</c> return whether the given index is valid for this object, that is, whether it could be used with square brackets to get some value from self. See also: In..."
  • 17:32, 16 March 2020 diff hist +1 Indexes
  • 17:31, 16 March 2020 diff hist +466 N IndexesCreated page with "<c>indexes</c> Returns the keys of a dictionary, or the non-negative indexes for a string or list. See also hasIndex === Arguments === {| class="wikitable" |- ! Paramet..."

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)