PFSRD:Nature Magic
Nature Magic
You are able to use simple spells by drawing on nature's raw majesty.
Prerequisite: Knowledge (nature) 1 rank.
Benefit: You gain know direction as a constant spell-like ability, and can choose another druid orison you can cast as a spell-like ability once per day. Your caster level for both of these spell-like abilities is equal to your character level.
Back to Main Page → Pathfinder Open Game Content → PFSRD → Feats
gollark: But you can also write a program to just directly run from a URL, like that one.
gollark: Yes.
gollark: If you want to run stuff downloaded from the interweb in a script then:```lualocal h = http.get "whatever URL"local x = h.readAll()h.close()local fn, err = load(x, "@thing")if not fn then error(err) endfn(...)```
gollark: You can actually just use `wget run [URL]` or something in the command prompt.
gollark: If you want to save it to a file then```lualocal h = http.get "whatever URL"local f = fs.open("whatever file", "w")f.write(h.readAll())h.close()```
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.