Skip to content
This repository has been archived by the owner on Jan 10, 2022. It is now read-only.

FAQ Writing plugins

webnull edited this page Apr 15, 2012 · 2 revisions
  1. My plugin is hooking to any Subget function and after that i got a strange error, type or value error - cannot interate on boolean etc.

You'r plugin is possible overriding original Subget's data.

Subget gives you'r function a data -> Your plugin is returning boolean False or True in hooked function -> Subget is overriding original data with boolean returned from your function (eg. True/False)

Please use: return data

In all hooked functions.

Clone this wiki locally