What does Invalid number of parameters mean? Does it mean that i dont have the right things after a function? Im trying to use the mouse function wat parameters do i need to set?
What does Invalid number of parameters mean? Does it mean that i dont have the right things after a function? Im trying to use the mouse function wat parameters do i need to set?
Mouse(x,y,rx,ry,true)
Invalid means u dont have enough info the parentahsees
Here is an example:
Mouse(45,68,3,3,true)
It will right click at 45,68 with a randomness of 3 pixels in the X and 3 pexles in the T direction
Line 2: [Error] (2:17): Invalid number of parameters in scriptSCAR Code:begin
ClickMouse(1, 1);
end.
That will give you the error because you're missing one of input parametres that the procedure requires:
SCAR Code:begin
ClickMouse(1, 1, [b]true[/b]);
end.
So you may have missed out one of the inputs.![]()
thanks that was th exact problem. You explained it well.
There are currently 1 users browsing this thread. (0 members and 1 guests)