User contributions
From Sputnik Wiki
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 17:07, 29 November 2011 (diff | hist) Core Function DLLStructCreate (→Example)
- 15:36, 29 November 2011 (diff | hist) Core Function ATan
- 15:27, 29 November 2011 (diff | hist) Function Reference (→Math Functions)
- 15:23, 29 November 2011 (diff | hist) Function Reference (→String Functions)
- 15:12, 29 November 2011 (diff | hist) Core Function UC
- 15:12, 29 November 2011 (diff | hist) N Core Function LC (Created page with "<pre> LC( <expression> ) </pre> === Description === Returns string in all lower case. === Parameters === ==== expression ==== The string to use. === Return Value === Upper...")
- 15:12, 29 November 2011 (diff | hist) Function Reference (→String Functions)
- 15:11, 29 November 2011 (diff | hist) N Core Function UC (Created page with "<pre> UC( <expression> ) </pre> === Description === Returns string in all Upper Case. === Parameters === ==== expression ==== The string to evaluate. === Return Value === ...")
- 15:10, 29 November 2011 (diff | hist) Function Reference (→String Functions)
- 15:09, 29 November 2011 (diff | hist) Function Reference (→Multithreading Functions)
- 15:05, 29 November 2011 (diff | hist) Core Function StrIndex (→Example)
- 14:57, 29 November 2011 (diff | hist) Core Function StrIndex (→Example)
- 14:52, 29 November 2011 (diff | hist) N Core Function StrIndex (Created page with "<pre> StrIndex( <expression>, <index>, <value> ) </pre> === Description === Get or set a char from/to a string at a specific index. === Parameters === ==== expression ==== T...")
- 14:35, 29 November 2011 (diff | hist) Function Reference (→String Functions)
- 14:02, 29 November 2011 (diff | hist) Function Reference (→Mouse Control Functions)
- 13:44, 29 November 2011 (diff | hist) Core Function FileReadLines (→Example)
- 13:35, 29 November 2011 (diff | hist) Core Function ThreadCreate
- 13:34, 29 November 2011 (diff | hist) N Core Function ThreadCreate (Created page with "<pre> ThreadCreate( <name>, <function> ) </pre> === Description === Create a new thread and start it off executing a function or some code Sputnik supports multi-threading and...")
- 13:27, 29 November 2011 (diff | hist) N Core Function ThreadResume (Created page with "<pre> ThreadResume( <name> ) </pre> === Description === Unfreeze a thread and allow it to continue execution === Parameters === ==== name ==== Name of a thread to resume. =...")
- 13:26, 29 November 2011 (diff | hist) N Core Function ThreadSleep (Created page with "<pre> ThreadSleep( <name> ) </pre> === Description === Freeze a thread and make it sleep === Parameters === ==== name ==== Name of a thread to sleep. === Return Value === ...")
- 12:57, 29 November 2011 (diff | hist) N Core Function ThreadState (Created page with "<pre> ThreadState( <name> ) </pre> === Description === Returns state of a thread === Parameters === ==== name ==== Name of a thread to check. === Return Value === Success:...")
- 12:54, 29 November 2011 (diff | hist) N Core Function ThreadKill (Created page with "<pre> ThreadKill( <name> ) </pre> === Description === Terminate a thread and remove it from the script === Parameters === ==== name ==== Name of a thread to check. === Retu...")
- 12:52, 29 November 2011 (diff | hist) N Core Function ThreadExists (Created page with "<pre> ThreadExists( <name> ) </pre> === Description === Check if a thread exists by this name === Parameters === ==== name ==== Name of a thread to check. === Return Value ...")
- 12:49, 29 November 2011 (diff | hist) N Core Function ThreadName (Created page with "<pre> ThreadName( ) </pre> === Description === Returns the name of the current thread that is executing this code === Parameters === None === Return Value === Success: Retu...")
- 12:48, 29 November 2011 (diff | hist) N Core Function Threads (Created page with "<pre> Cls( ) </pre> === Description === Threads( ) -- Return an array of all threads === Parameters === None === Return Value === None === Remarks === None. === Example ...")
- 12:43, 29 November 2011 (diff | hist) Function Reference (→String Functions)
- 12:42, 29 November 2011 (diff | hist) N Core Function StrInsert (Created page with "<pre> StrInsert( <expression>, <index>, <expression2> ) </pre> === Description === Insert a string at a given index of another string and return the new string === Parameters ...")
- 12:40, 29 November 2011 (diff | hist) Function Reference (→String Functions)
- 12:35, 29 November 2011 (diff | hist) N Core Function SubStr (Created page with "<pre> SubStr( <expression>, <start>, <end> ) </pre> === Description === Return part of a string === Parameters === ==== expression ==== The expression to evaluate. ==== sta...")
- 12:25, 29 November 2011 (diff | hist) Core Function StrLen (→Example)
- 12:25, 29 November 2011 (diff | hist) N Core Function StrLen (Created page with "<pre> StrLen( <expression> ) </pre> === Description === Returns length of specified string === Parameters === ==== expression ==== The expression to evaluate. === Return Va...")
- 12:23, 29 November 2011 (diff | hist) N Core Function Remove (Created page with "<pre> Remove( <array>, <start-id>, <end-id> ) </pre> === Description === Delete items from an array starting at a given location and stopping at a given location === Parameter...")
- 12:20, 29 November 2011 (diff | hist) N Core Function Shift (Created page with "<pre> Shift( <array> ) </pre> === Description === Delete the last item in an array. === Parameters === ==== array ==== The array to use. === Return Value === Success - Ret...")
- 12:19, 29 November 2011 (diff | hist) N Core Function Pop (Created page with "<pre> Pop( <array> ) </pre> === Description === Delete the first item in an array. === Parameters === ==== array ==== The array to use. === Return Value === Success - Retu...")
- 12:18, 29 November 2011 (diff | hist) N Core Function Insert (Created page with "<pre> Insert( <array>, <id>, <expressions> ) </pre> === Description === Add items to an array at a given location === Parameters === ==== array ==== The array to use. ==== ...")
- 12:17, 29 November 2011 (diff | hist) Core Function Unshift
- 12:17, 29 November 2011 (diff | hist) Core Function Push
- 12:15, 29 November 2011 (diff | hist) Core Function Push (→Example)
- 12:15, 29 November 2011 (diff | hist) Core Function Push (→Example)
- 12:14, 29 November 2011 (diff | hist) N Core Function Unshift (Created page with "<pre> Unshift( <array>, <expressions> ) </pre> === Description === Add items to the beginning of an array === Parameters === ==== array ==== The array to use. === Return Va...")
- 12:13, 29 November 2011 (diff | hist) N Core Function Push (Created page with "<pre> Push( <array>, <expressions> ) </pre> === Description === Add items to the end of an array === Parameters === ==== array ==== The array to use. === Return Value === ...")
- 12:11, 29 November 2011 (diff | hist) Core Function Join (→Example)
- 12:11, 29 November 2011 (diff | hist) Core Function UBound (→Example)
- 12:08, 29 November 2011 (diff | hist) N Core Function DLLStructSetData (Created page with "<pre> DLLStructSetData( <dllstruct>, <element>, <index> ) </pre> === Description === Set the data of an element of the struct === Parameters === ==== dllstruct ==== The str...")
- 12:08, 29 November 2011 (diff | hist) Core Function DLLStructGetData (→index)
- 12:06, 29 November 2011 (diff | hist) N Core Function DLLStructGetData (Created page with "<pre> DLLStructGetData( <dllstruct>, <element>, <index> ) </pre> === Description === Returns the data of an element of the struct === Parameters === ==== dllstruct ==== Th...")
- 12:04, 29 November 2011 (diff | hist) N Core Function DllStructGetSize (Created page with "<pre> DllStructGetSize( <dllstruct> ) </pre> === Description === Returns the size of the struct in bytes. === Parameters === ==== dllstruct ==== The struct returned by DLLS...")
- 12:03, 29 November 2011 (diff | hist) N Core Function DllStructGetPtr (Created page with "<pre> DllStructGetPtr( <dllstruct>, <element>, <index> ) </pre> === Description === Returns the pointer to the struct or an element in the struct or even a specific index of an...")
- 12:00, 29 November 2011 (diff | hist) Main Page
- 11:59, 29 November 2011 (diff | hist) m Main Page (Protected "Main Page" ([edit=sysop] (indefinite) [move=sysop] (indefinite)))
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)