Hi there,
I would like to know if it is possible to insert some type of conditional in a plugin, so I restrict the [you] plugins only to one thread
Like this
Quote:
<if condition="$thread[threadid] == xx">
Use my trick
<else />
dont use it
</if>
|
maybe this needs a PHP conditional in the shape of
Quote:
if (!$vbulletin->thread['threadid'] AND $vbulletin->thread['xx']) {
plugin code;
}
|
Any quick help is appreciated.