quote:
Originally posted by skyserpent
help me with "function <your function>(<your parameters>)" please
What is the name of the function(s) in your script? For example, if my script has a function called
FindAddress with parameters
First, Second, Offset, it will appear in my script as:
code:
function FindAddress(First, Second, Offset) {
x = First + Second - Offset;
}
So if I want to integrate this with the script enabled, I simply have to change it to:
code:
function FindAddress(First, Second, Offset) {
if(ScriptEnabled) {
x = First + Second - Offset;
}
}