Vsro Action Overlap

09/22/2023 00:01 ILowe#1
hello guys!

How is Action Overlap calculated? For example, when I add a new skill, it may conflict with different skills. How should I calculate it so it doesn't work with a skill?
09/22/2023 00:03 Athena'#2
Quote:
Originally Posted by ILowe View Post
hello guys!

How is Action Overlap calculated? For example, when I add a new skill, it may conflict with different skills. How should I calculate it so it doesn't work with a skill?
Ok, let me know if i got that right. You're basically trying to avoid a skill while a diffrent skill is in use?

Like.. If bless spell is in use, you want to disable usage of pain quote, for example? Did i get it?
09/22/2023 00:42 ILowe#3
I want to calculate a new overlaps.
If I give a random overlap to a skill or item usage, another skill is affected.
12/05/2023 23:20 hacinuri#4
Hello,


you can use this query for calculate overlap value. You have to make unique byte value if you dont want to affect other skills
04/23/2025 00:28 Kabloz™#5
Quote:
Originally Posted by ILowe View Post
I want to calculate a new overlaps.
If I give a random overlap to a skill or item usage, another skill is affected.
simple you can use it


to see if there a same byte of not

Code:
SELECT 1795162206, SUBSTRING(CAST (1795162206 AS VARBINARY), 1, 1) AS byte1,
SUBSTRING(CAST (1795162206 AS VARBINARY), 2, 1) AS byte2,
SUBSTRING(CAST (1795162206 AS VARBINARY), 3, 1) AS byte3,
SUBSTRING(CAST (1795162206 AS VARBINARY),*4,*1)*AS*byte4

SELECT 90048778, SUBSTRING(CAST (90048778 AS VARBINARY), 1, 1) AS byte1,
SUBSTRING(CAST (90048778 AS VARBINARY), 2, 1) AS byte2,
SUBSTRING(CAST (90048778 AS VARBINARY), 3, 1) AS byte3,
SUBSTRING(CAST (90048778 AS VARBINARY),*4,*1)*AS*byte4