User contributions

From OpenEUO
For 76.184.213.234 (talk | block log | uploads | logs)
Jump to: navigation, search
Search for contributions
 
 
     
  

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

  • 20:44, 7 October 2010 (diff | hist) . . (+345). . N String.dump(Created page with " string.dump (function) Returns a string containing a binary representation of the given function, so that a later loadstring on this string returns a copy of the function. func...")
  • 20:41, 7 October 2010 (diff | hist) . . (+283). . Openfile
  • 20:35, 7 October 2010 (diff | hist) . . (+301). . N String.char(Created page with " string.char (···) Receives zero or more integers. Returns a string with length equal to the number of arguments, in which each character has the internal numerical code equal...") (current)
  • 20:34, 7 October 2010 (diff | hist) . . (+333). . N String.byte(Created page with " string.byte (s [, i [, j]]) Returns the internal numerical codes of the characters s[i], s[i+1], ···, s[j]. The default value for i is 1; the default value for j is i. Note ...")
  • 20:30, 7 October 2010 (diff | hist) . . (+3,120). . Openfile
  • 20:25, 7 October 2010 (diff | hist) . . (+80). . Openfile
  • 20:23, 7 October 2010 (diff | hist) . . (+718). . Openfile
  • 20:22, 7 October 2010 (diff | hist) . . (+677). . N Openfile(Created page with " io.open (filename [, mode]) This function opens a file, in the mode specified in the string mode. It returns a new file handle, or, in case of errors, nil plus an error message...")
  • 20:17, 7 October 2010 (diff | hist) . . (+134). . Bit.Shl
  • 20:16, 7 October 2010 (diff | hist) . . (+179). . N Bit.Shr(Created page with " Bit.Shr(n1,n2) Returns the result of shifting n1 to the right by n2 bits. Since numbers are stored in double format, don't use this as a shortcut for division by a power of two.")
  • 20:14, 7 October 2010 (diff | hist) . . (+78). . N Bit.Shl(Created page with " BitShl(n1,n2) Returns the result of bitwise shifting n1 to the left n2 bits.")
  • 20:12, 7 October 2010 (diff | hist) . . (+423). . N Bit.Xor(Created page with " Bit.Xor(n1,n2,...) Returns the results of a bitwise exclusive or operation on the arguments. The arguments are numbers, numbers in Lua are doubles, and the double type contains...")
  • 20:10, 7 October 2010 (diff | hist) . . (+408). . N Bit.Or(Created page with " Bit.Or(n1,n2,...) Returns the result of a bitwise or operation on the arguments. Arguments are numbers, numbers under Lua are doubles, and the double type contains 64 bits: 1 f...")
  • 20:08, 7 October 2010 (diff | hist) . . (+352). . N Bit.Not(Created page with " Bit.Not(n) Returns the result of a bitwise not operation on the sole argument. n is a number, numbers are doubles in Lua, and the double type contains 64 bits: 1 for sign, 11 f...")
  • 20:06, 7 October 2010 (diff | hist) . . (+23). . Bit.And
  • 20:05, 7 October 2010 (diff | hist) . . (+431). . N Bit.And(Created page with " Bit.And(n1,n2,...) Provides support for the bitwise and operation. n1, n2 and other arguments are numbers. Numbers in Lua are defined as doubles. The double type contains 64 b...")
  • 19:56, 7 October 2010 (diff | hist) . . (+21). . Ipairs(current)
  • 19:55, 7 October 2010 (diff | hist) . . (-12). . Getfenv
  • 19:53, 7 October 2010 (diff | hist) . . (+12). . Getfenv
  • 19:52, 7 October 2010 (diff | hist) . . (+45). . Dofile(current)
  • 19:51, 7 October 2010 (diff | hist) . . (+59). . Loadfile(current)
  • 19:51, 7 October 2010 (diff | hist) . . (+78). . Loadstring(current)
  • 19:11, 7 October 2010 (diff | hist) . . (+626). . N Obj.Create(Created page with " local oref = Obj.Create (str) Create a gui object of the given type as specified by the string str. e.g. local form = Obj.Create ("TForm") instantiates a TForm object and as...")
  • 18:59, 7 October 2010 (diff | hist) . . (+114). . Obj.Free(current)
  • 18:56, 7 October 2010 (diff | hist) . . (+113). . N Obj.Free(Created page with " Obj.Free(oref) Frees the object referenced by oref, created previously by a call to Obj.Create. Obj.Create")
  • 18:52, 7 October 2010 (diff | hist) . . (+19). . Obj.Exit(current)
  • 18:52, 7 October 2010 (diff | hist) . . (+159). . N Obj.Exit(Created page with " Obj.Exit () Only applicable to a script using objects, Obj.Exit posts a message to the script's event queue requesting termination of Obj.Loop. Obj.Loop")
  • 18:50, 7 October 2010 (diff | hist) . . (+312). . N Obj.Loop(Created page with " Obj.Loop () Swallows execution of thread and processes incoming windows messages by calling any associated object event handlers. Obj.Loop does not return until an Obj.Exit i...") (current)
  • 18:46, 7 October 2010 (diff | hist) . . (+21). . Wait
  • 18:45, 7 October 2010 (diff | hist) . . (+14). . Wait
  • 18:45, 7 October 2010 (diff | hist) . . (+151). . N Wait(Created page with " wait (msec) Temporarily pauses execution of the script for msec milliseconds. Keep durations short if used in a gui thread where events are handled.")
  • 18:41, 7 October 2010 (diff | hist) . . (+52). . N Stop(Created page with " stop () Immediately ends execution of the script.")
  • 18:40, 7 October 2010 (diff | hist) . . (+119). . N Pause(Created page with " pause () Pauses execution of the script; may be resumed from the gui by using the run command or via single-stepping.")
  • 18:38, 7 October 2010 (diff | hist) . . (+82). . N Dostring(Created page with " dostring (str) Like dofile, except that the string str is processed. Dofile") (current)
  • 18:37, 7 October 2010 (diff | hist) . . (+24). . Table.remove
  • 18:36, 7 October 2010 (diff | hist) . . (+552). . N Table.sort(Created page with " table.sort (table [, comp]) Sorts table elements in a given order, in-place, from table[1] to table[n], where n is the length of the table. If comp is given, then it must be a f...")
  • 18:35, 7 October 2010 (diff | hist) . . (+433). . N Table.remove(Created page with " table.remove (table [, pos]) Removes from table the element at position pos, shifting down other elements to close the space, if necessary. Returns the value of the removed ele...")
  • 18:33, 7 October 2010 (diff | hist) . . (+255). . N Table.maxn(Created page with " table.maxn (table) Returns the largest positive numerical index of the given table, or zero if the table has no positive numerical indices. (To do its job this function does a ...")
  • 18:31, 7 October 2010 (diff | hist) . . (+460). . N Table.insert(Created page with " table.insert (table, [pos,] value) Inserts element value at position pos in table, shifting up other elements to open space, if necessary. The default value for pos is n+1, whe...")
  • 18:30, 7 October 2010 (diff | hist) . . (+326). . N Table.concat(Created page with " table.concat (table [, sep [, i [, j]]]) Given an array where all elements are strings or numbers, returns table[i]..sep..table[i+1] ··· sep..table[j]. The default value for ...")
  • 18:27, 7 October 2010 (diff | hist) . . (+417). . N Unpack(Created page with " unpack (list [, i [, j]]) Returns the elements from the given table. This function is equivalent to return list[i], list[i+1], ···, list[j] except that the above code ...")
  • 18:26, 7 October 2010 (diff | hist) . . (+224). . N Type(Created page with " type (v) Returns the type of its only argument, coded as a string. The possible results of this function are "nil" (a string, not the value nil), "number", "string", "boolean", ...")
  • 18:25, 7 October 2010 (diff | hist) . . (+348). . N Tostring(Created page with " tostring (e) Receives an argument of any type and converts it to a string in a reasonable format. For complete control of how numbers are converted, use string.format. If the m...")
  • 18:25, 7 October 2010 (diff | hist) . . (+711). . N Tonumber(Created page with " tonumber (e [, base]) Tries to convert its argument to a number. If the argument is already a number or a string convertible to a number, then tonumber returns this number; othe...")
  • 18:22, 7 October 2010 (diff | hist) . . (+73). . Setmetatable
  • 18:21, 7 October 2010 (diff | hist) . . (+308). . N Setmetatable(Created page with " setmetatable (table, metatable) Sets the metatable for the given table. (You cannot change the metatable of other types from Lua, only from C.) If metatable is nil, removes the...")
  • 18:21, 7 October 2010 (diff | hist) . . (+48). . Setfenv
  • 18:20, 7 October 2010 (diff | hist) . . (+365). . N Setfenv(Created page with " setfenv (f, table) Sets the environment to be used by the given function. f can be a Lua function or a number that specifies the function at that stack level: Level 1 is the fu...")
  • 18:19, 7 October 2010 (diff | hist) . . (+206). . N Select(Created page with " select (index, ···) If index is a number, returns all arguments after argument number index. Otherwise, index must be the string "#", and select returns the total number of ...")
  • 18:19, 7 October 2010 (diff | hist) . . (+297). . N Rawset(Created page with " rawset (table, index, value) Sets the real value of table[index] to value, without invoking any metamethod. table must be a table, index any value different from nil, and value...")

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