What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Need some advice about isAlive function

Status
Not open for further replies.

madboy19

Member
Joined
Oct 15, 2014
Messages
36
Reaction score
0
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
 
No, isAlive dont send to server anything
 
Status
Not open for further replies.
Back
Top