#Support SkyWolfXP
1 messages · Page 1 of 1 (latest)
I think the line symbol “|” can be used to match either pattern in regex
Can you provide more explanation?
Regex is a way to filter stuff from text. If you use | between two strings (sentences) the mod will filter either one of them. In your case, you could do Checking escrow for recent transaction|Putting coins in escrow in one spam filter and it should hide both
Yeah man I can understand code but I can never understand regex, Shit is too confusing.
Thanks for this valuable information though, I will try to use that when I start ah flipping!

So I have tried this ¶r¶cThere was an error with the auction house! ¶r¶7(AUCTION_EXPIRED_OR_NOT_FOUND)¶r|¶r¶7Checking escrow for recent transaction...¶r|¶r¶7Processing purchase...¶r|¶r¶7Putting coins in escrow...¶r but it doesn't work...What could be wrong here?
- You need to put backslashes () before the brackets otherwise skytils thinks they’re a function in the regex
- Make sure there aren’t any spaces around the | line dividers
Oh and you need backslashes before the full stops too
¶r¶cThere was an error with the auction house! ¶r¶7\(AUCTION_EXPIRED_OR_NOT_FOUND\)¶r|¶r¶7Checking escrow for recent transaction\.\.\.¶r|¶r¶7Processing purchase\.\.\.¶r|¶r¶7Putting coins in escrow\.\.\.¶r but it doesn't work\.\.\.What could be wrong here?
this should be correct so lemme try
also here is this
Make sure to delete the “but it doesn’t work” at the end