• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Special Characters

  • Thread starter Thread starter aetherknight at yahoo.co.
  • Start date Start date
A

aetherknight at yahoo.co.

Guest
Is it possible to use a 'special' character as a tag value?

I've got a tag called 'Damage', which can take a value of '#' on the
card. I'm currently transforming it to a 'X', but it'd be nice if I
could show what's actually on the card instead. I've tried the
numerical entity but it doesn't seem to be interested.

Any takers?

Steve.


------------------------ Yahoo! Groups Sponsor ---------------------~-->
Plan to Sell a Home?
http://us.click.yahoo.com/J2SnNA/y.lEAA/jd3IAA/WuQolB/TM
---------------------------------------------------------------------~->
 
--- Steve Ironside <aetherknight@yahoo.co.uk> wrote:
> Is it possible to use a 'special' character as a tag value?
>
> I've got a tag called 'Damage', which can take a value of '#' on the
> card. I'm currently transforming it to a 'X', but it'd be nice if I
> could show what's actually on the card instead. I've tried the
> numerical entity but it doesn't seem to be interested.

Here is an example from the l5r.def file:

<group id="force" name="Force" heading="For" width="8" alignment="center"
duplicates="yes" sequence="explicit">
<value id="dash" name="--" order="26"/>
<value id="splat" name="*" order="26"/>
<value id="psplat" name="+*" order="26"/>
<value id="neg5" name="-5" order="25"/>
<value id="neg4" name="-4" order="24"/>
<value id="neg3" name="-3" order="23"/>
<value id="neg2" name="-2" order="22"/>
<value id="neg1" name="-1" order="21"/>
...

You can make the tag anything you want, and by using the name="" field, you can
display it as it is supposed to be on the card.

So, you can do something like

<value id="hash" name="#"/>

and that will do what you need.


=====
---

Kuni Tetsu
Clan War rules guy
Moderator of ClanWar-l

__________________________________________________
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos & More
http://faith.yahoo.com

------------------------ Yahoo! Groups Sponsor ---------------------~-->
Plan to Sell a Home?
http://us.click.yahoo.com/J2SnNA/y.lEAA/jd3IAA/WuQolB/TM
---------------------------------------------------------------------~->
 
Exactly what I was looking for (and it even works in a dynamic group
I'd missed), thanks Kuni!


--- In cardvault@y..., Kuni Tetsu <kuni_tetsu@y...> wrote:
>
> --- Steve Ironside <aetherknight@y...> wrote:
> > Is it possible to use a 'special' character as a tag value?
> >
> > I've got a tag called 'Damage', which can take a value of '#' on
the
> > card. I'm currently transforming it to a 'X', but it'd be nice
if I
> > could show what's actually on the card instead. I've tried the
> > numerical entity but it doesn't seem to be interested.
>
> Here is an example from the l5r.def file:
>
> <group id="force" name="Force" heading="For" width="8"
alignment="center"
> duplicates="yes" sequence="explicit">
> <value id="dash" name="--" order="26"/>
> <value id="splat" name="*" order="26"/>
> <value id="psplat" name="+*" order="26"/>
> <value id="neg5" name="-5" order="25"/>
> <value id="neg4" name="-4" order="24"/>
> <value id="neg3" name="-3" order="23"/>
> <value id="neg2" name="-2" order="22"/>
> <value id="neg1" name="-1" order="21"/>
> ...
>
> You can make the tag anything you want, and by using the name=""
field, you can
> display it as it is supposed to be on the card.
>
> So, you can do something like
>
> <value id="hash" name="#"/>
>
> and that will do what you need.
>
>
> =====
> ---
>
> Kuni Tetsu
> Clan War rules guy
> Moderator of ClanWar-l
>
> __________________________________________________
> Do you Yahoo!?
> Faith Hill - Exclusive Performances, Videos & More
> http://faith.yahoo.com


------------------------ Yahoo! Groups Sponsor ---------------------~-->
Home Selling? Try Us!
http://us.click.yahoo.com/QrPZMC/iTmEAA/jd3IAA/WuQolB/TM
---------------------------------------------------------------------~->
 
Back
Top