Thats good to know. I figure we can also speak with the local Order chapter ina given city to see if they have anything they are looking for or any items they need help with.
Printable View
So when are we playing again? I can do this coming Sunday from 9am to 1pm West cost time.
Maybe even 2pm depending on what i get done Saturday.
That sounds fine with me. We got on today and messed around with the macros. The macro engine is very robust.
Any good tips? CAN you post yoru macro file?
I have my basic rolls macro-ed, but I think i will make a macro for each power I have, complete with descriptions and flavor text! If the game supports conditional statements, i can probably code some humorous effects depending on the roll and then use that to call sub macros.
Any one know where I can find a manual for the maptool macro editor?
http://www.lmwcs.com/rptools/wiki/Main_Page
Ashen had a great template, but I don't have it handy right now.
It does support conditional statements, and much more. It is very robust. A current example I am using is this:
I also found it very handy to group the macros (at-will, encounter, daily, skills, etc.)Code:[h:Prof = 3]
[h:StrMod = 4]
[h:WisMod = 2]
<table border="0">
<tr bgcolor="#5A8E63">
<table width="100%">
<tr>
<td style="padding:0px 5px;">
<span style="color:white"><b>Marauder's Rush</b></font>
</td>
<td style="padding:0px 5px;" align=right>
<span style="color:white">at-will</font>
</td>
</tr>
</table>
</tr>
<tr>
<td>
Ashen charges in with full force!<br>
<b>Standard Action</b><br>
<b>Target</b>: [r:target]<br>
<b>Attack #1</b>: [1d20+StrMod+Prof]<br>
<b>Damage #1</b>: [1d10+StrMod+WisMod]<br>
<b>Special</b>: When charging, you can use this power in place of a melee basic attack.
</td>
</tr>
</table>
Cool....I'll have to play around with this when I get home.
is there any way to link macros to a particular load option. I guess, a list I can maintain and load up when I play my character. I'm not sure if macro's under impersonate carry over or where they are stored long term.
A quick word on macros - after messing with them today I intend on adding some new token properties to the campaign that will make macroing much easier. These new properties will be:
maxHP - Your max HP
strMod - Your Strength modifier
dexMod - Your Dexterity modifier
intMod - Your Intelligence modifier
wisMod - Your Wisdom modifier
chaMod - Your Charisma modifier
Perception
Stealth
History
etc...
If you can think of any other variables you could use hardcoded to your token, let me know and I'll set it up. I also created a quick, easy damage macro and a heal macro based on a template provided by Urchin.
Code:<!-- Ask the user for input.
[DmgValue = DamageTaken]
Calculate the new value and the correct word to use.
[NewHP = min(maxHP, max(-20, HP - DmgValue))]
[Word = if(DmgValue >= 0, "drop", "rise")]
-->
{DmgValue} points of damage are taken.
<br>Hit points {Word} to {HP = NewHP}/{maxHP}.
When I get the chance, I'll mess with it some more so it can detect when you are bloodied and automatically assign the correct state.Code:<!-- Ask the user for input.
[DmgValue = DamageTaken]
Calculate the new value and the correct word to use.
[NewHP = min(maxHP, max(-20, HP + DmgValue))]
[Word = if(DmgValue >= 0, "rise", "drop")]
-->
{DmgValue} points of HP are healed.
<br>Hit points {Word} to {HP = NewHP}/{maxHP}.
Also, I am aware that there are entire 4e frameworks available for download that you can implement but I'm weird and I don't like relying on other people's code. I'm much more comfortable working with my own stuff because I know how it's written and I know it's not going to do any mysterious things. If you don't feel the same way, check out the MapTools forums and you'll find a bunch of macros you can import for your characters! ;)
Yeah I figured that in our last game...but what happens to the macros once the session is over. The campaign is something I logged into and not something saved on my computer. The tokens reside on the host pc and not my own.
Are the macros still saved in a separate file on my PC, or were they just temp. for that session?
I also found some functions that can be used for pulling properties straight from selected tokens. I'm adding them to my macros for quick and easy calculation. You can check them out in my macro list which I'll keep on dropbox.