annotate orpg/templates/nodes/die_roller_notes.xml @ 248:1df5912db00c beta tip

Traipse Beta 'OpenRPG' {101205-00} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary (Closed) New Features: New to Map, can re-order Grid, Miniatures, and Whiteboard layer draw order New to Server GUI, can now clear log New Earthdawn Dieroller New IronClaw roller, sheet, and image New ShapeShifter PC Sheet Updates: Update to Warhammer PC Sheet. Rollers set as macros. Should work with little maintanence. Update to Browser Server window. Display rooms with ' " & cleaner Update to Server. Handles ' " & cleaner Update to Dieroller. Cleaner, more effecient expression system Update to Hidden Die plugin, allows for non standard dice rolls Update to location.py, allows for more portable references when starting Traipse Update to the Features node Fixes: Fix to InterParse that was causing an Infernal Loop with Namespace Internal Fix to XML data, removed old Minidom and switched to Element Tree Fix to Server that was causing eternal attempt to find a Server ID, in Register Rooms thread Fix to Server, removing wxPython dependencies where not needed Fix to metaservers.xml file not being created Fix to Single and Double quotes in Whiteboard text Fix to Background images not showing when using the Image Server Fix to Duplicate chat names appearing Fix to Server GUI's logging output Fix to FNB.COLORFUL_TABS bug Fix to Gametree for XSLT Sheets Fix to Gametree for locating gametree files Fix to Send to Chat from Gametree Fix to Gametree, renaming and remapping operates correctly Fix to aliaslib, prevents error caused when SafeHTML is sent None
author sirebral
date Sun, 05 Dec 2010 10:53:30 -0600
parents 0d9b746b5751
children
rev   line source
183
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
1 <nodehandler class="tabber_handler" frame="987,495,14,101" icon="tabber" map="" module="containers" name="Die Roller Notes" version="1.0">
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
2 <nodehandler class="textctrl_handler" icon="note" map="Die Roller Notes" module="forms" name="Basics" version="1.0">
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
3 <text multiline="1" send_button="1">The new dieroller is design with expansion in mind. While there are a number of new dieroller options in the base roller, the new design facilitates the building of new rollers that can be loaded at any time. In this test build three are 3 rollers: std, d20, and wod. The std roller is the generic roller. It has generic dice options and is the base for all other dierollers. The d20 and wod rollers are game specific rollers and have game specific options. They also serve as examples for how to create your own rollers in python.
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
4
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
5 ** Please not that this is our initial release of the roller. The new syntax might see odd to you. We are considering an alternative syntax, and this is being discussed on the openrpg.com forums. In if you have strong opinions on this, you might want to hop over there and give your 2 cents. **
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
6
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
7 Dierollers:
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
8 You can see what roller you are using by using the "/dieroller" command in chat. By default it should be "std". To set the die roller, use "/dieroller roller_name". So to load the d20 roller, type "/dieroller d20". Its easy!
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
9
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
10 Basic Syntax.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
11 The basic syntax is the same, 3d6+3, rolls three six side dice plus 3. However, the new roller has other options, they look like this:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
12
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
13 3d6.option(value)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
14
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
15 If you know anything about programming, that probably looks familiar. For average users, this might look a little confusing, but lets look at a real example.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
16
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
17 [10d6.takeLowest(2)]
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
18
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
19 Now this option rolls 10d6 and takes the lowest two rolls. Basically, to use an option, you have put a . + the option name + the values for the option between ( ). You can also chain many options together.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
20
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
21 [10d10.minroll(4).takeLowest(5)]
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
22
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
23 This example rolls 10d10 with a minimum roll of 4 and takes the lowest 5. Pretty nifty if I do say so myself.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
24 </text>
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
25 </nodehandler>
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
26 <nodehandler class="textctrl_handler" icon="note" map="Die Roller Notes" module="forms" name="STD rollers" version="1.0">
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
27 <text multiline="1" send_button="1">Now that you know how to roll dice, lets look at the standard options.
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
28
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
29 takeHighest - take highest X rolls
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
30
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
31 [10d10.takeHighest(4)] - takes highest 4
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
32
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
33 takeLowest - take lowest x rolls
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
34
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
35 [10d10.takeLowest(4) - take lowest 4
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
36
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
37 minroll - minimum low range
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
38
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
39 [10d10.minroll(4)] - no die roll lower than 4
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
40
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
41 extra - roll an extra die when roll greater or equal to X
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
42
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
43 [10d10.extra(9)] - roll an extra die when a die roll is 9 or higher.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
44
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
45 open - same as extra but roll extra dice until a die is not greater or equal to X (even the extra roll).
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
46
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
47 [10d10.open(9)] - roll extra dice until a die roll is not 9 or higher.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
48
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
49 each - apply X value to all dice
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
50
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
51 [10d10.each(2)] - add 2 to every die roll
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
52 </text>
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
53 </nodehandler>
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
54 <nodehandler class="textctrl_handler" frame="400,400,0,48" icon="note" map="Die Roller Notes" module="forms" name="7th Sea" version="1.0">
183
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
55 <text multiline="1" send_button="1">Remember, to use the 7th Sea roller type: "/dieroller 7sea"
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
56
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
57 The 7th Sea roller includes a truncated version that allows you to roll quickly.
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
58
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
59 [7k3] = [3d10.takeHighest(3).open(10)]
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
60 </text>
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
61 </nodehandler><nodehandler class="textctrl_handler" icon="note" map="Die Roller Notes" module="forms" name="d20 roller" version="1.0">
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
62 <text multiline="1" send_button="1">Remember, to use the d20 roller type: "/dieroller d20"
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
63
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
64 dc(DC,mod) - make a DC check.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
65
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
66 [1d20.dc(20,5)] - make a DC check against DC value of 20 and a modifier of +5.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
67
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
68 attack(AC,mod,critical) - make an attack roll.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
69
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
70 [1d20.attack(20,5,19) - make an attack roll against AC 20 with a modifier of +5 and a critical range of 19-20.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
71 </text>
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
72 </nodehandler>
172
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
73 <nodehandler class="textctrl_handler" icon="note" map="Die Roller Notes" module="forms" name="WoD roller" version="1.0">
183
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
74 <text multiline="1" send_button="1">Remember, to use the WoD roller type: "/dieroller wod"
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
75
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
76 vs(target) - vs roll against target
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
77
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
78 [3d10.vs(5)] - vs roll against 5.
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
79
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
80 The wod roller also has a shortend version in Traipse.
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
81 [3v5] = [3d10.vs(5)]</text>
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
82 </nodehandler>
172
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
83 <nodehandler class="textctrl_handler" icon="note" map="Die Roller Notes" module="forms" name="Alternity Roller" version="1.0">
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
84 <text multiline="1" send_button="1">Remember, to use the mythos roller type: "/dieroller alternity"
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
85
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
86 The alternity roller is a roller designed by community members. The roller has two syntax methods for skill and attack.
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
87
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
88 Skill:
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
89 [1d20.sk(1, 0)]
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
90
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
91 Attack:
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
92 [1d20.at(2, 1, (1d6, 's'), (2d6, 'w'), (1d8, 'm')]
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
93
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
94 You can use the attack syntax and roll your attack as well as damage for an Ordinary success, a Good success, and a Criticial success.
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
95
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
96 The letters in the die rolls indicate what type of damage is dealt.
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
97 's' = Stun
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
98 'w' = Wound
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
99 'm' = Mortal</text>
8834425a85b0 Traipse Beta 'OpenRPG' {091210-01}
sirebral
parents: 165
diff changeset
100 </nodehandler><nodehandler class="textctrl_handler" icon="note" map="Die Roller Notes" module="forms" name="Mythos roller" version="1.0">
183
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
101 <text multiline="1" send_button="1">Remember, to use the Mythos roller type: "/dieroller mythos"
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
102
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
103 The mythos roller is a roller designed by community request. The roller uses a new style of versus similar to the wod roller.
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
104
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
105 The difference is in the target. If the roller rolls [3d12.vs(2)], then the software looks for numerals of 2.
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
106
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
107 Targets:
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
108 2 = [2, 4, 6, 8, 10, 12]
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
109 3 = [3, 6, 9, 12]
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
110 4 = [4, 8, 12]
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
111 6 = [6, 12]
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
112
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
113 vs(target) - vs roll against target
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
114
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
115 [3d12.vs(6)] - vs roll against 6, 12.
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
116
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
117 The mythos roller also works with the new shortened vs. roll
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
118
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
119 [3v3] = [3d12.vs(3)] - vs roll against 3, 6, 9, 12</text>
183
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
120 </nodehandler><nodehandler class="textctrl_handler" frame="400,400,308,51" icon="note" map="Die Roller Notes" module="forms" name="Warhammer FRPG" version="1.0">
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
121 <text multiline="1" send_button="0">Remember, to use the Warhammer FRPG roller type: "/dieroller wfrpg"
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
122
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
123 *Special thanks goes to Puu-san who purchase a support ticket for this awesome die roller. Be sure and thank Puu-san.*
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
124
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
125 The Warhammer FRPG die roller is the first of it's kind and is used when playing the Warhammer Fantasy Role-Playing Game. Unlike standard dice the WFRPG roller has pictures on it's facets. When rolling the WFRPG die, you will return text that corrosponds to the facet one the die.
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
126
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
127 Die Types &amp; Syntax:
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
128
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
129 Below you will see the die types and how to roll 1 of each die type.
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
130
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
131 Reckless: [1rec]
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
132 Conservative: [1con]
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
133 Characteristic: [1cha]
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
134 Challenge: [1chr]
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
135 Fortune: [1for]
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
136 Mistfortune: [1mis]
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
137 Expertise: [1exp]</text>
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
138 </nodehandler><nodehandler class="textctrl_handler" frame="400,400,308,51" icon="note" map="Die Roller Notes" module="forms" name="Hero Roller" version="1.0">
183
0d9b746b5751 Traipse Beta 'OpenRPG' {100115-00}
sirebral
parents: 172
diff changeset
139 <text multiline="1" send_button="0">Remember, to use the Hero roller type: "/dieroller hero"
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
140
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
141 Skill Roller, example [3d6.sk(11,0)]
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
142 Make a SKill roll. The first number of the two modifiers is the rating in the skill, 11 meaning 11 or less. The second number is any penalty or bonus you have for the roll. A positive number is a bonus, a negative number is a penalty. As with many Hero system rolls, the only die choice that makes sense is 3d6
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
143
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
144 To-hit roller, example [3d6.cv(5,1)]
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
145 Make a to-hit roll. The first modifier is your Combat Value. The second number is any penalty or bonus you have for the roll. A bonus is positive, and a penalty is negative. Again, the only roll that is sensible is 3d6. The result of the roll is the the highest Defensive Combat Value that can be hit with that roll.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
146
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
147 Killing damage roller, example [(1d6+1d6/2).k(0)]
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
148 Make a damage roll for Killing damage. The only modifier is the bonus to the stun multiplier. A 1 in that field would indicate an increased stun multiplier of +1. The result shows body and stun totals. Only sensible for d6 values.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
149
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
150 Normal damage roller, example [(5d6+1d6/2).n()]
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
151 Make a damage roll for Normal damage. Results show body and stun totals. No modifiers exist. Only sensible for d6 values.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
152
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
153 Hit Location roller, example [3d6.hl()]
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
154 Roll on the hit location chart. Results show the location hit (including left or right side) and multipliers to damage when hitting that location. No modifiers exist. Contributed by Heroman
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
155
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
156 Basic Killing damage roller, example [2d6.hk()]
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
157 Make a damage roll for Killing damage. Always uses a stun multiplier of 1 for ease of use with the Hit Location roller mentioned above. No modifiers exist. Contributed by Heroman
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
158 </text>
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
159 </nodehandler>
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
160 <nodehandler class="textctrl_handler" icon="note" map="Die Roller Notes" module="forms" name="? Option" version="1.0">
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
161 <text multiline="1" send_button="1">Another new feature is the ? option. If you place a ? in a dice string you will be prompt by a dialog for the value. This is useful when using die rolls in character sheets. From example:
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
162
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
163 [3d6+?] - will ask you for a value to replace ?.
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
164
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
165 The Hint System:
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
166 You can add a hint to your ? Option by adding a label after ?
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
167 [3d6+?StrMod] will ask you for a value to replace ? and give you the Hint that it should be your StrMod. This Hint system can be used for as many ? as you have in your roll
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
168
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
169 The Stop Break:
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
170 The '}' character is a stop break that tells the Hint system to stop looking for Alpha characters.
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
171
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
172 Example: [?NumDice}d6+?StrMod+?Weapon Bonus+?Misc Bonus]
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
173
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
174 If you notice the '}' after NumDice, that tells the Hint system to stop looking for Alpha character, otherwise it would try to include the d in it's hint.
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
175
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
176 A more game specific example might look like this (using the d20 roller):
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
177
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
178 [1d20.dc(?DC,5)] - this will prompted you for the ? value, which is the DC.</text>
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
179 </nodehandler>
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
180 <nodehandler class="textctrl_handler" icon="note" map="Die Roller Notes" module="forms" name="The End" version="1.0">
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
181 <text multiline="1" send_button="1">Well, that's all I have to say about the new roller. More options and game specific rollers on the way. If you're interested in coding a roller for your favorite game, drop by the dev server and we'll try and help you out.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
182
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
183 -Chris Davis
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
184 </text>
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
185 </nodehandler>
165
e4a803df4c88 Traipse Beta 'OpenRPG' {091203-00}
sirebral
parents: 0
diff changeset
186 </nodehandler>