I've just about finished plugin but i'm having some issues with set_task and task id's.
As any player can trigger the same function via a task, I was passing their player id as the task id, however I've noticed in other peoples plugins that they are either hard coding a task id modifying it with n+id.
Do task id's get shared across running plugins or are they exclusive to each one? i.e if I start tast with id 1 in my plugin with it conflict with another task id'd as 1 in another plugin if the two are running at the same time?
I tried using 239+id in my set_task call but the task never gets called so I'm guessing thats a no-no.
So could someone clarify the relationship between task id's and other plugins or am I ok to just use the players id as a unique task identifier?