- Event type
- patch note
- Published
- 6 September 2017 - 22:18:10 UTC
- Source
- steam_community_announcements
Some big changes in this update. Most notably the ability to use .verbase scripts, which are a collection of .verbose scripts. A new folder userlib is now available to house all your script data. An example .verbase file has been added; detailed below. cd userlib/example/; add class woodenbox.adlclass; run buildbox.verbose; private script poison.verbose; local script soundtest.verbose; global script heal.verbose; To include a .verbase file in your project... include \filename.verbase i.e. include userlib\example2.verbase special commands for .verbase files. cd e.g. cd userlib/dungeon/; Required. Changes the current directory to whatever you set it to, to allow you to process scripts from different directories. private script e.g. private script poison.verbose; Creates a script only accessible by the player. Is not shared over multiplayer. local script e.g. local script portal.verbose; Cr...