Frost Diver Posted September 15, 2019 Group: Members Topic Count: 48 Topics Per Day: 0.02 Content Count: 189 Reputation: 7 Joined: 10/22/18 Last Seen: 23 hours ago Share Posted September 15, 2019 // How the server should measure the character's idle time? (Note 3) // 0x001 - Walk Request // 0x002 - UseSkillToID Request (Targetted skill use attempt) // 0x004 - UseSkillToPos Request (AoE skill use attempt) // 0x008 - UseItem Request (Including equip/unequip) // 0x010 - Attack Request // 0x020 - Chat Request (Whisper, Party, Guild, Battlegrounds, etc) // 0x040 - Sit/Standup Request // 0x080 - Emotion Request // 0x100 - DropItem Request // 0x200 - @/#Command Request // Please note that at least 1 option has to be enabled. // Be mindful that the more options used, the easier it becomes to cheat features that rely on idletime (e.g. checkidle()). // Default: walk (0x1) + useskilltoid (0x2) + useskilltopos (0x4) + useitem (0x8) + attack (0x10) = 0x1F idletime_option: 0x1F Just a quick question. As the code above, the default set is 0x1F. What if I want to add Chat Request and Sit/Stand variables including that default 0x1F. What variables should it be? Thanks. Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted September 15, 2019 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: 20 hours ago Share Posted September 15, 2019 0x1F + 0x020 + 0x040 = 0x7F Quote Link to comment Share on other sites More sharing options...
0 Frost Diver Posted September 15, 2019 Group: Members Topic Count: 48 Topics Per Day: 0.02 Content Count: 189 Reputation: 7 Joined: 10/22/18 Last Seen: 23 hours ago Author Share Posted September 15, 2019 6 minutes ago, Emistry said: 0x1F + 0x020 + 0x040 = 0x7F Thank you master! Solved. Quote Link to comment Share on other sites More sharing options...
Question
Frost Diver
// How the server should measure the character's idle time? (Note 3) // 0x001 - Walk Request // 0x002 - UseSkillToID Request (Targetted skill use attempt) // 0x004 - UseSkillToPos Request (AoE skill use attempt) // 0x008 - UseItem Request (Including equip/unequip) // 0x010 - Attack Request // 0x020 - Chat Request (Whisper, Party, Guild, Battlegrounds, etc) // 0x040 - Sit/Standup Request // 0x080 - Emotion Request // 0x100 - DropItem Request // 0x200 - @/#Command Request // Please note that at least 1 option has to be enabled. // Be mindful that the more options used, the easier it becomes to cheat features that rely on idletime (e.g. checkidle()). // Default: walk (0x1) + useskilltoid (0x2) + useskilltopos (0x4) + useitem (0x8) + attack (0x10) = 0x1F idletime_option: 0x1F
Just a quick question. As the code above, the default set is 0x1F.
What if I want to add Chat Request and Sit/Stand variables including that default 0x1F.
What variables should it be?
Thanks.
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.