Sidalol Member Joined Jul 1, 2010 Messages 987 Reaction score 15 Jul 13, 2010 #1 How often does pulse tick?
ohcrit95 New Member Joined May 22, 2010 Messages 49 Reaction score 0 Jul 15, 2010 #2 Sidalol said: How often does pulse tick? Click to expand... Uhhh. I'm not too sure. But as far as I know, it's anytime anything happens in WoW. So a new chat message, a new WoWObject pops up. You can change when it pulses, just a little bit of tinkering and it'll get the job done.
Sidalol said: How often does pulse tick? Click to expand... Uhhh. I'm not too sure. But as far as I know, it's anytime anything happens in WoW. So a new chat message, a new WoWObject pops up. You can change when it pulses, just a little bit of tinkering and it'll get the job done.
cowdude Active Member Joined Feb 17, 2010 Messages 337 Reaction score 27 Jul 15, 2010 #3 Seems to depend on what the bot is doing. I see it 'pulse' every ~200ms while fighting but gets lower when travelling. Best way to see it pulse: Random RandomClass = new Random(); int RandomNumber = RandomClass.Next(); Logging.Write("Pulse!" + RandomNumber); Click to expand... Will print something like Pulse! 123 Pulse! 42 Pulse! ... Open your log file to see the current datetime for each pulse.
Seems to depend on what the bot is doing. I see it 'pulse' every ~200ms while fighting but gets lower when travelling. Best way to see it pulse: Random RandomClass = new Random(); int RandomNumber = RandomClass.Next(); Logging.Write("Pulse!" + RandomNumber); Click to expand... Will print something like Pulse! 123 Pulse! 42 Pulse! ... Open your log file to see the current datetime for each pulse.
MaiN Well-Known Member Joined Jan 15, 2010 Messages 1,017 Reaction score 35 Jul 17, 2010 #4 It ticks 20 times per second at max. If a CC or plugin blocks the thread it will decrease the tickrate. That's why we advise against using Thread.Sleep in pulses/combat etc.
It ticks 20 times per second at max. If a CC or plugin blocks the thread it will decrease the tickrate. That's why we advise against using Thread.Sleep in pulses/combat etc.