You shouldn't need to make all these help topics. If you want to find something out, look for it yourself first. Trust me, it will be a lot quicker, and easier. Here's some advice:
If its a property (variable on an object) or method (function on a object), use
dump() on an object, and it will list it all in the console.
If you are looking for info about a function that already exists,
use trace.
If you are trying to create a function to do something, take a look through
here. There are plenty of great resources there that can help you a lot.
Use search, and
use it properly (I also like to check "Search in topic subjects only" to filter out most of the unuseful stuff, but be sure to uncheck it if you couldn't find anything). 90% of the time, somebody else has asked what you want to know. If your question is partially answered, but not enough, just post on that topic. If its too old, then you can make a new topic, but put a link to the previous topic and explain that you've read through it but your question isn't answered. That way people wont reply with stuff you already know.
If your looking for some torque engine functions, take a look in
here. Just wait for it to load, then ctrl+f. Note that some functions have been renamed from there, but for the most part your fine. I recommend you bookmark that too.
Wait, so if(%client.bl_id33750)? or if(%client.bl_id("33750")) or if(%client.33750)
bl_id is a property (variable). Doing
%client.bl_id will give you your ID. You then want to check if that number is the same as another number, so you must use
== .