PDA

View Full Version : Ruleset list for extention



Xarxus
January 4th, 2021, 21:12
Hi, is there a way to register an extension to be usable by every ruleset?
With this code I'm defining a dependecy to CoreRPG and I know I can add more and more.
But what if I'd lik to add all?


...
<ruleset>
<name>CoreRPG</name>
</ruleset>
...

Zacchaeus
January 4th, 2021, 21:16
Yes, you can put all in name.

Xarxus
January 4th, 2021, 22:01
In this way?


...
<ruleset>
<name>All</name>
</ruleset>
...

I tried, but it's not avaiable.

Talyn
January 4th, 2021, 22:08
You can do one of two things:


<ruleset>Any</ruleset> (capital 'A' for Any)



<ruleset>
<name>Any</name>
</ruleset>


Also works but it's more typing :)


or simply omit the <ruleset> tag altogether to accomplish the same end-effect.

Zacchaeus
January 4th, 2021, 22:18
Oops, yes it’s any not all. My bad. (I knew I should have looked it up since I wasn’t sure about the capitalisation).

Xarxus
January 4th, 2021, 22:39
Ty both, it goes! :D