skill/spell up list

Post Reply
eldarok
Posts: 7
Joined: Sat Feb 13, 2010 10:10 pm

skill/spell up list

Post by eldarok »

+--------------------------+---------+--------------------------+
| Spell/Skill | Expires| Modifies |
+--------------------------+---------+--------------------------+
| Sense life | 59 | |
| Detect invisibility | 6 | |
+---------------------------------------------------------------+

^| (\w) | (.d) | |


i am trying to match sense life and detect invisibility there is a lot more spells just useing these two for an example my trigger capture is whats wrong? the current trigger just grabs every line wanna store the name expires and save this info into a table... I need help with the capture and a example of putting information like this in a array/table

User avatar
Vadi
Posts: 5042
Joined: Sat Mar 14, 2009 3:13 pm

Re: skill/spell up list

Post by Vadi »

You want to put a \ before the | because | otherwise has a special meaning in perl.

So do:

\| instead of |

Post Reply