It is currently May 2nd, 2024, 3:25 pm

How to Immediately Update a WebParser Measure?

Share and get help with Plugins and Addons
User avatar
XANCI
Posts: 104
Joined: September 18th, 2011, 6:37 am
Location: Nanjing, China

How to Immediately Update a WebParser Measure?

Post by XANCI »

Without refresh the skin

tried:
!SetOption UpdateRate 1
!DisableMeasure - !EnableMeasure

combined with
!UpdateMeasure
!Update

All FAILED
Got to wait until the original "UpdateRate" finish a cycle
User avatar
~Faradey~
Posts: 366
Joined: November 12th, 2009, 4:47 pm
Location: Ukraine

Re: How to Immediately Update a WebParser Measure?

Post by ~Faradey~ »

Code: Select all

[WebParser]
Measure=Plugin
Plugin=WebParser.dll
Url=#URL#
RegExp="(?siU)a(.*)b"
UpdateDivider=3200
UpdateRate=1
where UpdateDivider value is the actual update rate value, and if you want to update measure then use !UpdateMeasure bang
User avatar
XANCI
Posts: 104
Joined: September 18th, 2011, 6:37 am
Location: Nanjing, China

Re: How to Immediately Update a WebParser Measure?

Post by XANCI »

~Faradey~ wrote:

Code: Select all

[WebParser]
Measure=Plugin
Plugin=WebParser.dll
Url=#URL#
RegExp="(?siU)a(.*)b"
UpdateDivider=3200
UpdateRate=1
where UpdateDivider value is the actual update rate value, and if you want to update measure then use !UpdateMeasure bang
That works! Thank you~