Hey as a new programmer , I need your advice. I understand that sending too much request to server create problems like bans.
I had to use isAlive function on my test plugin and I need to check every 100ms target isalive or not.
So here is my codes
for(int i=0;i<=6000;i++)
{
if(!isAlive(me.target))
{
codes here.
}
Thread.Sleep(100);
}
will this codes create problem for me ? can they catch me by logs ? if yes, can u give me advice that how can I solve that..
Thanks
I had to use isAlive function on my test plugin and I need to check every 100ms target isalive or not.
So here is my codes
for(int i=0;i<=6000;i++)
{
if(!isAlive(me.target))
{
codes here.
}
Thread.Sleep(100);
}
will this codes create problem for me ? can they catch me by logs ? if yes, can u give me advice that how can I solve that..
Thanks