All public logs

From Dark Signs Online
Jump to navigationJump to search

Combined display of all available logs of Dark Signs Online. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 18:50, 5 April 2024 Doridian talk contribs deleted page Nested loops (content was: "=== The nested loops trick === == Intro == Nested loops in Dark Signs Online is currently impossible as just a FOR loop, if you put a FOR inside one other FOR, it wont work, it will ignore the outer FOR condition There is only one discovered way to get around this. == Code == <pre>@loop Action @nested-loop Nested-Action IF Nested-Action is not complete...", and the only contributor was "Doridian" (talk))
  • 06:42, 19 March 2024 Doridian talk contribs created page URLENCODE (Created page with "''string'' '''URLENCODE'''(''string'' message) Returns the given string URL encoded. == Parameters == ''message'' String to URL encode. == Example == <pre>$i = "a b" $i = URLENCODE($i) SAY $i // Prints "a+b"</pre>")
  • 06:09, 19 March 2024 Doridian talk contribs created page SERVERTOKEN (Created page with "''string'' '''SERVERTOKEN'''() Get a short lived server verification token == Example == Creates a server token and sends it to a remote server for validation <pre> $token = SERVERTOKEN() WAIT FOR $token $token = URLEncode($token) $data = DOWNLOAD(https://www.example.com/?dsouser=$token) WAIT FOR $data SAY $data</pre> == Validation == The token is a JWT standard token signed with the RS256 algorithm. The public can to verify the token can be found here: https://da...")
  • 06:22, 18 March 2024 Doridian talk contribs created page Remote function (Created page with "Remote functions are functions that have to connect to an internet server, to send and/or receive data, before returning a value. To wait for the function to finish connecting and return the value properly, you must use the WAIT FOR function. <pre> WAIT FOR $var</pre> For example: <pre> $ip = 102.142.61.88 $var = ping($ip) WAIT FOR $var //continue...</pre> The variable contains the value "[loading]" while waiting...")
  • 06:21, 18 March 2024 Doridian talk contribs created page REGISTER (Created page with "== Syntax == <pre>REGISTER [name].[tld]</pre> == Parameters == '''[name]''' Desired name for your website. '''[tld]''' Top-level domain. Examples: ''.com'', ''.net'', ''.dsn'' == Example == <pre>REGISTER google.com</pre> == Prices == The current prices are displayed at the COMM window. Current prices are: {| class="wikitable" |- ! TLD ! Price |- | .com | $120 |- | .net | $80 |- | .org | $80 |- | .edu | $299 |- | .mil | $1499 |- | .gov | $1499 |- | .dsn | $12999 |}")
  • 06:19, 18 March 2024 Doridian talk contribs created page RUN (Created page with "'''RUN''' ''filename'' Runs the specified file as a script. The script can also be ran by simply typing its filename into the console. == Parameters == ''filename'' The file to run.<br /> '''NOTE:''' RUN executes a file as if it were a script, so a file ''must'' be a script in order to run correctly. If you wish to simply view the contents of a file in the console, use CAT instead. == Example == Run the script "test.ds" <pre>RUN test.ds</pre>")
  • 06:18, 18 March 2024 Doridian talk contribs created page SAYLINE (Created page with "== Usage == SAYLINE ''string'' == Parameters == ''string'' - the string or other data to print == Example == The following code: <pre>SAY "Hello" SAY "Howdy" SAYLINE "GoodBye"</pre> Produces the following output: <pre>Hello GoodBye</pre> == Other Notes == SAYLINE will also replace itself, so you can use SAYLINE repeatedly to change the last line of text displayed in the console. '''Warning:''' Certain functions/commands can stop...")
  • 06:17, 18 March 2024 Doridian talk contribs created page SAY (Created page with "'''SAY''' {''[optional] text formatting codes''} ''any value'' Outputs what ever comes after the SAY command to the console == Parameters == ''any value'' - this can be an ''int'', a ''string'', or anything else. ''text formatting codes'' - optional codes that change the text color, font, and size. Note that the smallest fontsize you can use 8 and the largest is 144 == Example == Displays "Hello world" in the console. <pre>SAY Hello world.</pre>")
  • 06:16, 18 March 2024 Doridian talk contribs created page SAYCOMM (Created page with "'''SAYCOMM''' ''any value'' Outputs what ever comes after the SAYCOMM command to the comm == Parameters == ''any value'' - this can be an ''int'', a ''string'', or anything else. == Example == Displays "Hello world" in the comm. <pre>SAYCOMM Hello world.</pre>")
  • 06:16, 18 March 2024 Doridian talk contribs created page TIME (Created page with "Displays the current system time. Requires no parameters.")
  • 06:15, 18 March 2024 Doridian talk contribs deleted page REGISTER (content was: "Use to enter your username to login with. Used in conjunction with '''PASSWORD'''. <pre>USERNAME [your username goes here]</pre>", and the only contributor was "Doridian" (talk))
  • 06:15, 18 March 2024 Doridian talk contribs created page USERNAME (Created page with "Use to enter your username to login with. Used in conjunction with '''PASSWORD'''. <pre>USERNAME [your username goes here]</pre>")
  • 06:15, 18 March 2024 Doridian talk contribs created page REGISTER (Created page with "Use to enter your username to login with. Used in conjunction with '''PASSWORD'''. <pre>USERNAME [your username goes here]</pre>")
  • 06:11, 18 March 2024 Doridian talk contribs created page Port Scanner (Created page with "This script scans a server to check all ports for open or closed status. == Script == <pre>// scanner.ds domain/ip start_port end_port // $1 = domain/ip // $2 = start_port // $3 = end_port IF $2 = "" $2 = 1 ENDIF IF $3 = "" $3 = 65536 ENDIF $domain = GETDOMAIN($1) $ip = GETIP($1) WAIT FOR $domain, $ip SAY Domain : $domain SAY IP Address : $ip SAY SAY Scanning... FOR $curPort = $2 to $3 $ping = PINGPORT($1, $curPort) WAIT FOR $ping...")
  • 06:10, 18 March 2024 Doridian talk contribs created page PINGPORT (Created page with "''int'' '''PINGPORT'''(''string'' server, ''int'' port) Pings the specified port on the specified server, returning 0 when there is no script running on the port, or 1 when there is. == Parameters == ''server'' The server where the request will be sent. Can be an IP address or domain name.<br /> ''port'' The port to ping. == Example == Check if the site that is given has this port open. <pre>$v = PINGPORT(1.1.1.1, 80) WAIT FOR $v SAY Response : $v on IP 1.1.1.1 P...")
  • 06:09, 18 March 2024 Doridian talk contribs created page PING (Created page with "''int'' '''PING'''(''string'' server) Pings the specified server, returning 0 if the server doesn't exist and 1 if it does. == Parameters == ''server'' The server to ping. Can be an IP address or domain name. == Example == Check if the site that is given exists. <pre>$v = PING(1.1.1.1) WAIT FOR $v SAY Response : $v on IP 1.1.1.1</pre>")
  • 06:08, 18 March 2024 Doridian talk contribs created page PASSWORD (Created page with "Use to enter your password to login with. Used in conjunction with '''USERNAME'''. <pre>PASSWORD [your password goes here]</pre>")
  • 06:07, 18 March 2024 Doridian talk contribs created page Nested loops (Created page with "=== The nested loops trick === == Intro == Nested loops in Dark Signs Online is currently impossible as just a FOR loop, if you put a FOR inside one other FOR, it wont work, it will ignore the outer FOR condition There is only one discovered way to get around this. == Code == <pre> @loop Action @nested-loop Nested-Action IF Nested-Action is not complete GOTO nested-loop ENDIF IF Action is not complete GOTO loop ENDIF</pre> <br />...")
  • 06:06, 18 March 2024 Doridian talk contribs created page MYDOMAINS (Created page with "Lists the domains you currently own. Requires no parameters.")
  • 06:06, 18 March 2024 Doridian talk contribs created page MUSIC (Created page with "'''MUSIC''' ''command'' Controls the music playing. == Parameters == ''command'' this can be one of: OFF, ON, NEXT, PREV == Usage == Go to the next track <pre>MUSIC NEXT</pre> Turn off the music <pre>MUSIC OFF</pre>")
  • 06:05, 18 March 2024 Doridian talk contribs created page MD (Created page with "MD <Directory name> Creates a directory named <directory name> in your current directory.")
  • 06:04, 18 March 2024 Doridian talk contribs created page LOOKUP (Created page with "LOOKUP <ip or domain name> Displays info about the <ip or domain name> in the status window.")
  • 06:03, 18 March 2024 Doridian talk contribs created page LOGOUT (Created page with "LOGOUT logs you off the DSO network. You have to run this before changing username and password if you are already logged in.")
  • 06:02, 18 March 2024 Doridian talk contribs created page LOGIN (Created page with "Logs in to the DSO network, but only if '''USERNAME''' and '''PASSWORD''' is set. No parameters needed.")
  • 06:00, 18 March 2024 Doridian talk contribs created page LISTKEYS (Created page with "Display the available shortcut keys and their actions in the console. Requires no parameters. '''Output:''' <pre> Dark Signs Keyboard Actions Page Up: Scroll the console up. Page Down: Scroll the console down. Shift + Page Up: Decrease size of the COMM. Shift + Page Down: Increase size of the COMM. F11: Toggle maximum console display. </pre>")
  • 05:59, 18 March 2024 Doridian talk contribs created page LISTCOLORS (Created page with "Lists the color codes in the console. Requires no parameters.")
  • 05:58, 18 March 2024 Doridian talk contribs created page LINEUP (Not)
  • 05:57, 18 March 2024 Doridian talk contribs created page LCASE (Created page with "''string'' '''LCASE'''(''string'' message) Returns the given string in lowercase. == Parameters == ''message'' String to put in lowercase. == Example == Sample input, now it wont matter if the user inputs '''y''' instead of '''Y''' <pre>$i = INPUT(Register Y/N?) $i = LCASE($i) IF $i = y THEN //Do something.</pre>")
  • 05:56, 18 March 2024 Doridian talk contribs created page IPFinder (Created page with "This script searches all IPs and PINGs them to build a list of open or closed IPs (Currently in version 2) == Script == <pre>$q=0 $w=0 $e=0 $r=0 $ip=$q.$w.$e.$r @IPLOOP IF $r > 255 $r=0 $e=$e+1 $ip=$q.$w.$e.$r SAY $ip ENDIF IF $e > 255 $e=0 $w=$w+1 $ip=$q.$w.$e.$r SAY $ip ENDIF IF $w > 255 $w=0 $q=$q+1 $ip=$q.$w.$e.$r SAY $ip ENDIF $r=$r+1 $ip=$q.$w.$e.$r IF PING($ip) = 1 Say $IP OPEN ENDIF IF $q < 256...")
  • 05:55, 18 March 2024 Doridian talk contribs created page INPUT (Created page with "''string'' '''INPUT'''(''string'' message) Get input from the user. Returns the given string. == Parameters == ''message'' This will be printed before the cursor. == Example == Sample menu script, using INPUT. <pre>SAY " [0] Item 1" SAY " [1] Item 2" SAY " [2] Quit" $in = INPUT(Make your choice) IF $in = 0 THEN SAY Item 1 ELSE IF $in = 1 THEN SAY item 2 ELSE IF $in = 2 THEN SAY Bye! EXIT ELSE SAY Invalid input! END IF</pre>")
  • 05:54, 18 March 2024 Doridian talk contribs created page How to create a nick (Created page with "Upon entering the chat you will find DSO_$username_RandomNumber is you. This is because you have yet to register a nickname. Type <pre> /nick DSO_<username></pre> You should see that the name has not yet been registered Type <pre> /msg nickserv register <your-password></pre> It is a good idea to register the DSO_<username> to use for your primary nick Now, let's set your email. Type <pre> /msg nickserv set hide email on </pre> Then <pre> /msg ni...")
  • 05:51, 18 March 2024 Doridian talk contribs created page Help:Contents (Created page with "For help with DarkSigns Online, please refer to the forum. * https://darksignsonline.com/forum/")
  • 05:50, 18 March 2024 Doridian talk contribs created page Global variables (Created page with "Global variables are variables set in DarkSigns Online which can not have any other value assigned to them. == User Specific Variables == <code> '''$time''' Contains string of local time. '''$date''' Contains string of local date. '''$now''' Contains string of local date and time. '''$username''' Username of the current user. '''$dir''' The current directory of the current user. </code> == Server Specific Variable == <code> '''$serverdomain''' The current server...")
  • 05:45, 18 March 2024 Doridian talk contribs created page GETIP (Created page with "GETIP <Domain name> Retrieves the ip of <Domain Name>")
  • 05:45, 18 March 2024 Doridian talk contribs created page GETDOMAIN (Created page with "GETDOMAIN <ip address> Gets the domain name of <ip address>")
  • 05:42, 18 March 2024 Doridian talk contribs created page Functions List (Created page with "The following functions are available in DarkSigns Online: == String Functions == <code> '''ASC''' Get the ASCII value of the specified text character '''CHR''' Get the character of the given ASCII value '''FIXQUOTES''' Return the string with double quotes like " all replaced with single quotes. '''GETKEY''' Retruns the key value of the next key pressed. '''GETASCII''' Returns the ascii value of the next ke...")
  • 05:35, 18 March 2024 Doridian talk contribs created page EDIT (Created page with "Edits (and creates if file doesn't exist) a file. <pre>EDIT bah.ds</pre>")
  • 05:34, 18 March 2024 Doridian talk contribs created page DSO User Manual (Created page with "== Welcome to the Dark Signs Online ''officially'' Unofficial Users Manual for Beta Stages of DSO. == '''Current Edition is for 0.80.1''' Composed by Toni. First of all in case you missed this on the front page: Dark Signs Online is the new improved, online multi-player version of Dark Signs, allowing people to own their own domains, share missions instantly, and hack other users. Dark Signs Online includes major enhancements to the script language, which to many new...")
  • 05:31, 18 March 2024 Doridian talk contribs created page DOWNLOAD (Created page with "''string'' '''DOWNLOAD'''(''string'' url) Gets a real website, and returns the HTML content. == Parameters == ''url'' The web adress to visit. == Example == Get the contents of google.com <pre>$i = DOWNLOAD(https://www.google.com) WAIT FOR $i SAY $i</pre>")
  • 05:30, 18 March 2024 Doridian talk contribs created page DISPLAY (Created page with "<pre>DISPLAY <Filename> <optional startline> <optional maxline></pre> == Examples == <code>DISPLAY somefile.txt 1 5</code> displays '''somefile.txt''' lines '''1''' through '''5'''")
  • 05:28, 18 March 2024 Doridian talk contribs created page DIR (Created page with "'''DIR''' (''string'' optional-filter) Displays the files and folders in the directory you are currently in. == Parameters == DIR has no mandatory parameters. However, an optional keyword (''optional-filter'') can be provided that makes DIR display only the files and folders in the current directory that contain that keyword in their names. == Example == Display the files and folders that have the word "server" in them. <pre>DIR server</pre>")
  • 05:27, 18 March 2024 Doridian talk contribs created page DEL (Created page with "<pre>DEL <Filename></pre> deletes <Filename>")
  • 05:26, 18 March 2024 Doridian talk contribs created page DATE (Created page with "Display the current system date. Requires no paramaters.")
  • 05:25, 18 March 2024 Doridian talk contribs created page COPY (Created page with "<pre>COPY source-file destinatin-file</pre> Example #1: <pre>COPY myoldfile.ds mynewfile.ds</pre> Example #2: <pre>COPY /home/myoldfile.ds /home/dir2/mynewfile.ds</pre>")
  • 05:25, 18 March 2024 Doridian talk contribs created page CONNECT (Created page with "<pre>CONNECT [server] [port] [optional-paramaters]</pre> Connect to a server domain name or IP address on the specified port. If no port number is specified, the default port number is 80. You must specify the port number if you are including optional paramaters. <pre>CONNECT mySite.org 80 qwertywert</pre> Connects to mySite.org on port 80, and passes paramater $1 with a string "qwertywert"")
  • 05:14, 18 March 2024 Doridian talk contribs created page CLOSEPORT (Created page with "Closes an unneeded port on a server <pre>CLOSEPORT <Server> <Port></pre>")
  • 04:56, 18 March 2024 Doridian talk contribs created page CLEAR (Created page with "Clears the console screen. Takes no paramaters. Can be shortened to <code>CLS</code> which stands for clear screen")
  • 04:55, 18 March 2024 Doridian talk contribs created page CHR (Created page with "''char'' '''CHR'''(''integer'' ASCII_value) Gets a character from an ASCII value. == Parameters == ''ASCII_value'' This is the ASCII code that specifies the return character. == Example == A way to get rid of newlines in a string. <pre>$newline=chr(13)chr(10) $dir=run(ls) $dir=replace("$dir","$newline","") SAY $dir</pre>")
  • 04:54, 18 March 2024 Doridian talk contribs created page CHATVIEW (Created page with "CHATVIEW [on|off] If CHATVIEW is on it displays chat in status window")
  • 04:54, 18 March 2024 Doridian talk contribs created page CHATSEND (Created page with "CHATSEND <message to the chat> A simple way of sending messages to the chat from your console.")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)