I'm having trouble with using wild cards in this specific instance of entering a room with 1 mobile vs entering with 2+. A coma gets added if there is more than 1 and it messes up my script.
This is with 1 mobile in it.
Also here: a beastly fido
So my trigger is just:
But it won't work if there are more than 1 mobile in the room it will send steal <all mobiles listed after Also here:>
So when I make a new trigger to deal with this issue it only works if there are multiple mobiles in the room.
I've been trying to learn more like making variables and using if statements but I'm just not grasping it completely.
also turning groups of triggers on/off is hanging me up so I usually just copy the group manually then delete it when I don't use those triggers and then later to repaste them in my trigger folder when I'm ready to use them again. How do I check to see if a group of triggers is on/off manually?
I've got a ton of questions but I'll stop right here so I won't get confused with answers! Thanks in advance for your time!
This is with 1 mobile in it.
Also here: a beastly fido
So my trigger is just:
Quote:
<triggers>
<trigger
enabled="y"
match="Also here: *"
sequence="100"
>
<send>steal %1</send>
</trigger>
</triggers>
<triggers>
<trigger
enabled="y"
match="Also here: *"
sequence="100"
>
<send>steal %1</send>
</trigger>
</triggers>
But it won't work if there are more than 1 mobile in the room it will send steal <all mobiles listed after Also here:>
So when I make a new trigger to deal with this issue it only works if there are multiple mobiles in the room.
Quote:
<triggers>
<trigger
enabled="y"
match="Also here: *, *"
sequence="100"
>
<send>steal %1</send>
</trigger>
</triggers>
<triggers>
<trigger
enabled="y"
match="Also here: *, *"
sequence="100"
>
<send>steal %1</send>
</trigger>
</triggers>
I've been trying to learn more like making variables and using if statements but I'm just not grasping it completely.
also turning groups of triggers on/off is hanging me up so I usually just copy the group manually then delete it when I don't use those triggers and then later to repaste them in my trigger folder when I'm ready to use them again. How do I check to see if a group of triggers is on/off manually?
I've got a ton of questions but I'll stop right here so I won't get confused with answers! Thanks in advance for your time!