Better loading of the tables
This commit is contained in:
parent
7221cb5627
commit
69081ab0ba
2 changed files with 4 additions and 2 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
kannan.org
|
||||||
|
tables/captiva*.org
|
|
@ -229,7 +229,7 @@ Assuming we have a new character, let's query the user for all of these stats, a
|
||||||
(setq name (rpgdm-tables-choose "names-ironlander")))
|
(setq name (rpgdm-tables-choose "names-ironlander")))
|
||||||
(goto-char (point-max))
|
(goto-char (point-max))
|
||||||
(insert "# Local Variables:
|
(insert "# Local Variables:
|
||||||
# eval: (progn (require 'rpgdm-ironsworn) (rpgdm-mode) (rpgdm-tables-load (concat rpgdm-ironsworn-project \"tables\")))
|
# eval: (progn (require 'rpgdm-ironsworn) (rpgdm-mode))
|
||||||
# End:
|
# End:
|
||||||
")
|
")
|
||||||
(insert (format frmt name))
|
(insert (format frmt name))
|
||||||
|
@ -674,7 +674,7 @@ Let's make sure these function work as we expect:
|
||||||
Shawn Tompkin has created some useful oracles (random tables) to consult. I'm breaking my own [[https://gitlab.com/howardabrams/emacs-rpgdm][rpgdm project]] convention, and having this code automatically load those tables.
|
Shawn Tompkin has created some useful oracles (random tables) to consult. I'm breaking my own [[https://gitlab.com/howardabrams/emacs-rpgdm][rpgdm project]] convention, and having this code automatically load those tables.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(rpgdm-tables-load "ironsworn")
|
(rpgdm-tables-load (concat rpgdm-ironsworn-project "tables"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
He designed many of the tables to work together, for instance, you should roll on both the [[file:tables/actions.org][actions]] and [[file:tables/themes.org][themes]] and combine the result to kick-start your ideas.
|
He designed many of the tables to work together, for instance, you should roll on both the [[file:tables/actions.org][actions]] and [[file:tables/themes.org][themes]] and combine the result to kick-start your ideas.
|
||||||
|
|
Loading…
Reference in a new issue