Advertisement
Guest User

changelog

a guest
Jan 9th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.38 KB | None | 0 0
  1. --[[
  2.  
  3. New stuff added (removed from) to Zanqual v0.3:
  4.  
  5.  
  6. + added shortcut-functions:
  7.  
  8.     none
  9.  
  10. + added new functions:
  11.  
  12.     rednet.openAll() - Does what the name says, and returns the number of the opened modems.
  13.     rednet.closeAll() - Does what the name says, and returns the number of the closed modems.
  14.     colors.random() - Returns any random color. Advanced PCs returns their colors, and normal only black and white colors.
  15.     colors.getTable() - Returns all aviable colors.
  16.     textutils.delayPrint(text,delay) - Prints the characters in any delay value. Ends with "\n"
  17.     textutils.delayWrite(text,delay) - Does the same but doesn't write "\n"
  18.     fs.write(path,text) - Writes text into the given path.
  19.     fs.writeFromTable(path,table) - Does the same but writes from a table.
  20.     fs.append(path,text) - Writes text into the given path WITHOUT reseting path.
  21.     fs.getLine(path,line) - Returns the line from the given path.
  22.     fs.getTable(path) - Returns ALL lines from given path as a table.
  23.     fs.getString(path) - Returns ALL lines from given path as a string.
  24.     fs.replaceLine(path,line,text) - Replaces the text at the line in the given path.
  25.  
  26. + modified functions:
  27.  
  28.     none
  29.    
  30. ~ changed stuff:
  31.  
  32.     MANY stuff got added.
  33.     Fixed tostring-table-extractor:
  34.         now you'll have 1 space between each table value
  35.  
  36. - removed
  37.    
  38.     nothing
  39.        
  40. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement