So, with my horrid attempts to cannibalize coding and failing horridly.
Does anyone have a quick and dirty way to enemy a list of people for Nexus? Whether by following someones "MY ENEMIES ARE: <PERSON>, <PERSON2>, etc etc" or just by an alias where I can copy/paste that list and it somehow gets rid of the ", " in each one.
I'd be super happy and cough up 5cr if someone could make a functioning one (and possibly show me the steps to do something similar)
0
Comments
Can't help you with making the actual alias or triggers, though, since I've never really used the Nexus client.
EDIT: Changed the regular expression to split on so that it will match anything that's one or more non-letter characters (i.e. anything that's not A-Z or a-z), so you're not tied to a specific format for the list of names. More useful for an alias since you then don't have to type a comma, you can just separate each name by a space.
Results of disembowel testing | Knight limb counter | GMCP AB files
simple.
Hell, it gets the first target only, in all cases, even with numerous names. The text that I'm operating off of is
"My Enemies are: [Name1], [Name2], [Name3], etc..."
What'd be the trigger/way to go about getting multiple people at once with that?
"My Enemies are: (.+)\."$
Results of disembowel testing | Knight limb counter | GMCP AB files
It works now. Thank ya!