for example, i have an equation in my script
Code:
X := 1
Y := X**2 + 3*X + 10
i want it to look complicated so even ppl read it, they wont understand and hesitate to modify the script. but on the other hand, the function needs to be call frequently (few times per sec and a lot longer that the example equation, i am dealing with vectors and coordinates), so i dont want to affect the performance that much
i am thinking something like:
Code:
X := 1
A := sqrt(100)
Y := X**(2*sin(1.570))
D := Y + Mod(7,4)*X + A
what about hex calculation or NumPut, what do u guys think?
the script are read by normal ppl (leechers.....), so dont expect them to be as experienced as u guys. so the above example should stop most ppl, but just want something more complicated to stop more ppl